diff options
author | Christopher Faylor <me@cgf.cx> | 2003-11-28 20:55:59 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-11-28 20:55:59 +0000 |
commit | 9a4d574b8d4550f53036dced342022b64e508abf (patch) | |
tree | 79d7ab65654ff5cb2fd2c0c035ac2b98deb1fcc2 /winsup/cygwin/devices.cc | |
parent | ffe006384344b5d2a86e6bedad96725391cfe88e (diff) | |
download | cygnal-9a4d574b8d4550f53036dced342022b64e508abf.tar.gz cygnal-9a4d574b8d4550f53036dced342022b64e508abf.tar.bz2 cygnal-9a4d574b8d4550f53036dced342022b64e508abf.zip |
Eliminate use of sigframe and sigthread throughout.
* Makefile.in (DLL_OFILES): Add sigfe.o. Remove reliance on cygwin.def from
cygwin0.dll dependency since dependence on sigfe.o implies that. Generate def
file on the fly using 'gendef'.
* configure.in: Don't auto-generate cygwin.def.
* configure: Regenerate.
* cygwin.din: Add SIGFE stuff where appropriate.
* dcrt0.cc (dll_crt0_1): Initialize cygwin tls early in process startup. Set
_main_tls to address of the main thread's cygwin tls.
* debug.h: Remove now unneeded WFSO and WFMO declarations.
* exceptions.cc (_last_thread): Define.
(set_thread_state_for_signals): New function.
(reset_thread_exception_for_signals): Ditto.
(init_thread_for_signals): Ditto.
(delete_thread_for_signals): Ditto.
(capture_thread_for_signals): Ditto.
(handle_exceptions): Set return address explicitly for exceptions prior to
calling sig_send.
(interrupt_on_return): Eliminate.
(setup_handler): Add preliminary implementation for dealing with
thread-specific signals by querying _main_tls.
(signal_exit): Use cygthread::main_thread_id instead of mainthread.id.
(call_signal_handler_now): For now, just handle the main thread.
* fork.cc (vfork): Save and restore main _my_tls.
* gendef: New file. Generates def file and sigfe.s file.
* gentls_offsets: New file. Generates offsets for perl to use in sigfe.s.
* how-signals-work.txt: Mention that info is obsolete.
* init.cc (dll_entry): Initialize cygwin tls storage here.
* miscfuncs.cc (low_priority_sleep): Make a C function for easier calling from
asm.
* perthread.h (vfork_save::tls): New element.
* signal.cc (nanosleep): Replace previous use of
sigframe.call_signal_handler_now with straight call to call_signal_handler_now.
(abort): Ditto.
* syscalls.cc (readv): Ditto.
* termios.cc (tcsetattr): Ditto.
* wait.cc (wait4): Ditto.
* sigproc.cc (sig_dispatch_pending): Ditto.
(sig_send): Ditto.
* sigproc.h: Declare call_signal_handler_now.
* thread.cc (pthread::thread_init_wrapper): Initialize cygwin tls. Remove
obsolete and unworking signal stuff.
* thread.h (verifyable_object::sigs): Eliminate.
(verifyable_object::sigmask): Eliminate.
(verifyable_object::sigtodo): Eliminate.
(verifyable_object::exit): Make attribute noreturn.
(verifyable_object::thread_init_wrapper): Ditto.
(pthread_null::exit): Ditto.
* winbase.h (__stackbase): Always define.
* winsup.h (low_priority_sleep): Declare as a "C" function.
* include/cygwin/version.h: Bump API version to reflect sigwait export.
* include/sys/queue.h: Protect SLIST_ENTRY from previous declaration.
* signal.cc (sigwait): Implement.
* select.cc (fhandler_base::ready_for_read): Add debugging output.
* devices.h: Define more device pointers via their storage.
* devices.in: Don't parse things like /dev/inet/tcp, as they really have no
meaning.
* devices.cc: Regenerate.
* gendevices: Set proper protection for output file.
* cygtls.h: New file.
* gendef: New file.
* gentls_offsets: New file.
* tlsoffsets.h: New file. Autogenerated.
* config/i386/longjmp.c: Remove. File subsumed by gendef output.
* config/i386/makefrag: Remove obsolete file.
* fhandler.cc: Remove spurious access_worker declaration.
* spawn.cc (spawnve): Make debugging output more accurate.
* cygwin-gperf: Remove.
* devices.cc: Remove.
Diffstat (limited to 'winsup/cygwin/devices.cc')
-rw-r--r-- | winsup/cygwin/devices.cc | 1732 |
1 files changed, 812 insertions, 920 deletions
diff --git a/winsup/cygwin/devices.cc b/winsup/cygwin/devices.cc index 73b308949..e2819c1c9 100644 --- a/winsup/cygwin/devices.cc +++ b/winsup/cygwin/devices.cc @@ -34,8 +34,20 @@ const device dev_piper_storage = const device dev_pipew_storage = {"", FH_PIPEW, ""}; +const device dev_tcp_storage = + {"", FH_TCP, ""}; + +const device dev_udp_storage = + {"", FH_UDP, ""}; + +const device dev_stream_storage = + {"", FH_STREAM, ""}; + +const device dev_dgram_storage = + {"", FH_DGRAM, ""}; + const device dev_bad_storage = - {":bad:", FH_BAD, ""}; + {"", FH_BAD, ""}; static const device dev_storage[] = { @@ -78,12 +90,6 @@ static const device dev_storage[] = {"/dev/fd14", FHDEV(DEV_FLOPPY_MAJOR, 14), "\\Device\\Floppy14"}, {"/dev/fd15", FHDEV(DEV_FLOPPY_MAJOR, 15), "\\Device\\Floppy15"}, {"/dev/fifo", FH_FIFO, "\\dev\\fifo"}, - {"/dev/inet/dgram", FH_DGRAM, ""}, - {"/dev/inet/icmp", FH_ICMP, ""}, - {"/dev/inet/stream", FH_STREAM, ""}, - {"/dev/inet/tcp", FH_TCP, ""}, - {"/dev/inet/udp", FH_UDP, ""}, - {"/dev/inet/unix", FH_UNIX, ""}, {"/dev/kmem", FH_KMEM, "\\dev\\mem"}, {"/dev/mem", FH_MEM, "\\dev\\mem"}, {"/dev/nst0", FHDEV(DEV_TAPE_MAJOR, 128), "\\Device\\Tape0"}, @@ -883,15 +889,9 @@ static const device dev_storage[] = }; const device *console_dev = dev_storage + 20; -const device *dgram_dev = dev_storage + 39; -const device *icmp_dev = dev_storage + 40; -const device *stream_dev = dev_storage + 41; -const device *tcp_dev = dev_storage + 42; -const device *ttym_dev = dev_storage + 837; -const device *ttys_dev = dev_storage + 757; -const device *udp_dev = dev_storage + 43; -const device *unix_dev = dev_storage + 44; -const device *urandom_dev = dev_storage + 838; +const device *ttym_dev = dev_storage + 831; +const device *ttys_dev = dev_storage + 751; +const device *urandom_dev = dev_storage + 832; static KR_device_t KR_find_keyword (const char *KR_keyword, int KR_length) @@ -906,7 +906,7 @@ static KR_device_t KR_find_keyword (const char *KR_keyword, int KR_length) if (strncmp (KR_keyword, "/dev/sdz", 8) == 0) { { -return dev_storage + 221; +return dev_storage + 215; } } @@ -924,7 +924,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty", 8) == 0) { { -return dev_storage + 756; +return dev_storage + 750; } } @@ -939,7 +939,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy", 8) == 0) { { -return dev_storage + 220; +return dev_storage + 214; } } @@ -960,7 +960,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx", 8) == 0) { { -return dev_storage + 219; +return dev_storage + 213; } } @@ -975,7 +975,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw", 8) == 0) { { -return dev_storage + 218; +return dev_storage + 212; } } @@ -990,7 +990,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv", 8) == 0) { { -return dev_storage + 217; +return dev_storage + 211; } } @@ -1005,7 +1005,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu", 8) == 0) { { -return dev_storage + 216; +return dev_storage + 210; } } @@ -1020,7 +1020,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt", 8) == 0) { { -return dev_storage + 215; +return dev_storage + 209; } } @@ -1035,7 +1035,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds", 8) == 0) { { -return dev_storage + 214; +return dev_storage + 208; } } @@ -1050,7 +1050,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr", 8) == 0) { { -return dev_storage + 213; +return dev_storage + 207; } } @@ -1065,7 +1065,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq", 8) == 0) { { -return dev_storage + 212; +return dev_storage + 206; } } @@ -1083,7 +1083,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp", 8) == 0) { { -return dev_storage + 211; +return dev_storage + 205; } } @@ -1119,7 +1119,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo", 8) == 0) { { -return dev_storage + 210; +return dev_storage + 204; } } @@ -1134,7 +1134,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn", 8) == 0) { { -return dev_storage + 209; +return dev_storage + 203; } } @@ -1152,7 +1152,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm", 8) == 0) { { -return dev_storage + 208; +return dev_storage + 202; } } @@ -1167,7 +1167,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/mem", 8) == 0) { { -return dev_storage + 46; +return dev_storage + 40; } } @@ -1188,7 +1188,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl", 8) == 0) { { -return dev_storage + 207; +return dev_storage + 201; } } @@ -1203,7 +1203,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk", 8) == 0) { { -return dev_storage + 206; +return dev_storage + 200; } } @@ -1218,7 +1218,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj", 8) == 0) { { -return dev_storage + 205; +return dev_storage + 199; } } @@ -1233,7 +1233,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi", 8) == 0) { { -return dev_storage + 204; +return dev_storage + 198; } } @@ -1248,7 +1248,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh", 8) == 0) { { -return dev_storage + 203; +return dev_storage + 197; } } @@ -1263,7 +1263,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg", 8) == 0) { { -return dev_storage + 202; +return dev_storage + 196; } } @@ -1278,7 +1278,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf", 8) == 0) { { -return dev_storage + 201; +return dev_storage + 195; } } @@ -1293,7 +1293,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde", 8) == 0) { { -return dev_storage + 200; +return dev_storage + 194; } } @@ -1308,7 +1308,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd", 8) == 0) { { -return dev_storage + 199; +return dev_storage + 193; } } @@ -1323,7 +1323,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc", 8) == 0) { { -return dev_storage + 198; +return dev_storage + 192; } } @@ -1338,7 +1338,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb", 8) == 0) { { -return dev_storage + 197; +return dev_storage + 191; } } @@ -1353,7 +1353,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda", 8) == 0) { { -return dev_storage + 196; +return dev_storage + 190; } } @@ -1371,7 +1371,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st9", 8) == 0) { { -return dev_storage + 637; +return dev_storage + 631; } } @@ -1386,7 +1386,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr9", 8) == 0) { { -return dev_storage + 621; +return dev_storage + 615; } } @@ -1425,7 +1425,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st8", 8) == 0) { { -return dev_storage + 636; +return dev_storage + 630; } } @@ -1440,7 +1440,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr8", 8) == 0) { { -return dev_storage + 620; +return dev_storage + 614; } } @@ -1479,7 +1479,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st7", 8) == 0) { { -return dev_storage + 635; +return dev_storage + 629; } } @@ -1494,7 +1494,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr7", 8) == 0) { { -return dev_storage + 619; +return dev_storage + 613; } } @@ -1533,7 +1533,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st6", 8) == 0) { { -return dev_storage + 634; +return dev_storage + 628; } } @@ -1548,7 +1548,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr6", 8) == 0) { { -return dev_storage + 618; +return dev_storage + 612; } } @@ -1587,7 +1587,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st5", 8) == 0) { { -return dev_storage + 633; +return dev_storage + 627; } } @@ -1602,7 +1602,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr5", 8) == 0) { { -return dev_storage + 617; +return dev_storage + 611; } } @@ -1641,7 +1641,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st4", 8) == 0) { { -return dev_storage + 632; +return dev_storage + 626; } } @@ -1656,7 +1656,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr4", 8) == 0) { { -return dev_storage + 616; +return dev_storage + 610; } } @@ -1695,7 +1695,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st3", 8) == 0) { { -return dev_storage + 631; +return dev_storage + 625; } } @@ -1710,7 +1710,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr3", 8) == 0) { { -return dev_storage + 615; +return dev_storage + 609; } } @@ -1749,7 +1749,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st2", 8) == 0) { { -return dev_storage + 630; +return dev_storage + 624; } } @@ -1764,7 +1764,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr2", 8) == 0) { { -return dev_storage + 614; +return dev_storage + 608; } } @@ -1803,7 +1803,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st1", 8) == 0) { { -return dev_storage + 629; +return dev_storage + 623; } } @@ -1818,7 +1818,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr1", 8) == 0) { { -return dev_storage + 613; +return dev_storage + 607; } } @@ -1857,7 +1857,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st0", 8) == 0) { { -return dev_storage + 628; +return dev_storage + 622; } } @@ -1872,7 +1872,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr0", 8) == 0) { { -return dev_storage + 612; +return dev_storage + 606; } } @@ -1917,7 +1917,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ptmx", 9) == 0) { { -return dev_storage + 178; +return dev_storage + 172; } } @@ -1932,7 +1932,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/port", 9) == 0) { { -return dev_storage + 177; +return dev_storage + 171; } } @@ -1950,7 +1950,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/zero", 9) == 0) { { -return dev_storage + 840; +return dev_storage + 834; } } @@ -1989,7 +1989,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttym", 9) == 0) { { -return dev_storage + 837; +return dev_storage + 831; } } @@ -2004,7 +2004,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/kmem", 9) == 0) { { -return dev_storage + 45; +return dev_storage + 39; } } @@ -2025,7 +2025,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/null", 9) == 0) { { -return dev_storage + 175; +return dev_storage + 169; } } @@ -2040,7 +2040,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pipe", 9) == 0) { { -return dev_storage + 176; +return dev_storage + 170; } } @@ -2058,7 +2058,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz9", 9) == 0) { { -return dev_storage + 605; +return dev_storage + 599; } } @@ -2076,7 +2076,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty9", 9) == 0) { { -return dev_storage + 766; +return dev_storage + 760; } } @@ -2091,7 +2091,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy9", 9) == 0) { { -return dev_storage + 590; +return dev_storage + 584; } } @@ -2112,7 +2112,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx9", 9) == 0) { { -return dev_storage + 575; +return dev_storage + 569; } } @@ -2127,7 +2127,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw9", 9) == 0) { { -return dev_storage + 560; +return dev_storage + 554; } } @@ -2142,7 +2142,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv9", 9) == 0) { { -return dev_storage + 545; +return dev_storage + 539; } } @@ -2157,7 +2157,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu9", 9) == 0) { { -return dev_storage + 530; +return dev_storage + 524; } } @@ -2175,7 +2175,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt9", 9) == 0) { { -return dev_storage + 515; +return dev_storage + 509; } } @@ -2190,7 +2190,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst9", 9) == 0) { { -return dev_storage + 56; +return dev_storage + 50; } } @@ -2211,7 +2211,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds9", 9) == 0) { { -return dev_storage + 500; +return dev_storage + 494; } } @@ -2226,7 +2226,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr9", 9) == 0) { { -return dev_storage + 485; +return dev_storage + 479; } } @@ -2241,7 +2241,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq9", 9) == 0) { { -return dev_storage + 470; +return dev_storage + 464; } } @@ -2256,7 +2256,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp9", 9) == 0) { { -return dev_storage + 455; +return dev_storage + 449; } } @@ -2271,7 +2271,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo9", 9) == 0) { { -return dev_storage + 440; +return dev_storage + 434; } } @@ -2286,7 +2286,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn9", 9) == 0) { { -return dev_storage + 425; +return dev_storage + 419; } } @@ -2304,7 +2304,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm9", 9) == 0) { { -return dev_storage + 410; +return dev_storage + 404; } } @@ -2340,7 +2340,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl9", 9) == 0) { { -return dev_storage + 395; +return dev_storage + 389; } } @@ -2355,7 +2355,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk9", 9) == 0) { { -return dev_storage + 380; +return dev_storage + 374; } } @@ -2370,7 +2370,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj9", 9) == 0) { { -return dev_storage + 365; +return dev_storage + 359; } } @@ -2385,7 +2385,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi9", 9) == 0) { { -return dev_storage + 350; +return dev_storage + 344; } } @@ -2400,7 +2400,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh9", 9) == 0) { { -return dev_storage + 335; +return dev_storage + 329; } } @@ -2415,7 +2415,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg9", 9) == 0) { { -return dev_storage + 320; +return dev_storage + 314; } } @@ -2430,7 +2430,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf9", 9) == 0) { { -return dev_storage + 305; +return dev_storage + 299; } } @@ -2445,7 +2445,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde9", 9) == 0) { { -return dev_storage + 290; +return dev_storage + 284; } } @@ -2463,7 +2463,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd9", 9) == 0) { { -return dev_storage + 275; +return dev_storage + 269; } } @@ -2478,7 +2478,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd9", 9) == 0) { { -return dev_storage + 189; +return dev_storage + 183; } } @@ -2499,7 +2499,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc9", 9) == 0) { { -return dev_storage + 260; +return dev_storage + 254; } } @@ -2514,7 +2514,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb9", 9) == 0) { { -return dev_storage + 245; +return dev_storage + 239; } } @@ -2529,7 +2529,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda9", 9) == 0) { { -return dev_storage + 230; +return dev_storage + 224; } } @@ -2544,7 +2544,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st99", 9) == 0) { { -return dev_storage + 727; +return dev_storage + 721; } } @@ -2559,7 +2559,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st89", 9) == 0) { { -return dev_storage + 717; +return dev_storage + 711; } } @@ -2574,7 +2574,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st79", 9) == 0) { { -return dev_storage + 707; +return dev_storage + 701; } } @@ -2589,7 +2589,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st69", 9) == 0) { { -return dev_storage + 697; +return dev_storage + 691; } } @@ -2604,7 +2604,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st59", 9) == 0) { { -return dev_storage + 687; +return dev_storage + 681; } } @@ -2619,7 +2619,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st49", 9) == 0) { { -return dev_storage + 677; +return dev_storage + 671; } } @@ -2634,7 +2634,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st39", 9) == 0) { { -return dev_storage + 667; +return dev_storage + 661; } } @@ -2649,7 +2649,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st29", 9) == 0) { { -return dev_storage + 657; +return dev_storage + 651; } } @@ -2664,7 +2664,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st19", 9) == 0) { { -return dev_storage + 647; +return dev_storage + 641; } } @@ -2688,7 +2688,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz8", 9) == 0) { { -return dev_storage + 604; +return dev_storage + 598; } } @@ -2706,7 +2706,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty8", 9) == 0) { { -return dev_storage + 765; +return dev_storage + 759; } } @@ -2721,7 +2721,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy8", 9) == 0) { { -return dev_storage + 589; +return dev_storage + 583; } } @@ -2742,7 +2742,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx8", 9) == 0) { { -return dev_storage + 574; +return dev_storage + 568; } } @@ -2757,7 +2757,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw8", 9) == 0) { { -return dev_storage + 559; +return dev_storage + 553; } } @@ -2772,7 +2772,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv8", 9) == 0) { { -return dev_storage + 544; +return dev_storage + 538; } } @@ -2787,7 +2787,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu8", 9) == 0) { { -return dev_storage + 529; +return dev_storage + 523; } } @@ -2805,7 +2805,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt8", 9) == 0) { { -return dev_storage + 514; +return dev_storage + 508; } } @@ -2820,7 +2820,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst8", 9) == 0) { { -return dev_storage + 55; +return dev_storage + 49; } } @@ -2841,7 +2841,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds8", 9) == 0) { { -return dev_storage + 499; +return dev_storage + 493; } } @@ -2856,7 +2856,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr8", 9) == 0) { { -return dev_storage + 484; +return dev_storage + 478; } } @@ -2871,7 +2871,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq8", 9) == 0) { { -return dev_storage + 469; +return dev_storage + 463; } } @@ -2886,7 +2886,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp8", 9) == 0) { { -return dev_storage + 454; +return dev_storage + 448; } } @@ -2901,7 +2901,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo8", 9) == 0) { { -return dev_storage + 439; +return dev_storage + 433; } } @@ -2916,7 +2916,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn8", 9) == 0) { { -return dev_storage + 424; +return dev_storage + 418; } } @@ -2934,7 +2934,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm8", 9) == 0) { { -return dev_storage + 409; +return dev_storage + 403; } } @@ -2970,7 +2970,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl8", 9) == 0) { { -return dev_storage + 394; +return dev_storage + 388; } } @@ -2985,7 +2985,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk8", 9) == 0) { { -return dev_storage + 379; +return dev_storage + 373; } } @@ -3000,7 +3000,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj8", 9) == 0) { { -return dev_storage + 364; +return dev_storage + 358; } } @@ -3015,7 +3015,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi8", 9) == 0) { { -return dev_storage + 349; +return dev_storage + 343; } } @@ -3030,7 +3030,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh8", 9) == 0) { { -return dev_storage + 334; +return dev_storage + 328; } } @@ -3045,7 +3045,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg8", 9) == 0) { { -return dev_storage + 319; +return dev_storage + 313; } } @@ -3060,7 +3060,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf8", 9) == 0) { { -return dev_storage + 304; +return dev_storage + 298; } } @@ -3075,7 +3075,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde8", 9) == 0) { { -return dev_storage + 289; +return dev_storage + 283; } } @@ -3093,7 +3093,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd8", 9) == 0) { { -return dev_storage + 274; +return dev_storage + 268; } } @@ -3108,7 +3108,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd8", 9) == 0) { { -return dev_storage + 188; +return dev_storage + 182; } } @@ -3129,7 +3129,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc8", 9) == 0) { { -return dev_storage + 259; +return dev_storage + 253; } } @@ -3144,7 +3144,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb8", 9) == 0) { { -return dev_storage + 244; +return dev_storage + 238; } } @@ -3159,7 +3159,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda8", 9) == 0) { { -return dev_storage + 229; +return dev_storage + 223; } } @@ -3174,7 +3174,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st98", 9) == 0) { { -return dev_storage + 726; +return dev_storage + 720; } } @@ -3189,7 +3189,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st88", 9) == 0) { { -return dev_storage + 716; +return dev_storage + 710; } } @@ -3204,7 +3204,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st78", 9) == 0) { { -return dev_storage + 706; +return dev_storage + 700; } } @@ -3219,7 +3219,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st68", 9) == 0) { { -return dev_storage + 696; +return dev_storage + 690; } } @@ -3234,7 +3234,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st58", 9) == 0) { { -return dev_storage + 686; +return dev_storage + 680; } } @@ -3249,7 +3249,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st48", 9) == 0) { { -return dev_storage + 676; +return dev_storage + 670; } } @@ -3264,7 +3264,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st38", 9) == 0) { { -return dev_storage + 666; +return dev_storage + 660; } } @@ -3279,7 +3279,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st28", 9) == 0) { { -return dev_storage + 656; +return dev_storage + 650; } } @@ -3294,7 +3294,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st18", 9) == 0) { { -return dev_storage + 646; +return dev_storage + 640; } } @@ -3318,7 +3318,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz7", 9) == 0) { { -return dev_storage + 603; +return dev_storage + 597; } } @@ -3336,7 +3336,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty7", 9) == 0) { { -return dev_storage + 764; +return dev_storage + 758; } } @@ -3351,7 +3351,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy7", 9) == 0) { { -return dev_storage + 588; +return dev_storage + 582; } } @@ -3372,7 +3372,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx7", 9) == 0) { { -return dev_storage + 573; +return dev_storage + 567; } } @@ -3387,7 +3387,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw7", 9) == 0) { { -return dev_storage + 558; +return dev_storage + 552; } } @@ -3402,7 +3402,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv7", 9) == 0) { { -return dev_storage + 543; +return dev_storage + 537; } } @@ -3417,7 +3417,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu7", 9) == 0) { { -return dev_storage + 528; +return dev_storage + 522; } } @@ -3435,7 +3435,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt7", 9) == 0) { { -return dev_storage + 513; +return dev_storage + 507; } } @@ -3450,7 +3450,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst7", 9) == 0) { { -return dev_storage + 54; +return dev_storage + 48; } } @@ -3471,7 +3471,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds7", 9) == 0) { { -return dev_storage + 498; +return dev_storage + 492; } } @@ -3486,7 +3486,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr7", 9) == 0) { { -return dev_storage + 483; +return dev_storage + 477; } } @@ -3501,7 +3501,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq7", 9) == 0) { { -return dev_storage + 468; +return dev_storage + 462; } } @@ -3516,7 +3516,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp7", 9) == 0) { { -return dev_storage + 453; +return dev_storage + 447; } } @@ -3531,7 +3531,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo7", 9) == 0) { { -return dev_storage + 438; +return dev_storage + 432; } } @@ -3546,7 +3546,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn7", 9) == 0) { { -return dev_storage + 423; +return dev_storage + 417; } } @@ -3564,7 +3564,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm7", 9) == 0) { { -return dev_storage + 408; +return dev_storage + 402; } } @@ -3600,7 +3600,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl7", 9) == 0) { { -return dev_storage + 393; +return dev_storage + 387; } } @@ -3615,7 +3615,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk7", 9) == 0) { { -return dev_storage + 378; +return dev_storage + 372; } } @@ -3630,7 +3630,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj7", 9) == 0) { { -return dev_storage + 363; +return dev_storage + 357; } } @@ -3645,7 +3645,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi7", 9) == 0) { { -return dev_storage + 348; +return dev_storage + 342; } } @@ -3660,7 +3660,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh7", 9) == 0) { { -return dev_storage + 333; +return dev_storage + 327; } } @@ -3675,7 +3675,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg7", 9) == 0) { { -return dev_storage + 318; +return dev_storage + 312; } } @@ -3690,7 +3690,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf7", 9) == 0) { { -return dev_storage + 303; +return dev_storage + 297; } } @@ -3705,7 +3705,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde7", 9) == 0) { { -return dev_storage + 288; +return dev_storage + 282; } } @@ -3723,7 +3723,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd7", 9) == 0) { { -return dev_storage + 273; +return dev_storage + 267; } } @@ -3738,7 +3738,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd7", 9) == 0) { { -return dev_storage + 187; +return dev_storage + 181; } } @@ -3759,7 +3759,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc7", 9) == 0) { { -return dev_storage + 258; +return dev_storage + 252; } } @@ -3774,7 +3774,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb7", 9) == 0) { { -return dev_storage + 243; +return dev_storage + 237; } } @@ -3789,7 +3789,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda7", 9) == 0) { { -return dev_storage + 228; +return dev_storage + 222; } } @@ -3804,7 +3804,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st97", 9) == 0) { { -return dev_storage + 725; +return dev_storage + 719; } } @@ -3819,7 +3819,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st87", 9) == 0) { { -return dev_storage + 715; +return dev_storage + 709; } } @@ -3834,7 +3834,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st77", 9) == 0) { { -return dev_storage + 705; +return dev_storage + 699; } } @@ -3849,7 +3849,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st67", 9) == 0) { { -return dev_storage + 695; +return dev_storage + 689; } } @@ -3864,7 +3864,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st57", 9) == 0) { { -return dev_storage + 685; +return dev_storage + 679; } } @@ -3879,7 +3879,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st47", 9) == 0) { { -return dev_storage + 675; +return dev_storage + 669; } } @@ -3894,7 +3894,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st37", 9) == 0) { { -return dev_storage + 665; +return dev_storage + 659; } } @@ -3909,7 +3909,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st27", 9) == 0) { { -return dev_storage + 655; +return dev_storage + 649; } } @@ -3924,7 +3924,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st17", 9) == 0) { { -return dev_storage + 645; +return dev_storage + 639; } } @@ -3948,7 +3948,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz6", 9) == 0) { { -return dev_storage + 602; +return dev_storage + 596; } } @@ -3966,7 +3966,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty6", 9) == 0) { { -return dev_storage + 763; +return dev_storage + 757; } } @@ -3981,7 +3981,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy6", 9) == 0) { { -return dev_storage + 587; +return dev_storage + 581; } } @@ -4002,7 +4002,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx6", 9) == 0) { { -return dev_storage + 572; +return dev_storage + 566; } } @@ -4017,7 +4017,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw6", 9) == 0) { { -return dev_storage + 557; +return dev_storage + 551; } } @@ -4032,7 +4032,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv6", 9) == 0) { { -return dev_storage + 542; +return dev_storage + 536; } } @@ -4047,7 +4047,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu6", 9) == 0) { { -return dev_storage + 527; +return dev_storage + 521; } } @@ -4065,7 +4065,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt6", 9) == 0) { { -return dev_storage + 512; +return dev_storage + 506; } } @@ -4080,7 +4080,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst6", 9) == 0) { { -return dev_storage + 53; +return dev_storage + 47; } } @@ -4101,7 +4101,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds6", 9) == 0) { { -return dev_storage + 497; +return dev_storage + 491; } } @@ -4116,7 +4116,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr6", 9) == 0) { { -return dev_storage + 482; +return dev_storage + 476; } } @@ -4131,7 +4131,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq6", 9) == 0) { { -return dev_storage + 467; +return dev_storage + 461; } } @@ -4146,7 +4146,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp6", 9) == 0) { { -return dev_storage + 452; +return dev_storage + 446; } } @@ -4161,7 +4161,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo6", 9) == 0) { { -return dev_storage + 437; +return dev_storage + 431; } } @@ -4176,7 +4176,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn6", 9) == 0) { { -return dev_storage + 422; +return dev_storage + 416; } } @@ -4194,7 +4194,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm6", 9) == 0) { { -return dev_storage + 407; +return dev_storage + 401; } } @@ -4230,7 +4230,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl6", 9) == 0) { { -return dev_storage + 392; +return dev_storage + 386; } } @@ -4245,7 +4245,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk6", 9) == 0) { { -return dev_storage + 377; +return dev_storage + 371; } } @@ -4260,7 +4260,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj6", 9) == 0) { { -return dev_storage + 362; +return dev_storage + 356; } } @@ -4275,7 +4275,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi6", 9) == 0) { { -return dev_storage + 347; +return dev_storage + 341; } } @@ -4290,7 +4290,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh6", 9) == 0) { { -return dev_storage + 332; +return dev_storage + 326; } } @@ -4305,7 +4305,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg6", 9) == 0) { { -return dev_storage + 317; +return dev_storage + 311; } } @@ -4320,7 +4320,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf6", 9) == 0) { { -return dev_storage + 302; +return dev_storage + 296; } } @@ -4335,7 +4335,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde6", 9) == 0) { { -return dev_storage + 287; +return dev_storage + 281; } } @@ -4353,7 +4353,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd6", 9) == 0) { { -return dev_storage + 272; +return dev_storage + 266; } } @@ -4368,7 +4368,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd6", 9) == 0) { { -return dev_storage + 186; +return dev_storage + 180; } } @@ -4389,7 +4389,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc6", 9) == 0) { { -return dev_storage + 257; +return dev_storage + 251; } } @@ -4404,7 +4404,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb6", 9) == 0) { { -return dev_storage + 242; +return dev_storage + 236; } } @@ -4419,7 +4419,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda6", 9) == 0) { { -return dev_storage + 227; +return dev_storage + 221; } } @@ -4434,7 +4434,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st96", 9) == 0) { { -return dev_storage + 724; +return dev_storage + 718; } } @@ -4449,7 +4449,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st86", 9) == 0) { { -return dev_storage + 714; +return dev_storage + 708; } } @@ -4464,7 +4464,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st76", 9) == 0) { { -return dev_storage + 704; +return dev_storage + 698; } } @@ -4479,7 +4479,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st66", 9) == 0) { { -return dev_storage + 694; +return dev_storage + 688; } } @@ -4494,7 +4494,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st56", 9) == 0) { { -return dev_storage + 684; +return dev_storage + 678; } } @@ -4509,7 +4509,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st46", 9) == 0) { { -return dev_storage + 674; +return dev_storage + 668; } } @@ -4524,7 +4524,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st36", 9) == 0) { { -return dev_storage + 664; +return dev_storage + 658; } } @@ -4539,7 +4539,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st26", 9) == 0) { { -return dev_storage + 654; +return dev_storage + 648; } } @@ -4554,7 +4554,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st16", 9) == 0) { { -return dev_storage + 644; +return dev_storage + 638; } } @@ -4578,7 +4578,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz5", 9) == 0) { { -return dev_storage + 601; +return dev_storage + 595; } } @@ -4596,7 +4596,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty5", 9) == 0) { { -return dev_storage + 762; +return dev_storage + 756; } } @@ -4611,7 +4611,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy5", 9) == 0) { { -return dev_storage + 586; +return dev_storage + 580; } } @@ -4632,7 +4632,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx5", 9) == 0) { { -return dev_storage + 571; +return dev_storage + 565; } } @@ -4647,7 +4647,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw5", 9) == 0) { { -return dev_storage + 556; +return dev_storage + 550; } } @@ -4662,7 +4662,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv5", 9) == 0) { { -return dev_storage + 541; +return dev_storage + 535; } } @@ -4677,7 +4677,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu5", 9) == 0) { { -return dev_storage + 526; +return dev_storage + 520; } } @@ -4695,7 +4695,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt5", 9) == 0) { { -return dev_storage + 511; +return dev_storage + 505; } } @@ -4710,7 +4710,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst5", 9) == 0) { { -return dev_storage + 52; +return dev_storage + 46; } } @@ -4731,7 +4731,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds5", 9) == 0) { { -return dev_storage + 496; +return dev_storage + 490; } } @@ -4746,7 +4746,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr5", 9) == 0) { { -return dev_storage + 481; +return dev_storage + 475; } } @@ -4761,7 +4761,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq5", 9) == 0) { { -return dev_storage + 466; +return dev_storage + 460; } } @@ -4776,7 +4776,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp5", 9) == 0) { { -return dev_storage + 451; +return dev_storage + 445; } } @@ -4791,7 +4791,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo5", 9) == 0) { { -return dev_storage + 436; +return dev_storage + 430; } } @@ -4806,7 +4806,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn5", 9) == 0) { { -return dev_storage + 421; +return dev_storage + 415; } } @@ -4824,7 +4824,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm5", 9) == 0) { { -return dev_storage + 406; +return dev_storage + 400; } } @@ -4860,7 +4860,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl5", 9) == 0) { { -return dev_storage + 391; +return dev_storage + 385; } } @@ -4875,7 +4875,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk5", 9) == 0) { { -return dev_storage + 376; +return dev_storage + 370; } } @@ -4890,7 +4890,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj5", 9) == 0) { { -return dev_storage + 361; +return dev_storage + 355; } } @@ -4905,7 +4905,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi5", 9) == 0) { { -return dev_storage + 346; +return dev_storage + 340; } } @@ -4920,7 +4920,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh5", 9) == 0) { { -return dev_storage + 331; +return dev_storage + 325; } } @@ -4935,7 +4935,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg5", 9) == 0) { { -return dev_storage + 316; +return dev_storage + 310; } } @@ -4950,7 +4950,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf5", 9) == 0) { { -return dev_storage + 301; +return dev_storage + 295; } } @@ -4965,7 +4965,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde5", 9) == 0) { { -return dev_storage + 286; +return dev_storage + 280; } } @@ -4983,7 +4983,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd5", 9) == 0) { { -return dev_storage + 271; +return dev_storage + 265; } } @@ -4998,7 +4998,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd5", 9) == 0) { { -return dev_storage + 185; +return dev_storage + 179; } } @@ -5019,7 +5019,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc5", 9) == 0) { { -return dev_storage + 256; +return dev_storage + 250; } } @@ -5034,7 +5034,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb5", 9) == 0) { { -return dev_storage + 241; +return dev_storage + 235; } } @@ -5049,7 +5049,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda5", 9) == 0) { { -return dev_storage + 226; +return dev_storage + 220; } } @@ -5064,7 +5064,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st95", 9) == 0) { { -return dev_storage + 723; +return dev_storage + 717; } } @@ -5079,7 +5079,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st85", 9) == 0) { { -return dev_storage + 713; +return dev_storage + 707; } } @@ -5094,7 +5094,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st75", 9) == 0) { { -return dev_storage + 703; +return dev_storage + 697; } } @@ -5109,7 +5109,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st65", 9) == 0) { { -return dev_storage + 693; +return dev_storage + 687; } } @@ -5124,7 +5124,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st55", 9) == 0) { { -return dev_storage + 683; +return dev_storage + 677; } } @@ -5139,7 +5139,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st45", 9) == 0) { { -return dev_storage + 673; +return dev_storage + 667; } } @@ -5154,7 +5154,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st35", 9) == 0) { { -return dev_storage + 663; +return dev_storage + 657; } } @@ -5169,7 +5169,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st25", 9) == 0) { { -return dev_storage + 653; +return dev_storage + 647; } } @@ -5187,7 +5187,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st15", 9) == 0) { { -return dev_storage + 643; +return dev_storage + 637; } } @@ -5202,7 +5202,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr15", 9) == 0) { { -return dev_storage + 627; +return dev_storage + 621; } } @@ -5247,7 +5247,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz4", 9) == 0) { { -return dev_storage + 600; +return dev_storage + 594; } } @@ -5265,7 +5265,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty4", 9) == 0) { { -return dev_storage + 761; +return dev_storage + 755; } } @@ -5280,7 +5280,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy4", 9) == 0) { { -return dev_storage + 585; +return dev_storage + 579; } } @@ -5301,7 +5301,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx4", 9) == 0) { { -return dev_storage + 570; +return dev_storage + 564; } } @@ -5316,7 +5316,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw4", 9) == 0) { { -return dev_storage + 555; +return dev_storage + 549; } } @@ -5331,7 +5331,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv4", 9) == 0) { { -return dev_storage + 540; +return dev_storage + 534; } } @@ -5346,7 +5346,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu4", 9) == 0) { { -return dev_storage + 525; +return dev_storage + 519; } } @@ -5364,7 +5364,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt4", 9) == 0) { { -return dev_storage + 510; +return dev_storage + 504; } } @@ -5379,7 +5379,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst4", 9) == 0) { { -return dev_storage + 51; +return dev_storage + 45; } } @@ -5400,7 +5400,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds4", 9) == 0) { { -return dev_storage + 495; +return dev_storage + 489; } } @@ -5415,7 +5415,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr4", 9) == 0) { { -return dev_storage + 480; +return dev_storage + 474; } } @@ -5430,7 +5430,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq4", 9) == 0) { { -return dev_storage + 465; +return dev_storage + 459; } } @@ -5445,7 +5445,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp4", 9) == 0) { { -return dev_storage + 450; +return dev_storage + 444; } } @@ -5460,7 +5460,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo4", 9) == 0) { { -return dev_storage + 435; +return dev_storage + 429; } } @@ -5475,7 +5475,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn4", 9) == 0) { { -return dev_storage + 420; +return dev_storage + 414; } } @@ -5493,7 +5493,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm4", 9) == 0) { { -return dev_storage + 405; +return dev_storage + 399; } } @@ -5529,7 +5529,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl4", 9) == 0) { { -return dev_storage + 390; +return dev_storage + 384; } } @@ -5544,7 +5544,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk4", 9) == 0) { { -return dev_storage + 375; +return dev_storage + 369; } } @@ -5559,7 +5559,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj4", 9) == 0) { { -return dev_storage + 360; +return dev_storage + 354; } } @@ -5574,7 +5574,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi4", 9) == 0) { { -return dev_storage + 345; +return dev_storage + 339; } } @@ -5589,7 +5589,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh4", 9) == 0) { { -return dev_storage + 330; +return dev_storage + 324; } } @@ -5604,7 +5604,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg4", 9) == 0) { { -return dev_storage + 315; +return dev_storage + 309; } } @@ -5619,7 +5619,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf4", 9) == 0) { { -return dev_storage + 300; +return dev_storage + 294; } } @@ -5634,7 +5634,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde4", 9) == 0) { { -return dev_storage + 285; +return dev_storage + 279; } } @@ -5652,7 +5652,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd4", 9) == 0) { { -return dev_storage + 270; +return dev_storage + 264; } } @@ -5667,7 +5667,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd4", 9) == 0) { { -return dev_storage + 184; +return dev_storage + 178; } } @@ -5688,7 +5688,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc4", 9) == 0) { { -return dev_storage + 255; +return dev_storage + 249; } } @@ -5703,7 +5703,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb4", 9) == 0) { { -return dev_storage + 240; +return dev_storage + 234; } } @@ -5718,7 +5718,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda4", 9) == 0) { { -return dev_storage + 225; +return dev_storage + 219; } } @@ -5733,7 +5733,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st94", 9) == 0) { { -return dev_storage + 722; +return dev_storage + 716; } } @@ -5748,7 +5748,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st84", 9) == 0) { { -return dev_storage + 712; +return dev_storage + 706; } } @@ -5763,7 +5763,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st74", 9) == 0) { { -return dev_storage + 702; +return dev_storage + 696; } } @@ -5778,7 +5778,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st64", 9) == 0) { { -return dev_storage + 692; +return dev_storage + 686; } } @@ -5793,7 +5793,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st54", 9) == 0) { { -return dev_storage + 682; +return dev_storage + 676; } } @@ -5808,7 +5808,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st44", 9) == 0) { { -return dev_storage + 672; +return dev_storage + 666; } } @@ -5823,7 +5823,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st34", 9) == 0) { { -return dev_storage + 662; +return dev_storage + 656; } } @@ -5838,7 +5838,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st24", 9) == 0) { { -return dev_storage + 652; +return dev_storage + 646; } } @@ -5856,7 +5856,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st14", 9) == 0) { { -return dev_storage + 642; +return dev_storage + 636; } } @@ -5871,7 +5871,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr14", 9) == 0) { { -return dev_storage + 626; +return dev_storage + 620; } } @@ -5916,7 +5916,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz3", 9) == 0) { { -return dev_storage + 599; +return dev_storage + 593; } } @@ -5934,7 +5934,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty3", 9) == 0) { { -return dev_storage + 760; +return dev_storage + 754; } } @@ -5949,7 +5949,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy3", 9) == 0) { { -return dev_storage + 584; +return dev_storage + 578; } } @@ -5970,7 +5970,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx3", 9) == 0) { { -return dev_storage + 569; +return dev_storage + 563; } } @@ -5985,7 +5985,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw3", 9) == 0) { { -return dev_storage + 554; +return dev_storage + 548; } } @@ -6000,7 +6000,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv3", 9) == 0) { { -return dev_storage + 539; +return dev_storage + 533; } } @@ -6015,7 +6015,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu3", 9) == 0) { { -return dev_storage + 524; +return dev_storage + 518; } } @@ -6033,7 +6033,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt3", 9) == 0) { { -return dev_storage + 509; +return dev_storage + 503; } } @@ -6048,7 +6048,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst3", 9) == 0) { { -return dev_storage + 50; +return dev_storage + 44; } } @@ -6069,7 +6069,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds3", 9) == 0) { { -return dev_storage + 494; +return dev_storage + 488; } } @@ -6084,7 +6084,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr3", 9) == 0) { { -return dev_storage + 479; +return dev_storage + 473; } } @@ -6099,7 +6099,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq3", 9) == 0) { { -return dev_storage + 464; +return dev_storage + 458; } } @@ -6114,7 +6114,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp3", 9) == 0) { { -return dev_storage + 449; +return dev_storage + 443; } } @@ -6129,7 +6129,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo3", 9) == 0) { { -return dev_storage + 434; +return dev_storage + 428; } } @@ -6144,7 +6144,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn3", 9) == 0) { { -return dev_storage + 419; +return dev_storage + 413; } } @@ -6162,7 +6162,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm3", 9) == 0) { { -return dev_storage + 404; +return dev_storage + 398; } } @@ -6198,7 +6198,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl3", 9) == 0) { { -return dev_storage + 389; +return dev_storage + 383; } } @@ -6213,7 +6213,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk3", 9) == 0) { { -return dev_storage + 374; +return dev_storage + 368; } } @@ -6228,7 +6228,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj3", 9) == 0) { { -return dev_storage + 359; +return dev_storage + 353; } } @@ -6243,7 +6243,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi3", 9) == 0) { { -return dev_storage + 344; +return dev_storage + 338; } } @@ -6258,7 +6258,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh3", 9) == 0) { { -return dev_storage + 329; +return dev_storage + 323; } } @@ -6273,7 +6273,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg3", 9) == 0) { { -return dev_storage + 314; +return dev_storage + 308; } } @@ -6288,7 +6288,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf3", 9) == 0) { { -return dev_storage + 299; +return dev_storage + 293; } } @@ -6303,7 +6303,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde3", 9) == 0) { { -return dev_storage + 284; +return dev_storage + 278; } } @@ -6321,7 +6321,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd3", 9) == 0) { { -return dev_storage + 269; +return dev_storage + 263; } } @@ -6336,7 +6336,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd3", 9) == 0) { { -return dev_storage + 183; +return dev_storage + 177; } } @@ -6357,7 +6357,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc3", 9) == 0) { { -return dev_storage + 254; +return dev_storage + 248; } } @@ -6372,7 +6372,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb3", 9) == 0) { { -return dev_storage + 239; +return dev_storage + 233; } } @@ -6387,7 +6387,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda3", 9) == 0) { { -return dev_storage + 224; +return dev_storage + 218; } } @@ -6402,7 +6402,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st93", 9) == 0) { { -return dev_storage + 721; +return dev_storage + 715; } } @@ -6417,7 +6417,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st83", 9) == 0) { { -return dev_storage + 711; +return dev_storage + 705; } } @@ -6432,7 +6432,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st73", 9) == 0) { { -return dev_storage + 701; +return dev_storage + 695; } } @@ -6447,7 +6447,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st63", 9) == 0) { { -return dev_storage + 691; +return dev_storage + 685; } } @@ -6462,7 +6462,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st53", 9) == 0) { { -return dev_storage + 681; +return dev_storage + 675; } } @@ -6477,7 +6477,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st43", 9) == 0) { { -return dev_storage + 671; +return dev_storage + 665; } } @@ -6492,7 +6492,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st33", 9) == 0) { { -return dev_storage + 661; +return dev_storage + 655; } } @@ -6507,7 +6507,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st23", 9) == 0) { { -return dev_storage + 651; +return dev_storage + 645; } } @@ -6525,7 +6525,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st13", 9) == 0) { { -return dev_storage + 641; +return dev_storage + 635; } } @@ -6540,7 +6540,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr13", 9) == 0) { { -return dev_storage + 625; +return dev_storage + 619; } } @@ -6585,7 +6585,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz2", 9) == 0) { { -return dev_storage + 598; +return dev_storage + 592; } } @@ -6603,7 +6603,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty2", 9) == 0) { { -return dev_storage + 759; +return dev_storage + 753; } } @@ -6618,7 +6618,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy2", 9) == 0) { { -return dev_storage + 583; +return dev_storage + 577; } } @@ -6639,7 +6639,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx2", 9) == 0) { { -return dev_storage + 568; +return dev_storage + 562; } } @@ -6654,7 +6654,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw2", 9) == 0) { { -return dev_storage + 553; +return dev_storage + 547; } } @@ -6669,7 +6669,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv2", 9) == 0) { { -return dev_storage + 538; +return dev_storage + 532; } } @@ -6684,7 +6684,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu2", 9) == 0) { { -return dev_storage + 523; +return dev_storage + 517; } } @@ -6702,7 +6702,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt2", 9) == 0) { { -return dev_storage + 508; +return dev_storage + 502; } } @@ -6717,7 +6717,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst2", 9) == 0) { { -return dev_storage + 49; +return dev_storage + 43; } } @@ -6738,7 +6738,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds2", 9) == 0) { { -return dev_storage + 493; +return dev_storage + 487; } } @@ -6753,7 +6753,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr2", 9) == 0) { { -return dev_storage + 478; +return dev_storage + 472; } } @@ -6768,7 +6768,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq2", 9) == 0) { { -return dev_storage + 463; +return dev_storage + 457; } } @@ -6783,7 +6783,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp2", 9) == 0) { { -return dev_storage + 448; +return dev_storage + 442; } } @@ -6798,7 +6798,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo2", 9) == 0) { { -return dev_storage + 433; +return dev_storage + 427; } } @@ -6813,7 +6813,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn2", 9) == 0) { { -return dev_storage + 418; +return dev_storage + 412; } } @@ -6831,7 +6831,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm2", 9) == 0) { { -return dev_storage + 403; +return dev_storage + 397; } } @@ -6867,7 +6867,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl2", 9) == 0) { { -return dev_storage + 388; +return dev_storage + 382; } } @@ -6882,7 +6882,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk2", 9) == 0) { { -return dev_storage + 373; +return dev_storage + 367; } } @@ -6897,7 +6897,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj2", 9) == 0) { { -return dev_storage + 358; +return dev_storage + 352; } } @@ -6912,7 +6912,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi2", 9) == 0) { { -return dev_storage + 343; +return dev_storage + 337; } } @@ -6927,7 +6927,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh2", 9) == 0) { { -return dev_storage + 328; +return dev_storage + 322; } } @@ -6942,7 +6942,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg2", 9) == 0) { { -return dev_storage + 313; +return dev_storage + 307; } } @@ -6957,7 +6957,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf2", 9) == 0) { { -return dev_storage + 298; +return dev_storage + 292; } } @@ -6972,7 +6972,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde2", 9) == 0) { { -return dev_storage + 283; +return dev_storage + 277; } } @@ -6990,7 +6990,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd2", 9) == 0) { { -return dev_storage + 268; +return dev_storage + 262; } } @@ -7005,7 +7005,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd2", 9) == 0) { { -return dev_storage + 182; +return dev_storage + 176; } } @@ -7026,7 +7026,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc2", 9) == 0) { { -return dev_storage + 253; +return dev_storage + 247; } } @@ -7041,7 +7041,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb2", 9) == 0) { { -return dev_storage + 238; +return dev_storage + 232; } } @@ -7056,7 +7056,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda2", 9) == 0) { { -return dev_storage + 223; +return dev_storage + 217; } } @@ -7071,7 +7071,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st92", 9) == 0) { { -return dev_storage + 720; +return dev_storage + 714; } } @@ -7086,7 +7086,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st82", 9) == 0) { { -return dev_storage + 710; +return dev_storage + 704; } } @@ -7101,7 +7101,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st72", 9) == 0) { { -return dev_storage + 700; +return dev_storage + 694; } } @@ -7116,7 +7116,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st62", 9) == 0) { { -return dev_storage + 690; +return dev_storage + 684; } } @@ -7131,7 +7131,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st52", 9) == 0) { { -return dev_storage + 680; +return dev_storage + 674; } } @@ -7146,7 +7146,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st42", 9) == 0) { { -return dev_storage + 670; +return dev_storage + 664; } } @@ -7161,7 +7161,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st32", 9) == 0) { { -return dev_storage + 660; +return dev_storage + 654; } } @@ -7176,7 +7176,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st22", 9) == 0) { { -return dev_storage + 650; +return dev_storage + 644; } } @@ -7194,7 +7194,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st12", 9) == 0) { { -return dev_storage + 640; +return dev_storage + 634; } } @@ -7209,7 +7209,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr12", 9) == 0) { { -return dev_storage + 624; +return dev_storage + 618; } } @@ -7254,7 +7254,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz1", 9) == 0) { { -return dev_storage + 597; +return dev_storage + 591; } } @@ -7272,7 +7272,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty1", 9) == 0) { { -return dev_storage + 758; +return dev_storage + 752; } } @@ -7287,7 +7287,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy1", 9) == 0) { { -return dev_storage + 582; +return dev_storage + 576; } } @@ -7308,7 +7308,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx1", 9) == 0) { { -return dev_storage + 567; +return dev_storage + 561; } } @@ -7323,7 +7323,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw1", 9) == 0) { { -return dev_storage + 552; +return dev_storage + 546; } } @@ -7338,7 +7338,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv1", 9) == 0) { { -return dev_storage + 537; +return dev_storage + 531; } } @@ -7353,7 +7353,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu1", 9) == 0) { { -return dev_storage + 522; +return dev_storage + 516; } } @@ -7371,7 +7371,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt1", 9) == 0) { { -return dev_storage + 507; +return dev_storage + 501; } } @@ -7386,7 +7386,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst1", 9) == 0) { { -return dev_storage + 48; +return dev_storage + 42; } } @@ -7407,7 +7407,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds1", 9) == 0) { { -return dev_storage + 492; +return dev_storage + 486; } } @@ -7422,7 +7422,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr1", 9) == 0) { { -return dev_storage + 477; +return dev_storage + 471; } } @@ -7437,7 +7437,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq1", 9) == 0) { { -return dev_storage + 462; +return dev_storage + 456; } } @@ -7452,7 +7452,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp1", 9) == 0) { { -return dev_storage + 447; +return dev_storage + 441; } } @@ -7467,7 +7467,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo1", 9) == 0) { { -return dev_storage + 432; +return dev_storage + 426; } } @@ -7482,7 +7482,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn1", 9) == 0) { { -return dev_storage + 417; +return dev_storage + 411; } } @@ -7500,7 +7500,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm1", 9) == 0) { { -return dev_storage + 402; +return dev_storage + 396; } } @@ -7536,7 +7536,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl1", 9) == 0) { { -return dev_storage + 387; +return dev_storage + 381; } } @@ -7551,7 +7551,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk1", 9) == 0) { { -return dev_storage + 372; +return dev_storage + 366; } } @@ -7566,7 +7566,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj1", 9) == 0) { { -return dev_storage + 357; +return dev_storage + 351; } } @@ -7581,7 +7581,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi1", 9) == 0) { { -return dev_storage + 342; +return dev_storage + 336; } } @@ -7596,7 +7596,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh1", 9) == 0) { { -return dev_storage + 327; +return dev_storage + 321; } } @@ -7611,7 +7611,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg1", 9) == 0) { { -return dev_storage + 312; +return dev_storage + 306; } } @@ -7626,7 +7626,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf1", 9) == 0) { { -return dev_storage + 297; +return dev_storage + 291; } } @@ -7641,7 +7641,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde1", 9) == 0) { { -return dev_storage + 282; +return dev_storage + 276; } } @@ -7659,7 +7659,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd1", 9) == 0) { { -return dev_storage + 267; +return dev_storage + 261; } } @@ -7674,7 +7674,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd1", 9) == 0) { { -return dev_storage + 181; +return dev_storage + 175; } } @@ -7695,7 +7695,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc1", 9) == 0) { { -return dev_storage + 252; +return dev_storage + 246; } } @@ -7710,7 +7710,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb1", 9) == 0) { { -return dev_storage + 237; +return dev_storage + 231; } } @@ -7725,7 +7725,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda1", 9) == 0) { { -return dev_storage + 222; +return dev_storage + 216; } } @@ -7740,7 +7740,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st91", 9) == 0) { { -return dev_storage + 719; +return dev_storage + 713; } } @@ -7755,7 +7755,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st81", 9) == 0) { { -return dev_storage + 709; +return dev_storage + 703; } } @@ -7770,7 +7770,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st71", 9) == 0) { { -return dev_storage + 699; +return dev_storage + 693; } } @@ -7785,7 +7785,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st61", 9) == 0) { { -return dev_storage + 689; +return dev_storage + 683; } } @@ -7800,7 +7800,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st51", 9) == 0) { { -return dev_storage + 679; +return dev_storage + 673; } } @@ -7815,7 +7815,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st41", 9) == 0) { { -return dev_storage + 669; +return dev_storage + 663; } } @@ -7830,7 +7830,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st31", 9) == 0) { { -return dev_storage + 659; +return dev_storage + 653; } } @@ -7845,7 +7845,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st21", 9) == 0) { { -return dev_storage + 649; +return dev_storage + 643; } } @@ -7863,7 +7863,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st11", 9) == 0) { { -return dev_storage + 639; +return dev_storage + 633; } } @@ -7878,7 +7878,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr11", 9) == 0) { { -return dev_storage + 623; +return dev_storage + 617; } } @@ -7923,7 +7923,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty0", 9) == 0) { { -return dev_storage + 757; +return dev_storage + 751; } } @@ -7938,7 +7938,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst0", 9) == 0) { { -return dev_storage + 47; +return dev_storage + 41; } } @@ -7968,7 +7968,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd0", 9) == 0) { { -return dev_storage + 180; +return dev_storage + 174; } } @@ -7983,7 +7983,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st90", 9) == 0) { { -return dev_storage + 718; +return dev_storage + 712; } } @@ -7998,7 +7998,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st80", 9) == 0) { { -return dev_storage + 708; +return dev_storage + 702; } } @@ -8013,7 +8013,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st70", 9) == 0) { { -return dev_storage + 698; +return dev_storage + 692; } } @@ -8028,7 +8028,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st60", 9) == 0) { { -return dev_storage + 688; +return dev_storage + 682; } } @@ -8043,7 +8043,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st50", 9) == 0) { { -return dev_storage + 678; +return dev_storage + 672; } } @@ -8058,7 +8058,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st40", 9) == 0) { { -return dev_storage + 668; +return dev_storage + 662; } } @@ -8073,7 +8073,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st30", 9) == 0) { { -return dev_storage + 658; +return dev_storage + 652; } } @@ -8088,7 +8088,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st20", 9) == 0) { { -return dev_storage + 648; +return dev_storage + 642; } } @@ -8106,7 +8106,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st10", 9) == 0) { { -return dev_storage + 638; +return dev_storage + 632; } } @@ -8121,7 +8121,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr10", 9) == 0) { { -return dev_storage + 622; +return dev_storage + 616; } } @@ -8190,7 +8190,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS9", 10) == 0) { { -return dev_storage + 830; +return dev_storage + 824; } } @@ -8205,7 +8205,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst99", 10) == 0) { { -return dev_storage + 146; +return dev_storage + 140; } } @@ -8220,7 +8220,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst89", 10) == 0) { { -return dev_storage + 136; +return dev_storage + 130; } } @@ -8235,7 +8235,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst79", 10) == 0) { { -return dev_storage + 126; +return dev_storage + 120; } } @@ -8250,7 +8250,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst69", 10) == 0) { { -return dev_storage + 116; +return dev_storage + 110; } } @@ -8268,7 +8268,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty59", 10) == 0) { { -return dev_storage + 816; +return dev_storage + 810; } } @@ -8283,7 +8283,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst59", 10) == 0) { { -return dev_storage + 106; +return dev_storage + 100; } } @@ -8307,7 +8307,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty49", 10) == 0) { { -return dev_storage + 806; +return dev_storage + 800; } } @@ -8322,7 +8322,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst49", 10) == 0) { { -return dev_storage + 96; +return dev_storage + 90; } } @@ -8346,7 +8346,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty39", 10) == 0) { { -return dev_storage + 796; +return dev_storage + 790; } } @@ -8361,7 +8361,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst39", 10) == 0) { { -return dev_storage + 86; +return dev_storage + 80; } } @@ -8385,7 +8385,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty29", 10) == 0) { { -return dev_storage + 786; +return dev_storage + 780; } } @@ -8400,7 +8400,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst29", 10) == 0) { { -return dev_storage + 76; +return dev_storage + 70; } } @@ -8424,7 +8424,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty19", 10) == 0) { { -return dev_storage + 776; +return dev_storage + 770; } } @@ -8439,7 +8439,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st119", 10) == 0) { { -return dev_storage + 747; +return dev_storage + 741; } } @@ -8454,7 +8454,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst19", 10) == 0) { { -return dev_storage + 66; +return dev_storage + 60; } } @@ -8475,7 +8475,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st109", 10) == 0) { { -return dev_storage + 737; +return dev_storage + 731; } } @@ -8499,7 +8499,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS8", 10) == 0) { { -return dev_storage + 829; +return dev_storage + 823; } } @@ -8514,7 +8514,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst98", 10) == 0) { { -return dev_storage + 145; +return dev_storage + 139; } } @@ -8529,7 +8529,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst88", 10) == 0) { { -return dev_storage + 135; +return dev_storage + 129; } } @@ -8544,7 +8544,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst78", 10) == 0) { { -return dev_storage + 125; +return dev_storage + 119; } } @@ -8559,7 +8559,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst68", 10) == 0) { { -return dev_storage + 115; +return dev_storage + 109; } } @@ -8577,7 +8577,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty58", 10) == 0) { { -return dev_storage + 815; +return dev_storage + 809; } } @@ -8592,7 +8592,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst58", 10) == 0) { { -return dev_storage + 105; +return dev_storage + 99; } } @@ -8616,7 +8616,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty48", 10) == 0) { { -return dev_storage + 805; +return dev_storage + 799; } } @@ -8631,7 +8631,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst48", 10) == 0) { { -return dev_storage + 95; +return dev_storage + 89; } } @@ -8655,7 +8655,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty38", 10) == 0) { { -return dev_storage + 795; +return dev_storage + 789; } } @@ -8670,7 +8670,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst38", 10) == 0) { { -return dev_storage + 85; +return dev_storage + 79; } } @@ -8694,7 +8694,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty28", 10) == 0) { { -return dev_storage + 785; +return dev_storage + 779; } } @@ -8709,7 +8709,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst28", 10) == 0) { { -return dev_storage + 75; +return dev_storage + 69; } } @@ -8733,7 +8733,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty18", 10) == 0) { { -return dev_storage + 775; +return dev_storage + 769; } } @@ -8748,7 +8748,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st118", 10) == 0) { { -return dev_storage + 746; +return dev_storage + 740; } } @@ -8763,7 +8763,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst18", 10) == 0) { { -return dev_storage + 65; +return dev_storage + 59; } } @@ -8784,7 +8784,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st108", 10) == 0) { { -return dev_storage + 736; +return dev_storage + 730; } } @@ -8808,7 +8808,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS7", 10) == 0) { { -return dev_storage + 828; +return dev_storage + 822; } } @@ -8823,7 +8823,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst97", 10) == 0) { { -return dev_storage + 144; +return dev_storage + 138; } } @@ -8838,7 +8838,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst87", 10) == 0) { { -return dev_storage + 134; +return dev_storage + 128; } } @@ -8853,7 +8853,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst77", 10) == 0) { { -return dev_storage + 124; +return dev_storage + 118; } } @@ -8868,7 +8868,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst67", 10) == 0) { { -return dev_storage + 114; +return dev_storage + 108; } } @@ -8886,7 +8886,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty57", 10) == 0) { { -return dev_storage + 814; +return dev_storage + 808; } } @@ -8901,7 +8901,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst57", 10) == 0) { { -return dev_storage + 104; +return dev_storage + 98; } } @@ -8925,7 +8925,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty47", 10) == 0) { { -return dev_storage + 804; +return dev_storage + 798; } } @@ -8940,7 +8940,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst47", 10) == 0) { { -return dev_storage + 94; +return dev_storage + 88; } } @@ -8964,7 +8964,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty37", 10) == 0) { { -return dev_storage + 794; +return dev_storage + 788; } } @@ -8979,7 +8979,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst37", 10) == 0) { { -return dev_storage + 84; +return dev_storage + 78; } } @@ -9003,7 +9003,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty27", 10) == 0) { { -return dev_storage + 784; +return dev_storage + 778; } } @@ -9018,7 +9018,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st127", 10) == 0) { { -return dev_storage + 755; +return dev_storage + 749; } } @@ -9033,7 +9033,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst27", 10) == 0) { { -return dev_storage + 74; +return dev_storage + 68; } } @@ -9057,7 +9057,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty17", 10) == 0) { { -return dev_storage + 774; +return dev_storage + 768; } } @@ -9072,7 +9072,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st117", 10) == 0) { { -return dev_storage + 745; +return dev_storage + 739; } } @@ -9087,7 +9087,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst17", 10) == 0) { { -return dev_storage + 64; +return dev_storage + 58; } } @@ -9108,7 +9108,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st107", 10) == 0) { { -return dev_storage + 735; +return dev_storage + 729; } } @@ -9132,7 +9132,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS6", 10) == 0) { { -return dev_storage + 827; +return dev_storage + 821; } } @@ -9147,7 +9147,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst96", 10) == 0) { { -return dev_storage + 143; +return dev_storage + 137; } } @@ -9162,7 +9162,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst86", 10) == 0) { { -return dev_storage + 133; +return dev_storage + 127; } } @@ -9177,7 +9177,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst76", 10) == 0) { { -return dev_storage + 123; +return dev_storage + 117; } } @@ -9192,7 +9192,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst66", 10) == 0) { { -return dev_storage + 113; +return dev_storage + 107; } } @@ -9210,7 +9210,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty56", 10) == 0) { { -return dev_storage + 813; +return dev_storage + 807; } } @@ -9225,7 +9225,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst56", 10) == 0) { { -return dev_storage + 103; +return dev_storage + 97; } } @@ -9249,7 +9249,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty46", 10) == 0) { { -return dev_storage + 803; +return dev_storage + 797; } } @@ -9264,7 +9264,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst46", 10) == 0) { { -return dev_storage + 93; +return dev_storage + 87; } } @@ -9288,7 +9288,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty36", 10) == 0) { { -return dev_storage + 793; +return dev_storage + 787; } } @@ -9303,7 +9303,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst36", 10) == 0) { { -return dev_storage + 83; +return dev_storage + 77; } } @@ -9327,7 +9327,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty26", 10) == 0) { { -return dev_storage + 783; +return dev_storage + 777; } } @@ -9342,7 +9342,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st126", 10) == 0) { { -return dev_storage + 754; +return dev_storage + 748; } } @@ -9357,7 +9357,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst26", 10) == 0) { { -return dev_storage + 73; +return dev_storage + 67; } } @@ -9381,7 +9381,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty16", 10) == 0) { { -return dev_storage + 773; +return dev_storage + 767; } } @@ -9396,7 +9396,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st116", 10) == 0) { { -return dev_storage + 744; +return dev_storage + 738; } } @@ -9411,7 +9411,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst16", 10) == 0) { { -return dev_storage + 63; +return dev_storage + 57; } } @@ -9447,7 +9447,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st106", 10) == 0) { { -return dev_storage + 734; +return dev_storage + 728; } } @@ -9471,7 +9471,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz15", 10) == 0) { { -return dev_storage + 611; +return dev_storage + 605; } } @@ -9489,7 +9489,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS5", 10) == 0) { { -return dev_storage + 826; +return dev_storage + 820; } } @@ -9504,7 +9504,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty55", 10) == 0) { { -return dev_storage + 812; +return dev_storage + 806; } } @@ -9519,7 +9519,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty45", 10) == 0) { { -return dev_storage + 802; +return dev_storage + 796; } } @@ -9534,7 +9534,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty35", 10) == 0) { { -return dev_storage + 792; +return dev_storage + 786; } } @@ -9549,7 +9549,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty25", 10) == 0) { { -return dev_storage + 782; +return dev_storage + 776; } } @@ -9567,7 +9567,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty15", 10) == 0) { { -return dev_storage + 772; +return dev_storage + 766; } } @@ -9582,7 +9582,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy15", 10) == 0) { { -return dev_storage + 596; +return dev_storage + 590; } } @@ -9609,7 +9609,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx15", 10) == 0) { { -return dev_storage + 581; +return dev_storage + 575; } } @@ -9624,7 +9624,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw15", 10) == 0) { { -return dev_storage + 566; +return dev_storage + 560; } } @@ -9639,7 +9639,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv15", 10) == 0) { { -return dev_storage + 551; +return dev_storage + 545; } } @@ -9654,7 +9654,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu15", 10) == 0) { { -return dev_storage + 536; +return dev_storage + 530; } } @@ -9672,7 +9672,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst95", 10) == 0) { { -return dev_storage + 142; +return dev_storage + 136; } } @@ -9687,7 +9687,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst85", 10) == 0) { { -return dev_storage + 132; +return dev_storage + 126; } } @@ -9702,7 +9702,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst75", 10) == 0) { { -return dev_storage + 122; +return dev_storage + 116; } } @@ -9717,7 +9717,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst65", 10) == 0) { { -return dev_storage + 112; +return dev_storage + 106; } } @@ -9732,7 +9732,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst55", 10) == 0) { { -return dev_storage + 102; +return dev_storage + 96; } } @@ -9747,7 +9747,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst45", 10) == 0) { { -return dev_storage + 92; +return dev_storage + 86; } } @@ -9762,7 +9762,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst35", 10) == 0) { { -return dev_storage + 82; +return dev_storage + 76; } } @@ -9777,7 +9777,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst25", 10) == 0) { { -return dev_storage + 72; +return dev_storage + 66; } } @@ -9795,7 +9795,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt15", 10) == 0) { { -return dev_storage + 521; +return dev_storage + 515; } } @@ -9810,7 +9810,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst15", 10) == 0) { { -return dev_storage + 62; +return dev_storage + 56; } } @@ -9837,7 +9837,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds15", 10) == 0) { { -return dev_storage + 506; +return dev_storage + 500; } } @@ -9852,7 +9852,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr15", 10) == 0) { { -return dev_storage + 491; +return dev_storage + 485; } } @@ -9867,7 +9867,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq15", 10) == 0) { { -return dev_storage + 476; +return dev_storage + 470; } } @@ -9882,7 +9882,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp15", 10) == 0) { { -return dev_storage + 461; +return dev_storage + 455; } } @@ -9897,7 +9897,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo15", 10) == 0) { { -return dev_storage + 446; +return dev_storage + 440; } } @@ -9912,7 +9912,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn15", 10) == 0) { { -return dev_storage + 431; +return dev_storage + 425; } } @@ -9930,7 +9930,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm15", 10) == 0) { { -return dev_storage + 416; +return dev_storage + 410; } } @@ -9966,7 +9966,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl15", 10) == 0) { { -return dev_storage + 401; +return dev_storage + 395; } } @@ -9981,7 +9981,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk15", 10) == 0) { { -return dev_storage + 386; +return dev_storage + 380; } } @@ -9996,7 +9996,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj15", 10) == 0) { { -return dev_storage + 371; +return dev_storage + 365; } } @@ -10011,7 +10011,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi15", 10) == 0) { { -return dev_storage + 356; +return dev_storage + 350; } } @@ -10026,7 +10026,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh15", 10) == 0) { { -return dev_storage + 341; +return dev_storage + 335; } } @@ -10041,7 +10041,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg15", 10) == 0) { { -return dev_storage + 326; +return dev_storage + 320; } } @@ -10056,7 +10056,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf15", 10) == 0) { { -return dev_storage + 311; +return dev_storage + 305; } } @@ -10071,7 +10071,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde15", 10) == 0) { { -return dev_storage + 296; +return dev_storage + 290; } } @@ -10089,7 +10089,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd15", 10) == 0) { { -return dev_storage + 281; +return dev_storage + 275; } } @@ -10104,7 +10104,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd15", 10) == 0) { { -return dev_storage + 195; +return dev_storage + 189; } } @@ -10125,7 +10125,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc15", 10) == 0) { { -return dev_storage + 266; +return dev_storage + 260; } } @@ -10140,7 +10140,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb15", 10) == 0) { { -return dev_storage + 251; +return dev_storage + 245; } } @@ -10155,7 +10155,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda15", 10) == 0) { { -return dev_storage + 236; +return dev_storage + 230; } } @@ -10173,7 +10173,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st125", 10) == 0) { { -return dev_storage + 753; +return dev_storage + 747; } } @@ -10188,7 +10188,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st115", 10) == 0) { { -return dev_storage + 743; +return dev_storage + 737; } } @@ -10203,7 +10203,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st105", 10) == 0) { { -return dev_storage + 733; +return dev_storage + 727; } } @@ -10233,7 +10233,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz14", 10) == 0) { { -return dev_storage + 610; +return dev_storage + 604; } } @@ -10251,7 +10251,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS4", 10) == 0) { { -return dev_storage + 825; +return dev_storage + 819; } } @@ -10266,7 +10266,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty54", 10) == 0) { { -return dev_storage + 811; +return dev_storage + 805; } } @@ -10281,7 +10281,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty44", 10) == 0) { { -return dev_storage + 801; +return dev_storage + 795; } } @@ -10296,7 +10296,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty34", 10) == 0) { { -return dev_storage + 791; +return dev_storage + 785; } } @@ -10311,7 +10311,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty24", 10) == 0) { { -return dev_storage + 781; +return dev_storage + 775; } } @@ -10329,7 +10329,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty14", 10) == 0) { { -return dev_storage + 771; +return dev_storage + 765; } } @@ -10344,7 +10344,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy14", 10) == 0) { { -return dev_storage + 595; +return dev_storage + 589; } } @@ -10371,7 +10371,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx14", 10) == 0) { { -return dev_storage + 580; +return dev_storage + 574; } } @@ -10386,7 +10386,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw14", 10) == 0) { { -return dev_storage + 565; +return dev_storage + 559; } } @@ -10401,7 +10401,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv14", 10) == 0) { { -return dev_storage + 550; +return dev_storage + 544; } } @@ -10416,7 +10416,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu14", 10) == 0) { { -return dev_storage + 535; +return dev_storage + 529; } } @@ -10434,7 +10434,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst94", 10) == 0) { { -return dev_storage + 141; +return dev_storage + 135; } } @@ -10449,7 +10449,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst84", 10) == 0) { { -return dev_storage + 131; +return dev_storage + 125; } } @@ -10464,7 +10464,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst74", 10) == 0) { { -return dev_storage + 121; +return dev_storage + 115; } } @@ -10479,7 +10479,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst64", 10) == 0) { { -return dev_storage + 111; +return dev_storage + 105; } } @@ -10494,7 +10494,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst54", 10) == 0) { { -return dev_storage + 101; +return dev_storage + 95; } } @@ -10509,7 +10509,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst44", 10) == 0) { { -return dev_storage + 91; +return dev_storage + 85; } } @@ -10524,7 +10524,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst34", 10) == 0) { { -return dev_storage + 81; +return dev_storage + 75; } } @@ -10539,7 +10539,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst24", 10) == 0) { { -return dev_storage + 71; +return dev_storage + 65; } } @@ -10557,7 +10557,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt14", 10) == 0) { { -return dev_storage + 520; +return dev_storage + 514; } } @@ -10572,7 +10572,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst14", 10) == 0) { { -return dev_storage + 61; +return dev_storage + 55; } } @@ -10599,7 +10599,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds14", 10) == 0) { { -return dev_storage + 505; +return dev_storage + 499; } } @@ -10614,7 +10614,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr14", 10) == 0) { { -return dev_storage + 490; +return dev_storage + 484; } } @@ -10629,7 +10629,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq14", 10) == 0) { { -return dev_storage + 475; +return dev_storage + 469; } } @@ -10644,7 +10644,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp14", 10) == 0) { { -return dev_storage + 460; +return dev_storage + 454; } } @@ -10659,7 +10659,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo14", 10) == 0) { { -return dev_storage + 445; +return dev_storage + 439; } } @@ -10674,7 +10674,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn14", 10) == 0) { { -return dev_storage + 430; +return dev_storage + 424; } } @@ -10692,7 +10692,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm14", 10) == 0) { { -return dev_storage + 415; +return dev_storage + 409; } } @@ -10728,7 +10728,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl14", 10) == 0) { { -return dev_storage + 400; +return dev_storage + 394; } } @@ -10743,7 +10743,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk14", 10) == 0) { { -return dev_storage + 385; +return dev_storage + 379; } } @@ -10758,7 +10758,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj14", 10) == 0) { { -return dev_storage + 370; +return dev_storage + 364; } } @@ -10773,7 +10773,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi14", 10) == 0) { { -return dev_storage + 355; +return dev_storage + 349; } } @@ -10788,7 +10788,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh14", 10) == 0) { { -return dev_storage + 340; +return dev_storage + 334; } } @@ -10803,7 +10803,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg14", 10) == 0) { { -return dev_storage + 325; +return dev_storage + 319; } } @@ -10818,7 +10818,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf14", 10) == 0) { { -return dev_storage + 310; +return dev_storage + 304; } } @@ -10833,7 +10833,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde14", 10) == 0) { { -return dev_storage + 295; +return dev_storage + 289; } } @@ -10851,7 +10851,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd14", 10) == 0) { { -return dev_storage + 280; +return dev_storage + 274; } } @@ -10866,7 +10866,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd14", 10) == 0) { { -return dev_storage + 194; +return dev_storage + 188; } } @@ -10887,7 +10887,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc14", 10) == 0) { { -return dev_storage + 265; +return dev_storage + 259; } } @@ -10902,7 +10902,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb14", 10) == 0) { { -return dev_storage + 250; +return dev_storage + 244; } } @@ -10917,7 +10917,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda14", 10) == 0) { { -return dev_storage + 235; +return dev_storage + 229; } } @@ -10935,7 +10935,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st124", 10) == 0) { { -return dev_storage + 752; +return dev_storage + 746; } } @@ -10950,7 +10950,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st114", 10) == 0) { { -return dev_storage + 742; +return dev_storage + 736; } } @@ -10965,7 +10965,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st104", 10) == 0) { { -return dev_storage + 732; +return dev_storage + 726; } } @@ -10995,7 +10995,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz13", 10) == 0) { { -return dev_storage + 609; +return dev_storage + 603; } } @@ -11013,7 +11013,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS3", 10) == 0) { { -return dev_storage + 824; +return dev_storage + 818; } } @@ -11028,7 +11028,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty63", 10) == 0) { { -return dev_storage + 820; +return dev_storage + 814; } } @@ -11043,7 +11043,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty53", 10) == 0) { { -return dev_storage + 810; +return dev_storage + 804; } } @@ -11058,7 +11058,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty43", 10) == 0) { { -return dev_storage + 800; +return dev_storage + 794; } } @@ -11073,7 +11073,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty33", 10) == 0) { { -return dev_storage + 790; +return dev_storage + 784; } } @@ -11088,7 +11088,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty23", 10) == 0) { { -return dev_storage + 780; +return dev_storage + 774; } } @@ -11106,7 +11106,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty13", 10) == 0) { { -return dev_storage + 770; +return dev_storage + 764; } } @@ -11121,7 +11121,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy13", 10) == 0) { { -return dev_storage + 594; +return dev_storage + 588; } } @@ -11148,7 +11148,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx13", 10) == 0) { { -return dev_storage + 579; +return dev_storage + 573; } } @@ -11163,7 +11163,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw13", 10) == 0) { { -return dev_storage + 564; +return dev_storage + 558; } } @@ -11178,7 +11178,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv13", 10) == 0) { { -return dev_storage + 549; +return dev_storage + 543; } } @@ -11193,7 +11193,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu13", 10) == 0) { { -return dev_storage + 534; +return dev_storage + 528; } } @@ -11211,7 +11211,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst93", 10) == 0) { { -return dev_storage + 140; +return dev_storage + 134; } } @@ -11226,7 +11226,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst83", 10) == 0) { { -return dev_storage + 130; +return dev_storage + 124; } } @@ -11241,7 +11241,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst73", 10) == 0) { { -return dev_storage + 120; +return dev_storage + 114; } } @@ -11256,7 +11256,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst63", 10) == 0) { { -return dev_storage + 110; +return dev_storage + 104; } } @@ -11271,7 +11271,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst53", 10) == 0) { { -return dev_storage + 100; +return dev_storage + 94; } } @@ -11286,7 +11286,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst43", 10) == 0) { { -return dev_storage + 90; +return dev_storage + 84; } } @@ -11301,7 +11301,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst33", 10) == 0) { { -return dev_storage + 80; +return dev_storage + 74; } } @@ -11316,7 +11316,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst23", 10) == 0) { { -return dev_storage + 70; +return dev_storage + 64; } } @@ -11334,7 +11334,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt13", 10) == 0) { { -return dev_storage + 519; +return dev_storage + 513; } } @@ -11349,7 +11349,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst13", 10) == 0) { { -return dev_storage + 60; +return dev_storage + 54; } } @@ -11376,7 +11376,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds13", 10) == 0) { { -return dev_storage + 504; +return dev_storage + 498; } } @@ -11391,7 +11391,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr13", 10) == 0) { { -return dev_storage + 489; +return dev_storage + 483; } } @@ -11406,7 +11406,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq13", 10) == 0) { { -return dev_storage + 474; +return dev_storage + 468; } } @@ -11421,7 +11421,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp13", 10) == 0) { { -return dev_storage + 459; +return dev_storage + 453; } } @@ -11436,7 +11436,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo13", 10) == 0) { { -return dev_storage + 444; +return dev_storage + 438; } } @@ -11451,7 +11451,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn13", 10) == 0) { { -return dev_storage + 429; +return dev_storage + 423; } } @@ -11469,7 +11469,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm13", 10) == 0) { { -return dev_storage + 414; +return dev_storage + 408; } } @@ -11505,7 +11505,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl13", 10) == 0) { { -return dev_storage + 399; +return dev_storage + 393; } } @@ -11520,7 +11520,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk13", 10) == 0) { { -return dev_storage + 384; +return dev_storage + 378; } } @@ -11535,7 +11535,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj13", 10) == 0) { { -return dev_storage + 369; +return dev_storage + 363; } } @@ -11550,7 +11550,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi13", 10) == 0) { { -return dev_storage + 354; +return dev_storage + 348; } } @@ -11565,7 +11565,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh13", 10) == 0) { { -return dev_storage + 339; +return dev_storage + 333; } } @@ -11580,7 +11580,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg13", 10) == 0) { { -return dev_storage + 324; +return dev_storage + 318; } } @@ -11595,7 +11595,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf13", 10) == 0) { { -return dev_storage + 309; +return dev_storage + 303; } } @@ -11610,7 +11610,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde13", 10) == 0) { { -return dev_storage + 294; +return dev_storage + 288; } } @@ -11628,7 +11628,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd13", 10) == 0) { { -return dev_storage + 279; +return dev_storage + 273; } } @@ -11643,7 +11643,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd13", 10) == 0) { { -return dev_storage + 193; +return dev_storage + 187; } } @@ -11664,7 +11664,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc13", 10) == 0) { { -return dev_storage + 264; +return dev_storage + 258; } } @@ -11679,7 +11679,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb13", 10) == 0) { { -return dev_storage + 249; +return dev_storage + 243; } } @@ -11694,7 +11694,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda13", 10) == 0) { { -return dev_storage + 234; +return dev_storage + 228; } } @@ -11712,7 +11712,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st123", 10) == 0) { { -return dev_storage + 751; +return dev_storage + 745; } } @@ -11727,7 +11727,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st113", 10) == 0) { { -return dev_storage + 741; +return dev_storage + 735; } } @@ -11742,7 +11742,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st103", 10) == 0) { { -return dev_storage + 731; +return dev_storage + 725; } } @@ -11772,7 +11772,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz12", 10) == 0) { { -return dev_storage + 608; +return dev_storage + 602; } } @@ -11790,7 +11790,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS2", 10) == 0) { { -return dev_storage + 823; +return dev_storage + 817; } } @@ -11805,7 +11805,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty62", 10) == 0) { { -return dev_storage + 819; +return dev_storage + 813; } } @@ -11820,7 +11820,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty52", 10) == 0) { { -return dev_storage + 809; +return dev_storage + 803; } } @@ -11835,7 +11835,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty42", 10) == 0) { { -return dev_storage + 799; +return dev_storage + 793; } } @@ -11850,7 +11850,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty32", 10) == 0) { { -return dev_storage + 789; +return dev_storage + 783; } } @@ -11865,7 +11865,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty22", 10) == 0) { { -return dev_storage + 779; +return dev_storage + 773; } } @@ -11883,7 +11883,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty12", 10) == 0) { { -return dev_storage + 769; +return dev_storage + 763; } } @@ -11898,7 +11898,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy12", 10) == 0) { { -return dev_storage + 593; +return dev_storage + 587; } } @@ -11925,7 +11925,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx12", 10) == 0) { { -return dev_storage + 578; +return dev_storage + 572; } } @@ -11940,7 +11940,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw12", 10) == 0) { { -return dev_storage + 563; +return dev_storage + 557; } } @@ -11955,7 +11955,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv12", 10) == 0) { { -return dev_storage + 548; +return dev_storage + 542; } } @@ -11970,7 +11970,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu12", 10) == 0) { { -return dev_storage + 533; +return dev_storage + 527; } } @@ -11988,7 +11988,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst92", 10) == 0) { { -return dev_storage + 139; +return dev_storage + 133; } } @@ -12003,7 +12003,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst82", 10) == 0) { { -return dev_storage + 129; +return dev_storage + 123; } } @@ -12018,7 +12018,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst72", 10) == 0) { { -return dev_storage + 119; +return dev_storage + 113; } } @@ -12033,7 +12033,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst62", 10) == 0) { { -return dev_storage + 109; +return dev_storage + 103; } } @@ -12048,7 +12048,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst52", 10) == 0) { { -return dev_storage + 99; +return dev_storage + 93; } } @@ -12063,7 +12063,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst42", 10) == 0) { { -return dev_storage + 89; +return dev_storage + 83; } } @@ -12078,7 +12078,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst32", 10) == 0) { { -return dev_storage + 79; +return dev_storage + 73; } } @@ -12093,7 +12093,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst22", 10) == 0) { { -return dev_storage + 69; +return dev_storage + 63; } } @@ -12111,7 +12111,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt12", 10) == 0) { { -return dev_storage + 518; +return dev_storage + 512; } } @@ -12126,7 +12126,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst12", 10) == 0) { { -return dev_storage + 59; +return dev_storage + 53; } } @@ -12153,7 +12153,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds12", 10) == 0) { { -return dev_storage + 503; +return dev_storage + 497; } } @@ -12168,7 +12168,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr12", 10) == 0) { { -return dev_storage + 488; +return dev_storage + 482; } } @@ -12183,7 +12183,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq12", 10) == 0) { { -return dev_storage + 473; +return dev_storage + 467; } } @@ -12198,7 +12198,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp12", 10) == 0) { { -return dev_storage + 458; +return dev_storage + 452; } } @@ -12213,7 +12213,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo12", 10) == 0) { { -return dev_storage + 443; +return dev_storage + 437; } } @@ -12228,7 +12228,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn12", 10) == 0) { { -return dev_storage + 428; +return dev_storage + 422; } } @@ -12246,7 +12246,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm12", 10) == 0) { { -return dev_storage + 413; +return dev_storage + 407; } } @@ -12282,7 +12282,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl12", 10) == 0) { { -return dev_storage + 398; +return dev_storage + 392; } } @@ -12297,7 +12297,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk12", 10) == 0) { { -return dev_storage + 383; +return dev_storage + 377; } } @@ -12312,7 +12312,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj12", 10) == 0) { { -return dev_storage + 368; +return dev_storage + 362; } } @@ -12327,7 +12327,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi12", 10) == 0) { { -return dev_storage + 353; +return dev_storage + 347; } } @@ -12342,7 +12342,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh12", 10) == 0) { { -return dev_storage + 338; +return dev_storage + 332; } } @@ -12357,7 +12357,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg12", 10) == 0) { { -return dev_storage + 323; +return dev_storage + 317; } } @@ -12372,7 +12372,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf12", 10) == 0) { { -return dev_storage + 308; +return dev_storage + 302; } } @@ -12387,7 +12387,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde12", 10) == 0) { { -return dev_storage + 293; +return dev_storage + 287; } } @@ -12405,7 +12405,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd12", 10) == 0) { { -return dev_storage + 278; +return dev_storage + 272; } } @@ -12420,7 +12420,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd12", 10) == 0) { { -return dev_storage + 192; +return dev_storage + 186; } } @@ -12441,7 +12441,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc12", 10) == 0) { { -return dev_storage + 263; +return dev_storage + 257; } } @@ -12456,7 +12456,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb12", 10) == 0) { { -return dev_storage + 248; +return dev_storage + 242; } } @@ -12471,7 +12471,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda12", 10) == 0) { { -return dev_storage + 233; +return dev_storage + 227; } } @@ -12489,7 +12489,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st122", 10) == 0) { { -return dev_storage + 750; +return dev_storage + 744; } } @@ -12504,7 +12504,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st112", 10) == 0) { { -return dev_storage + 740; +return dev_storage + 734; } } @@ -12519,7 +12519,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st102", 10) == 0) { { -return dev_storage + 730; +return dev_storage + 724; } } @@ -12549,7 +12549,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz11", 10) == 0) { { -return dev_storage + 607; +return dev_storage + 601; } } @@ -12567,7 +12567,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS1", 10) == 0) { { -return dev_storage + 822; +return dev_storage + 816; } } @@ -12582,7 +12582,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty61", 10) == 0) { { -return dev_storage + 818; +return dev_storage + 812; } } @@ -12597,7 +12597,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty51", 10) == 0) { { -return dev_storage + 808; +return dev_storage + 802; } } @@ -12612,7 +12612,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty41", 10) == 0) { { -return dev_storage + 798; +return dev_storage + 792; } } @@ -12627,7 +12627,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty31", 10) == 0) { { -return dev_storage + 788; +return dev_storage + 782; } } @@ -12642,7 +12642,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty21", 10) == 0) { { -return dev_storage + 778; +return dev_storage + 772; } } @@ -12660,7 +12660,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty11", 10) == 0) { { -return dev_storage + 768; +return dev_storage + 762; } } @@ -12675,7 +12675,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy11", 10) == 0) { { -return dev_storage + 592; +return dev_storage + 586; } } @@ -12702,7 +12702,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx11", 10) == 0) { { -return dev_storage + 577; +return dev_storage + 571; } } @@ -12717,7 +12717,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw11", 10) == 0) { { -return dev_storage + 562; +return dev_storage + 556; } } @@ -12732,7 +12732,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv11", 10) == 0) { { -return dev_storage + 547; +return dev_storage + 541; } } @@ -12747,7 +12747,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu11", 10) == 0) { { -return dev_storage + 532; +return dev_storage + 526; } } @@ -12765,7 +12765,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst91", 10) == 0) { { -return dev_storage + 138; +return dev_storage + 132; } } @@ -12780,7 +12780,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst81", 10) == 0) { { -return dev_storage + 128; +return dev_storage + 122; } } @@ -12795,7 +12795,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst71", 10) == 0) { { -return dev_storage + 118; +return dev_storage + 112; } } @@ -12810,7 +12810,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst61", 10) == 0) { { -return dev_storage + 108; +return dev_storage + 102; } } @@ -12825,7 +12825,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst51", 10) == 0) { { -return dev_storage + 98; +return dev_storage + 92; } } @@ -12840,7 +12840,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst41", 10) == 0) { { -return dev_storage + 88; +return dev_storage + 82; } } @@ -12855,7 +12855,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst31", 10) == 0) { { -return dev_storage + 78; +return dev_storage + 72; } } @@ -12870,7 +12870,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst21", 10) == 0) { { -return dev_storage + 68; +return dev_storage + 62; } } @@ -12888,7 +12888,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt11", 10) == 0) { { -return dev_storage + 517; +return dev_storage + 511; } } @@ -12903,7 +12903,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst11", 10) == 0) { { -return dev_storage + 58; +return dev_storage + 52; } } @@ -12930,7 +12930,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds11", 10) == 0) { { -return dev_storage + 502; +return dev_storage + 496; } } @@ -12945,7 +12945,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr11", 10) == 0) { { -return dev_storage + 487; +return dev_storage + 481; } } @@ -12960,7 +12960,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq11", 10) == 0) { { -return dev_storage + 472; +return dev_storage + 466; } } @@ -12975,7 +12975,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp11", 10) == 0) { { -return dev_storage + 457; +return dev_storage + 451; } } @@ -12990,7 +12990,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo11", 10) == 0) { { -return dev_storage + 442; +return dev_storage + 436; } } @@ -13005,7 +13005,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn11", 10) == 0) { { -return dev_storage + 427; +return dev_storage + 421; } } @@ -13023,7 +13023,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm11", 10) == 0) { { -return dev_storage + 412; +return dev_storage + 406; } } @@ -13059,7 +13059,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl11", 10) == 0) { { -return dev_storage + 397; +return dev_storage + 391; } } @@ -13074,7 +13074,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk11", 10) == 0) { { -return dev_storage + 382; +return dev_storage + 376; } } @@ -13089,7 +13089,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj11", 10) == 0) { { -return dev_storage + 367; +return dev_storage + 361; } } @@ -13104,7 +13104,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi11", 10) == 0) { { -return dev_storage + 352; +return dev_storage + 346; } } @@ -13119,7 +13119,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh11", 10) == 0) { { -return dev_storage + 337; +return dev_storage + 331; } } @@ -13134,7 +13134,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg11", 10) == 0) { { -return dev_storage + 322; +return dev_storage + 316; } } @@ -13149,7 +13149,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf11", 10) == 0) { { -return dev_storage + 307; +return dev_storage + 301; } } @@ -13164,7 +13164,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde11", 10) == 0) { { -return dev_storage + 292; +return dev_storage + 286; } } @@ -13182,7 +13182,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd11", 10) == 0) { { -return dev_storage + 277; +return dev_storage + 271; } } @@ -13197,7 +13197,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd11", 10) == 0) { { -return dev_storage + 191; +return dev_storage + 185; } } @@ -13218,7 +13218,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc11", 10) == 0) { { -return dev_storage + 262; +return dev_storage + 256; } } @@ -13233,7 +13233,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb11", 10) == 0) { { -return dev_storage + 247; +return dev_storage + 241; } } @@ -13248,7 +13248,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda11", 10) == 0) { { -return dev_storage + 232; +return dev_storage + 226; } } @@ -13266,7 +13266,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st121", 10) == 0) { { -return dev_storage + 749; +return dev_storage + 743; } } @@ -13281,7 +13281,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st111", 10) == 0) { { -return dev_storage + 739; +return dev_storage + 733; } } @@ -13296,7 +13296,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st101", 10) == 0) { { -return dev_storage + 729; +return dev_storage + 723; } } @@ -13326,7 +13326,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz10", 10) == 0) { { -return dev_storage + 606; +return dev_storage + 600; } } @@ -13344,7 +13344,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS0", 10) == 0) { { -return dev_storage + 821; +return dev_storage + 815; } } @@ -13359,7 +13359,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty60", 10) == 0) { { -return dev_storage + 817; +return dev_storage + 811; } } @@ -13374,7 +13374,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty50", 10) == 0) { { -return dev_storage + 807; +return dev_storage + 801; } } @@ -13389,7 +13389,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty40", 10) == 0) { { -return dev_storage + 797; +return dev_storage + 791; } } @@ -13404,7 +13404,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty30", 10) == 0) { { -return dev_storage + 787; +return dev_storage + 781; } } @@ -13419,7 +13419,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty20", 10) == 0) { { -return dev_storage + 777; +return dev_storage + 771; } } @@ -13437,7 +13437,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty10", 10) == 0) { { -return dev_storage + 767; +return dev_storage + 761; } } @@ -13452,7 +13452,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy10", 10) == 0) { { -return dev_storage + 591; +return dev_storage + 585; } } @@ -13479,7 +13479,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx10", 10) == 0) { { -return dev_storage + 576; +return dev_storage + 570; } } @@ -13494,7 +13494,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw10", 10) == 0) { { -return dev_storage + 561; +return dev_storage + 555; } } @@ -13509,7 +13509,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv10", 10) == 0) { { -return dev_storage + 546; +return dev_storage + 540; } } @@ -13524,7 +13524,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu10", 10) == 0) { { -return dev_storage + 531; +return dev_storage + 525; } } @@ -13542,7 +13542,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst90", 10) == 0) { { -return dev_storage + 137; +return dev_storage + 131; } } @@ -13557,7 +13557,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst80", 10) == 0) { { -return dev_storage + 127; +return dev_storage + 121; } } @@ -13572,7 +13572,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst70", 10) == 0) { { -return dev_storage + 117; +return dev_storage + 111; } } @@ -13587,7 +13587,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst60", 10) == 0) { { -return dev_storage + 107; +return dev_storage + 101; } } @@ -13602,7 +13602,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst50", 10) == 0) { { -return dev_storage + 97; +return dev_storage + 91; } } @@ -13617,7 +13617,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst40", 10) == 0) { { -return dev_storage + 87; +return dev_storage + 81; } } @@ -13632,7 +13632,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst30", 10) == 0) { { -return dev_storage + 77; +return dev_storage + 71; } } @@ -13647,7 +13647,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst20", 10) == 0) { { -return dev_storage + 67; +return dev_storage + 61; } } @@ -13665,7 +13665,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt10", 10) == 0) { { -return dev_storage + 516; +return dev_storage + 510; } } @@ -13680,7 +13680,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst10", 10) == 0) { { -return dev_storage + 57; +return dev_storage + 51; } } @@ -13707,7 +13707,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds10", 10) == 0) { { -return dev_storage + 501; +return dev_storage + 495; } } @@ -13722,7 +13722,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr10", 10) == 0) { { -return dev_storage + 486; +return dev_storage + 480; } } @@ -13737,7 +13737,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq10", 10) == 0) { { -return dev_storage + 471; +return dev_storage + 465; } } @@ -13752,7 +13752,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp10", 10) == 0) { { -return dev_storage + 456; +return dev_storage + 450; } } @@ -13767,7 +13767,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo10", 10) == 0) { { -return dev_storage + 441; +return dev_storage + 435; } } @@ -13782,7 +13782,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn10", 10) == 0) { { -return dev_storage + 426; +return dev_storage + 420; } } @@ -13800,7 +13800,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm10", 10) == 0) { { -return dev_storage + 411; +return dev_storage + 405; } } @@ -13836,7 +13836,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl10", 10) == 0) { { -return dev_storage + 396; +return dev_storage + 390; } } @@ -13851,7 +13851,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk10", 10) == 0) { { -return dev_storage + 381; +return dev_storage + 375; } } @@ -13866,7 +13866,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj10", 10) == 0) { { -return dev_storage + 366; +return dev_storage + 360; } } @@ -13881,7 +13881,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi10", 10) == 0) { { -return dev_storage + 351; +return dev_storage + 345; } } @@ -13896,7 +13896,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh10", 10) == 0) { { -return dev_storage + 336; +return dev_storage + 330; } } @@ -13911,7 +13911,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg10", 10) == 0) { { -return dev_storage + 321; +return dev_storage + 315; } } @@ -13926,7 +13926,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf10", 10) == 0) { { -return dev_storage + 306; +return dev_storage + 300; } } @@ -13941,7 +13941,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde10", 10) == 0) { { -return dev_storage + 291; +return dev_storage + 285; } } @@ -13959,7 +13959,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd10", 10) == 0) { { -return dev_storage + 276; +return dev_storage + 270; } } @@ -13974,7 +13974,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd10", 10) == 0) { { -return dev_storage + 190; +return dev_storage + 184; } } @@ -13995,7 +13995,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc10", 10) == 0) { { -return dev_storage + 261; +return dev_storage + 255; } } @@ -14010,7 +14010,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb10", 10) == 0) { { -return dev_storage + 246; +return dev_storage + 240; } } @@ -14025,7 +14025,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda10", 10) == 0) { { -return dev_storage + 231; +return dev_storage + 225; } } @@ -14043,7 +14043,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st120", 10) == 0) { { -return dev_storage + 748; +return dev_storage + 742; } } @@ -14058,7 +14058,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st110", 10) == 0) { { -return dev_storage + 738; +return dev_storage + 732; } } @@ -14073,7 +14073,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st100", 10) == 0) { { -return dev_storage + 728; +return dev_storage + 722; } } @@ -14124,7 +14124,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/random", 11) == 0) { { -return dev_storage + 179; +return dev_storage + 173; } } @@ -14142,7 +14142,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst127", 11) == 0) { { -return dev_storage + 174; +return dev_storage + 168; } } @@ -14157,7 +14157,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst126", 11) == 0) { { -return dev_storage + 173; +return dev_storage + 167; } } @@ -14172,7 +14172,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst125", 11) == 0) { { -return dev_storage + 172; +return dev_storage + 166; } } @@ -14187,7 +14187,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst124", 11) == 0) { { -return dev_storage + 171; +return dev_storage + 165; } } @@ -14202,7 +14202,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst123", 11) == 0) { { -return dev_storage + 170; +return dev_storage + 164; } } @@ -14217,7 +14217,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst122", 11) == 0) { { -return dev_storage + 169; +return dev_storage + 163; } } @@ -14232,7 +14232,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst121", 11) == 0) { { -return dev_storage + 168; +return dev_storage + 162; } } @@ -14247,7 +14247,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst120", 11) == 0) { { -return dev_storage + 167; +return dev_storage + 161; } } @@ -14271,7 +14271,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst119", 11) == 0) { { -return dev_storage + 166; +return dev_storage + 160; } } @@ -14286,7 +14286,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst118", 11) == 0) { { -return dev_storage + 165; +return dev_storage + 159; } } @@ -14301,7 +14301,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst117", 11) == 0) { { -return dev_storage + 164; +return dev_storage + 158; } } @@ -14316,7 +14316,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst116", 11) == 0) { { -return dev_storage + 163; +return dev_storage + 157; } } @@ -14334,7 +14334,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS15", 11) == 0) { { -return dev_storage + 836; +return dev_storage + 830; } } @@ -14349,7 +14349,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst115", 11) == 0) { { -return dev_storage + 162; +return dev_storage + 156; } } @@ -14373,7 +14373,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS14", 11) == 0) { { -return dev_storage + 835; +return dev_storage + 829; } } @@ -14388,7 +14388,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst114", 11) == 0) { { -return dev_storage + 161; +return dev_storage + 155; } } @@ -14412,7 +14412,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS13", 11) == 0) { { -return dev_storage + 834; +return dev_storage + 828; } } @@ -14427,7 +14427,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst113", 11) == 0) { { -return dev_storage + 160; +return dev_storage + 154; } } @@ -14451,7 +14451,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS12", 11) == 0) { { -return dev_storage + 833; +return dev_storage + 827; } } @@ -14466,7 +14466,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst112", 11) == 0) { { -return dev_storage + 159; +return dev_storage + 153; } } @@ -14490,7 +14490,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS11", 11) == 0) { { -return dev_storage + 832; +return dev_storage + 826; } } @@ -14505,7 +14505,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst111", 11) == 0) { { -return dev_storage + 158; +return dev_storage + 152; } } @@ -14529,7 +14529,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS10", 11) == 0) { { -return dev_storage + 831; +return dev_storage + 825; } } @@ -14544,7 +14544,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst110", 11) == 0) { { -return dev_storage + 157; +return dev_storage + 151; } } @@ -14574,7 +14574,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst109", 11) == 0) { { -return dev_storage + 156; +return dev_storage + 150; } } @@ -14589,7 +14589,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst108", 11) == 0) { { -return dev_storage + 155; +return dev_storage + 149; } } @@ -14604,7 +14604,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst107", 11) == 0) { { -return dev_storage + 154; +return dev_storage + 148; } } @@ -14619,7 +14619,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst106", 11) == 0) { { -return dev_storage + 153; +return dev_storage + 147; } } @@ -14634,7 +14634,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst105", 11) == 0) { { -return dev_storage + 152; +return dev_storage + 146; } } @@ -14649,7 +14649,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst104", 11) == 0) { { -return dev_storage + 151; +return dev_storage + 145; } } @@ -14664,7 +14664,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst103", 11) == 0) { { -return dev_storage + 150; +return dev_storage + 144; } } @@ -14679,7 +14679,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst102", 11) == 0) { { -return dev_storage + 149; +return dev_storage + 143; } } @@ -14694,7 +14694,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst101", 11) == 0) { { -return dev_storage + 148; +return dev_storage + 142; } } @@ -14709,7 +14709,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst100", 11) == 0) { { -return dev_storage + 147; +return dev_storage + 141; } } @@ -14739,7 +14739,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/windows", 12) == 0) { { -return dev_storage + 839; +return dev_storage + 833; } } @@ -14754,7 +14754,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/urandom", 12) == 0) { { -return dev_storage + 838; +return dev_storage + 832; } } @@ -14786,64 +14786,7 @@ return NULL; } } - case 13: - switch (KR_keyword [10]) - { - case 'u': - if (strncmp (KR_keyword, "/dev/inet/udp", 13) == 0) - { -{ -return dev_storage + 43; - -} - } - else - { -{ -return NULL; - -} - } - case 't': - if (strncmp (KR_keyword, "/dev/inet/tcp", 13) == 0) - { -{ -return dev_storage + 42; - -} - } - else - { -{ -return NULL; - -} - } - default: -{ -return NULL; - -} - } case 14: - switch (KR_keyword [10]) - { - case 'u': - if (strncmp (KR_keyword, "/dev/inet/unix", 14) == 0) - { -{ -return dev_storage + 44; - -} - } - else - { -{ -return NULL; - -} - } - case 'o': if (strncmp (KR_keyword, "/dev/clipboard", 14) == 0) { { @@ -14858,57 +14801,6 @@ return NULL; } } - case 'i': - if (strncmp (KR_keyword, "/dev/inet/icmp", 14) == 0) - { -{ -return dev_storage + 40; - -} - } - else - { -{ -return NULL; - -} - } - default: -{ -return NULL; - -} - } - case 15: - if (strncmp (KR_keyword, "/dev/inet/dgram", 15) == 0) - { -{ -return dev_storage + 39; - -} - } - else - { -{ -return NULL; - -} - } - case 16: - if (strncmp (KR_keyword, "/dev/inet/stream", 16) == 0) - { -{ -return dev_storage + 41; - -} - } - else - { -{ -return NULL; - -} - } default: { return NULL; |