diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 021531127..5745b0d23 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,117 @@ +2011-10-15 Christopher Faylor + + * cygerrno.h (__set_errno): Modify debugging output to make searching + strace logs easier. + + Throughout, change /dev/tty* to /dev/pty*. + Throughout, add flags argument to fhandler_*::dup methods. + * devices.in: Rename (temporarily?) /dev/ttyN to /dev/ptyN. Add + /dev/ptymN devices for pty masters. + * devices.cc: Regenerate. + * devices.h (MAX_CONSOLES): Set to max number supported by devices.in. + (fh_devices::FH_PTMX): Rename from FH_PTYM. + (device::operator int): Return by reference. + * dtable.cc (fh_alloc): Take pc as an argument rather than just the + device. This makes debugging easier since more information is + available. Actually implement handling for already-allocated pty + master devices. Make different decisions when generating fhandler for + not-opened devices. Add kludge to deal with opening /dev/tty. + (cnew_no_ctor): New macro. + (build_fh_pc): Make debugging output more verbose. Use new clone() + fhandler interface to duplicate archetypes. Reset last term opened. + (dtable::dup_worker): Use Use new clone() fhandler interface to + duplicate archetypes. Pass flags to child dup handler. + (dtable::dup3): Set O_NOCTTY flag if newfd is not stdin/stdout/stderr. + * fhandler.cc (fhandler_base::reset): Rename from operator =() and + reduce functionality and sense of copy direction. + (fhandler_base::open_with_arch): Use published interface to query + io_handle(). Use new copyto() fhandler method to copy from/to found + archetype. + * fhandler.h: Throughout, delete size(), add copyout, clone, and + fhandler_* (void *) methods. + (fhandler_base::reset): Rename from operator =(). + (fhandler_termios::is_dev_tty): Delete. + (fhandler_termios): change "protected" region to "private". + (fhandler_termios::is_dev_tty): Delete. + (fhandler_termios): Rearrange protected/public. + (fhandler_termios::fhandler_termios): Remember last fhandler_termios + "opened". + (fhandler_termios::~fhandler_termios): Forget last fhandler_termios + opened. + (ioctl): Rename from ioctl_termios. Take a void * argument. Reflect + argument change in pinfo::set_ctty. + (fhandler_console::dup): Declare new function. Set ctty here if + appropriate. + (fhandler_pty_master::from_master): Privatize. + (fhandler_pty_master::to_master): Ditto. + (fhandler_pty_master::dwProcessId): Ditto. + (fhandler_pty_master::fhandler_pty_master): Add an `int' argument. + (fhandler_pty_master::open_setup): Declare new function. + (fhandler_pty_master::~fhandler_pty_master): Declare new method. + (fhandler_nodevice): Remove commented out function declaration. + * fhandler_console.cc: Use get_ttyp() instead of tc() throughout. + (fhandler_console::dup): Define new function to set controlling ctty on + dup, as appropriate. + (fhandler_console::ioctl): Reflect ioctl_termios name change. + (fhandler_console::setup): Rename from get_tty_stuff. + (fhandler_console::open_setup): Reflect argument change in + pinfo::set_ctty. + (fhandler_console::fhandler_console): Set _tc here. + * fhandler_termios.cc (handler_termios::ioctl): Rename. Take a void * + arg like other ioctl functions. + * fhandler_tty.cc (fhandler_pty_slave::dup): Call myself->set_ctty to + potentially reset the controlling terminal. + (fhandler_pty_slave::ioctl): Reflect name/arg change for ioctl_termios. + (fhandler_pty_slave::fhandler_pty_slave): Take a "unit" argument. Call + setup() here so that we will know the unit number of this fhandler as + soon as possible. Set the unit as appropriate. + (handler_pty_master::open): Move most stuff to constructor and + open_setup. + (handler_pty_slave::open_setup): Reflect argument change in + pinfo::set_ctty. + (handler_pty_master::open_setup): Define new function. + (fhandler_pty_master::cleanup): Clear handles as a flag that the + destructor does not have to do "close" operations. + (fhandler_pty_master::close): Ditto. + (fhandler_pty_master::~fhandler_pty_master): Define new method. + (fhandler_pty_master::ioctl): Reflect name/arg change for + ioctl_termios. + (fhandler_pty_master::setup): Allocate tty here. Rely on handles being + returned from allocated test rather than opening them here. Avoid + setting _need_nl here since it is already zeroed in the constructor. + Set up device information with DEV_TTYM_MAJOR. + * path.h (path_conv &operator =): Take a const argument. + (path_conv::dup): Ditto. + (pathconv_arg::PC_OPEN): New enum. + (pathconv_arg::PC_CTTY): Ditto. + (path_types::PATH_CTTY): Ditto. + (path_types::PATH_OPEN): Ditto. + (path_conv::isopen): New method. + (path_conv::isctty_capable): Ditto. + * path.cc (path_conv::check): Set PATH_OPEN and PATH_CTTY as + appropriate. + * pipe.cc (fhandler_pipe::open): Use copyto to copy pipe handle. + * syscall.cc (open): Reinstate fd > 2 check to disallow resetting ctty + on non-std* handles. + * tty.cc (tty_list::allocate): Pass out handles for allocated tty. use + `not_allocated' to find unallocated ttys. Avoid keeping the lock since + the allocation of the tty should be sufficient to prevent multiple + access. + (tty::not_allocated): Clarify comment. Rename. Return handles when an + unused tty is found. Simply test for existing tty. + (tty::exists): Rewrite to use `not_allocated'. + * tty.h (NTTYS): Reset down to actual number supported by devices.in. + (tty::not_allocated): Declare new function. + (tty_list::allocate): Pass out read/write tty handles. Zero them when + not found. + * fhandler_proc.cc: Reflect name change from FH_PTYM -> FH_PTMX. + * pinfo.h (pinfo::set_ctty): Reduce/reorder arguments passed in. + * pinfo.cc (pinfo::set_ctty): Ditto. Just use tc() built into the + passed-in fhandler_termios pointer. Return true if ctty is assigned. + * syscalls.cc (open): Call build_fh_pc with PC_OPEN flag. Set PC_CTTY + if appropriate. + (stat_worker): Remove is_dev_tty () stuff. + 2011-10-15 Corinna Vinschen * fhandler_process.cc (dos_drive_mappings::fixup_if_match): Convert @@ -63,6 +177,11 @@ (fhandler_base::tcgetsid): New function. * fhandler.h ((fhandler_base::tcgetsid): Declare new function. (fhandler_base::is_dev_tty): Ditto. + (fhandler_termios): Rearrange protected/public. + (fhandler_termios::fhandler_termios): Remember last fhandler_termios + "opened". + (fhandler_termios::~fhandler_termios): Forget last fhandler_termios + opened. (fhandler_termios::opened_as_dev_tty): Declare new field. (fhandler_termios::is_dev_tty): Declare new function. (fhandler_termios::tcgetsid): Ditto. diff --git a/winsup/cygwin/cygerrno.h b/winsup/cygwin/cygerrno.h index e63a17cc5..6f833f1a8 100644 --- a/winsup/cygwin/cygerrno.h +++ b/winsup/cygwin/cygerrno.h @@ -25,7 +25,7 @@ int __stdcall geterrno_from_nt_status (NTSTATUS status, int deferrno = 13 /*EACC inline int __set_errno (const char *fn, int ln, int val) { - debug_printf ("%s:%d val %d", fn, ln, val); + debug_printf ("%s:%d setting errno %d", fn, ln, val); return errno = _impure_ptr->_errno = val; } #define set_errno(val) __set_errno (__PRETTY_FUNCTION__, __LINE__, (val)) diff --git a/winsup/cygwin/devices.cc b/winsup/cygwin/devices.cc index 6f00ba27d..35f332271 100644 --- a/winsup/cygwin/devices.cc +++ b/winsup/cygwin/devices.cc @@ -306,7 +306,135 @@ static const device dev_storage[] = {"/dev/null", BRACK(FH_NULL), "\\Device\\Null"}, {"/dev/pipe", BRACK(FH_PIPE), "/dev/pipe"}, {"/dev/port", BRACK(FH_PORT), "/dev/port"}, - {"/dev/ptmx", BRACK(FH_PTYM), "/dev/ptmx"}, + {"/dev/ptmx", BRACK(FH_PTMX), "/dev/ptmx"}, + {"/dev/pty0", BRACK(FHDEV(DEV_TTYS_MAJOR, 0)), "/dev/pty0"}, + {"/dev/pty1", BRACK(FHDEV(DEV_TTYS_MAJOR, 1)), "/dev/pty1"}, + {"/dev/pty2", BRACK(FHDEV(DEV_TTYS_MAJOR, 2)), "/dev/pty2"}, + {"/dev/pty3", BRACK(FHDEV(DEV_TTYS_MAJOR, 3)), "/dev/pty3"}, + {"/dev/pty4", BRACK(FHDEV(DEV_TTYS_MAJOR, 4)), "/dev/pty4"}, + {"/dev/pty5", BRACK(FHDEV(DEV_TTYS_MAJOR, 5)), "/dev/pty5"}, + {"/dev/pty6", BRACK(FHDEV(DEV_TTYS_MAJOR, 6)), "/dev/pty6"}, + {"/dev/pty7", BRACK(FHDEV(DEV_TTYS_MAJOR, 7)), "/dev/pty7"}, + {"/dev/pty8", BRACK(FHDEV(DEV_TTYS_MAJOR, 8)), "/dev/pty8"}, + {"/dev/pty9", BRACK(FHDEV(DEV_TTYS_MAJOR, 9)), "/dev/pty9"}, + {"/dev/pty10", BRACK(FHDEV(DEV_TTYS_MAJOR, 10)), "/dev/pty10"}, + {"/dev/pty11", BRACK(FHDEV(DEV_TTYS_MAJOR, 11)), "/dev/pty11"}, + {"/dev/pty12", BRACK(FHDEV(DEV_TTYS_MAJOR, 12)), "/dev/pty12"}, + {"/dev/pty13", BRACK(FHDEV(DEV_TTYS_MAJOR, 13)), "/dev/pty13"}, + {"/dev/pty14", BRACK(FHDEV(DEV_TTYS_MAJOR, 14)), "/dev/pty14"}, + {"/dev/pty15", BRACK(FHDEV(DEV_TTYS_MAJOR, 15)), "/dev/pty15"}, + {"/dev/pty16", BRACK(FHDEV(DEV_TTYS_MAJOR, 16)), "/dev/pty16"}, + {"/dev/pty17", BRACK(FHDEV(DEV_TTYS_MAJOR, 17)), "/dev/pty17"}, + {"/dev/pty18", BRACK(FHDEV(DEV_TTYS_MAJOR, 18)), "/dev/pty18"}, + {"/dev/pty19", BRACK(FHDEV(DEV_TTYS_MAJOR, 19)), "/dev/pty19"}, + {"/dev/pty20", BRACK(FHDEV(DEV_TTYS_MAJOR, 20)), "/dev/pty20"}, + {"/dev/pty21", BRACK(FHDEV(DEV_TTYS_MAJOR, 21)), "/dev/pty21"}, + {"/dev/pty22", BRACK(FHDEV(DEV_TTYS_MAJOR, 22)), "/dev/pty22"}, + {"/dev/pty23", BRACK(FHDEV(DEV_TTYS_MAJOR, 23)), "/dev/pty23"}, + {"/dev/pty24", BRACK(FHDEV(DEV_TTYS_MAJOR, 24)), "/dev/pty24"}, + {"/dev/pty25", BRACK(FHDEV(DEV_TTYS_MAJOR, 25)), "/dev/pty25"}, + {"/dev/pty26", BRACK(FHDEV(DEV_TTYS_MAJOR, 26)), "/dev/pty26"}, + {"/dev/pty27", BRACK(FHDEV(DEV_TTYS_MAJOR, 27)), "/dev/pty27"}, + {"/dev/pty28", BRACK(FHDEV(DEV_TTYS_MAJOR, 28)), "/dev/pty28"}, + {"/dev/pty29", BRACK(FHDEV(DEV_TTYS_MAJOR, 29)), "/dev/pty29"}, + {"/dev/pty30", BRACK(FHDEV(DEV_TTYS_MAJOR, 30)), "/dev/pty30"}, + {"/dev/pty31", BRACK(FHDEV(DEV_TTYS_MAJOR, 31)), "/dev/pty31"}, + {"/dev/pty32", BRACK(FHDEV(DEV_TTYS_MAJOR, 32)), "/dev/pty32"}, + {"/dev/pty33", BRACK(FHDEV(DEV_TTYS_MAJOR, 33)), "/dev/pty33"}, + {"/dev/pty34", BRACK(FHDEV(DEV_TTYS_MAJOR, 34)), "/dev/pty34"}, + {"/dev/pty35", BRACK(FHDEV(DEV_TTYS_MAJOR, 35)), "/dev/pty35"}, + {"/dev/pty36", BRACK(FHDEV(DEV_TTYS_MAJOR, 36)), "/dev/pty36"}, + {"/dev/pty37", BRACK(FHDEV(DEV_TTYS_MAJOR, 37)), "/dev/pty37"}, + {"/dev/pty38", BRACK(FHDEV(DEV_TTYS_MAJOR, 38)), "/dev/pty38"}, + {"/dev/pty39", BRACK(FHDEV(DEV_TTYS_MAJOR, 39)), "/dev/pty39"}, + {"/dev/pty40", BRACK(FHDEV(DEV_TTYS_MAJOR, 40)), "/dev/pty40"}, + {"/dev/pty41", BRACK(FHDEV(DEV_TTYS_MAJOR, 41)), "/dev/pty41"}, + {"/dev/pty42", BRACK(FHDEV(DEV_TTYS_MAJOR, 42)), "/dev/pty42"}, + {"/dev/pty43", BRACK(FHDEV(DEV_TTYS_MAJOR, 43)), "/dev/pty43"}, + {"/dev/pty44", BRACK(FHDEV(DEV_TTYS_MAJOR, 44)), "/dev/pty44"}, + {"/dev/pty45", BRACK(FHDEV(DEV_TTYS_MAJOR, 45)), "/dev/pty45"}, + {"/dev/pty46", BRACK(FHDEV(DEV_TTYS_MAJOR, 46)), "/dev/pty46"}, + {"/dev/pty47", BRACK(FHDEV(DEV_TTYS_MAJOR, 47)), "/dev/pty47"}, + {"/dev/pty48", BRACK(FHDEV(DEV_TTYS_MAJOR, 48)), "/dev/pty48"}, + {"/dev/pty49", BRACK(FHDEV(DEV_TTYS_MAJOR, 49)), "/dev/pty49"}, + {"/dev/pty50", BRACK(FHDEV(DEV_TTYS_MAJOR, 50)), "/dev/pty50"}, + {"/dev/pty51", BRACK(FHDEV(DEV_TTYS_MAJOR, 51)), "/dev/pty51"}, + {"/dev/pty52", BRACK(FHDEV(DEV_TTYS_MAJOR, 52)), "/dev/pty52"}, + {"/dev/pty53", BRACK(FHDEV(DEV_TTYS_MAJOR, 53)), "/dev/pty53"}, + {"/dev/pty54", BRACK(FHDEV(DEV_TTYS_MAJOR, 54)), "/dev/pty54"}, + {"/dev/pty55", BRACK(FHDEV(DEV_TTYS_MAJOR, 55)), "/dev/pty55"}, + {"/dev/pty56", BRACK(FHDEV(DEV_TTYS_MAJOR, 56)), "/dev/pty56"}, + {"/dev/pty57", BRACK(FHDEV(DEV_TTYS_MAJOR, 57)), "/dev/pty57"}, + {"/dev/pty58", BRACK(FHDEV(DEV_TTYS_MAJOR, 58)), "/dev/pty58"}, + {"/dev/pty59", BRACK(FHDEV(DEV_TTYS_MAJOR, 59)), "/dev/pty59"}, + {"/dev/pty60", BRACK(FHDEV(DEV_TTYS_MAJOR, 60)), "/dev/pty60"}, + {"/dev/pty61", BRACK(FHDEV(DEV_TTYS_MAJOR, 61)), "/dev/pty61"}, + {"/dev/pty62", BRACK(FHDEV(DEV_TTYS_MAJOR, 62)), "/dev/pty62"}, + {"/dev/pty63", BRACK(FHDEV(DEV_TTYS_MAJOR, 63)), "/dev/pty63"}, + {"/dev/ptym0", BRACK(FHDEV(DEV_TTYM_MAJOR, 0)), "/dev/ptym0"}, + {"/dev/ptym1", BRACK(FHDEV(DEV_TTYM_MAJOR, 1)), "/dev/ptym1"}, + {"/dev/ptym2", BRACK(FHDEV(DEV_TTYM_MAJOR, 2)), "/dev/ptym2"}, + {"/dev/ptym3", BRACK(FHDEV(DEV_TTYM_MAJOR, 3)), "/dev/ptym3"}, + {"/dev/ptym4", BRACK(FHDEV(DEV_TTYM_MAJOR, 4)), "/dev/ptym4"}, + {"/dev/ptym5", BRACK(FHDEV(DEV_TTYM_MAJOR, 5)), "/dev/ptym5"}, + {"/dev/ptym6", BRACK(FHDEV(DEV_TTYM_MAJOR, 6)), "/dev/ptym6"}, + {"/dev/ptym7", BRACK(FHDEV(DEV_TTYM_MAJOR, 7)), "/dev/ptym7"}, + {"/dev/ptym8", BRACK(FHDEV(DEV_TTYM_MAJOR, 8)), "/dev/ptym8"}, + {"/dev/ptym9", BRACK(FHDEV(DEV_TTYM_MAJOR, 9)), "/dev/ptym9"}, + {"/dev/ptym10", BRACK(FHDEV(DEV_TTYM_MAJOR, 10)), "/dev/ptym10"}, + {"/dev/ptym11", BRACK(FHDEV(DEV_TTYM_MAJOR, 11)), "/dev/ptym11"}, + {"/dev/ptym12", BRACK(FHDEV(DEV_TTYM_MAJOR, 12)), "/dev/ptym12"}, + {"/dev/ptym13", BRACK(FHDEV(DEV_TTYM_MAJOR, 13)), "/dev/ptym13"}, + {"/dev/ptym14", BRACK(FHDEV(DEV_TTYM_MAJOR, 14)), "/dev/ptym14"}, + {"/dev/ptym15", BRACK(FHDEV(DEV_TTYM_MAJOR, 15)), "/dev/ptym15"}, + {"/dev/ptym16", BRACK(FHDEV(DEV_TTYM_MAJOR, 16)), "/dev/ptym16"}, + {"/dev/ptym17", BRACK(FHDEV(DEV_TTYM_MAJOR, 17)), "/dev/ptym17"}, + {"/dev/ptym18", BRACK(FHDEV(DEV_TTYM_MAJOR, 18)), "/dev/ptym18"}, + {"/dev/ptym19", BRACK(FHDEV(DEV_TTYM_MAJOR, 19)), "/dev/ptym19"}, + {"/dev/ptym20", BRACK(FHDEV(DEV_TTYM_MAJOR, 20)), "/dev/ptym20"}, + {"/dev/ptym21", BRACK(FHDEV(DEV_TTYM_MAJOR, 21)), "/dev/ptym21"}, + {"/dev/ptym22", BRACK(FHDEV(DEV_TTYM_MAJOR, 22)), "/dev/ptym22"}, + {"/dev/ptym23", BRACK(FHDEV(DEV_TTYM_MAJOR, 23)), "/dev/ptym23"}, + {"/dev/ptym24", BRACK(FHDEV(DEV_TTYM_MAJOR, 24)), "/dev/ptym24"}, + {"/dev/ptym25", BRACK(FHDEV(DEV_TTYM_MAJOR, 25)), "/dev/ptym25"}, + {"/dev/ptym26", BRACK(FHDEV(DEV_TTYM_MAJOR, 26)), "/dev/ptym26"}, + {"/dev/ptym27", BRACK(FHDEV(DEV_TTYM_MAJOR, 27)), "/dev/ptym27"}, + {"/dev/ptym28", BRACK(FHDEV(DEV_TTYM_MAJOR, 28)), "/dev/ptym28"}, + {"/dev/ptym29", BRACK(FHDEV(DEV_TTYM_MAJOR, 29)), "/dev/ptym29"}, + {"/dev/ptym30", BRACK(FHDEV(DEV_TTYM_MAJOR, 30)), "/dev/ptym30"}, + {"/dev/ptym31", BRACK(FHDEV(DEV_TTYM_MAJOR, 31)), "/dev/ptym31"}, + {"/dev/ptym32", BRACK(FHDEV(DEV_TTYM_MAJOR, 32)), "/dev/ptym32"}, + {"/dev/ptym33", BRACK(FHDEV(DEV_TTYM_MAJOR, 33)), "/dev/ptym33"}, + {"/dev/ptym34", BRACK(FHDEV(DEV_TTYM_MAJOR, 34)), "/dev/ptym34"}, + {"/dev/ptym35", BRACK(FHDEV(DEV_TTYM_MAJOR, 35)), "/dev/ptym35"}, + {"/dev/ptym36", BRACK(FHDEV(DEV_TTYM_MAJOR, 36)), "/dev/ptym36"}, + {"/dev/ptym37", BRACK(FHDEV(DEV_TTYM_MAJOR, 37)), "/dev/ptym37"}, + {"/dev/ptym38", BRACK(FHDEV(DEV_TTYM_MAJOR, 38)), "/dev/ptym38"}, + {"/dev/ptym39", BRACK(FHDEV(DEV_TTYM_MAJOR, 39)), "/dev/ptym39"}, + {"/dev/ptym40", BRACK(FHDEV(DEV_TTYM_MAJOR, 40)), "/dev/ptym40"}, + {"/dev/ptym41", BRACK(FHDEV(DEV_TTYM_MAJOR, 41)), "/dev/ptym41"}, + {"/dev/ptym42", BRACK(FHDEV(DEV_TTYM_MAJOR, 42)), "/dev/ptym42"}, + {"/dev/ptym43", BRACK(FHDEV(DEV_TTYM_MAJOR, 43)), "/dev/ptym43"}, + {"/dev/ptym44", BRACK(FHDEV(DEV_TTYM_MAJOR, 44)), "/dev/ptym44"}, + {"/dev/ptym45", BRACK(FHDEV(DEV_TTYM_MAJOR, 45)), "/dev/ptym45"}, + {"/dev/ptym46", BRACK(FHDEV(DEV_TTYM_MAJOR, 46)), "/dev/ptym46"}, + {"/dev/ptym47", BRACK(FHDEV(DEV_TTYM_MAJOR, 47)), "/dev/ptym47"}, + {"/dev/ptym48", BRACK(FHDEV(DEV_TTYM_MAJOR, 48)), "/dev/ptym48"}, + {"/dev/ptym49", BRACK(FHDEV(DEV_TTYM_MAJOR, 49)), "/dev/ptym49"}, + {"/dev/ptym50", BRACK(FHDEV(DEV_TTYM_MAJOR, 50)), "/dev/ptym50"}, + {"/dev/ptym51", BRACK(FHDEV(DEV_TTYM_MAJOR, 51)), "/dev/ptym51"}, + {"/dev/ptym52", BRACK(FHDEV(DEV_TTYM_MAJOR, 52)), "/dev/ptym52"}, + {"/dev/ptym53", BRACK(FHDEV(DEV_TTYM_MAJOR, 53)), "/dev/ptym53"}, + {"/dev/ptym54", BRACK(FHDEV(DEV_TTYM_MAJOR, 54)), "/dev/ptym54"}, + {"/dev/ptym55", BRACK(FHDEV(DEV_TTYM_MAJOR, 55)), "/dev/ptym55"}, + {"/dev/ptym56", BRACK(FHDEV(DEV_TTYM_MAJOR, 56)), "/dev/ptym56"}, + {"/dev/ptym57", BRACK(FHDEV(DEV_TTYM_MAJOR, 57)), "/dev/ptym57"}, + {"/dev/ptym58", BRACK(FHDEV(DEV_TTYM_MAJOR, 58)), "/dev/ptym58"}, + {"/dev/ptym59", BRACK(FHDEV(DEV_TTYM_MAJOR, 59)), "/dev/ptym59"}, + {"/dev/ptym60", BRACK(FHDEV(DEV_TTYM_MAJOR, 60)), "/dev/ptym60"}, + {"/dev/ptym61", BRACK(FHDEV(DEV_TTYM_MAJOR, 61)), "/dev/ptym61"}, + {"/dev/ptym62", BRACK(FHDEV(DEV_TTYM_MAJOR, 62)), "/dev/ptym62"}, + {"/dev/ptym63", BRACK(FHDEV(DEV_TTYM_MAJOR, 63)), "/dev/ptym63"}, {"/dev/random", BRACK(FH_RANDOM), "/dev/random"}, {"/dev/scd0", BRACK(FHDEV(DEV_CDROM_MAJOR, 0)), "\\Device\\CdRom0"}, {"/dev/scd1", BRACK(FHDEV(DEV_CDROM_MAJOR, 1)), "\\Device\\CdRom1"}, @@ -2517,70 +2645,6 @@ static const device dev_storage[] = {"/dev/st126", BRACK(FHDEV(DEV_TAPE_MAJOR, 126)), "\\Device\\Tape126"}, {"/dev/st127", BRACK(FHDEV(DEV_TAPE_MAJOR, 127)), "\\Device\\Tape127"}, {"/dev/tty", BRACK(FH_TTY), "/dev/tty"}, - {"/dev/tty0", BRACK(FHDEV(DEV_TTYS_MAJOR, 0)), "/dev/tty0"}, - {"/dev/tty1", BRACK(FHDEV(DEV_TTYS_MAJOR, 1)), "/dev/tty1"}, - {"/dev/tty2", BRACK(FHDEV(DEV_TTYS_MAJOR, 2)), "/dev/tty2"}, - {"/dev/tty3", BRACK(FHDEV(DEV_TTYS_MAJOR, 3)), "/dev/tty3"}, - {"/dev/tty4", BRACK(FHDEV(DEV_TTYS_MAJOR, 4)), "/dev/tty4"}, - {"/dev/tty5", BRACK(FHDEV(DEV_TTYS_MAJOR, 5)), "/dev/tty5"}, - {"/dev/tty6", BRACK(FHDEV(DEV_TTYS_MAJOR, 6)), "/dev/tty6"}, - {"/dev/tty7", BRACK(FHDEV(DEV_TTYS_MAJOR, 7)), "/dev/tty7"}, - {"/dev/tty8", BRACK(FHDEV(DEV_TTYS_MAJOR, 8)), "/dev/tty8"}, - {"/dev/tty9", BRACK(FHDEV(DEV_TTYS_MAJOR, 9)), "/dev/tty9"}, - {"/dev/tty10", BRACK(FHDEV(DEV_TTYS_MAJOR, 10)), "/dev/tty10"}, - {"/dev/tty11", BRACK(FHDEV(DEV_TTYS_MAJOR, 11)), "/dev/tty11"}, - {"/dev/tty12", BRACK(FHDEV(DEV_TTYS_MAJOR, 12)), "/dev/tty12"}, - {"/dev/tty13", BRACK(FHDEV(DEV_TTYS_MAJOR, 13)), "/dev/tty13"}, - {"/dev/tty14", BRACK(FHDEV(DEV_TTYS_MAJOR, 14)), "/dev/tty14"}, - {"/dev/tty15", BRACK(FHDEV(DEV_TTYS_MAJOR, 15)), "/dev/tty15"}, - {"/dev/tty16", BRACK(FHDEV(DEV_TTYS_MAJOR, 16)), "/dev/tty16"}, - {"/dev/tty17", BRACK(FHDEV(DEV_TTYS_MAJOR, 17)), "/dev/tty17"}, - {"/dev/tty18", BRACK(FHDEV(DEV_TTYS_MAJOR, 18)), "/dev/tty18"}, - {"/dev/tty19", BRACK(FHDEV(DEV_TTYS_MAJOR, 19)), "/dev/tty19"}, - {"/dev/tty20", BRACK(FHDEV(DEV_TTYS_MAJOR, 20)), "/dev/tty20"}, - {"/dev/tty21", BRACK(FHDEV(DEV_TTYS_MAJOR, 21)), "/dev/tty21"}, - {"/dev/tty22", BRACK(FHDEV(DEV_TTYS_MAJOR, 22)), "/dev/tty22"}, - {"/dev/tty23", BRACK(FHDEV(DEV_TTYS_MAJOR, 23)), "/dev/tty23"}, - {"/dev/tty24", BRACK(FHDEV(DEV_TTYS_MAJOR, 24)), "/dev/tty24"}, - {"/dev/tty25", BRACK(FHDEV(DEV_TTYS_MAJOR, 25)), "/dev/tty25"}, - {"/dev/tty26", BRACK(FHDEV(DEV_TTYS_MAJOR, 26)), "/dev/tty26"}, - {"/dev/tty27", BRACK(FHDEV(DEV_TTYS_MAJOR, 27)), "/dev/tty27"}, - {"/dev/tty28", BRACK(FHDEV(DEV_TTYS_MAJOR, 28)), "/dev/tty28"}, - {"/dev/tty29", BRACK(FHDEV(DEV_TTYS_MAJOR, 29)), "/dev/tty29"}, - {"/dev/tty30", BRACK(FHDEV(DEV_TTYS_MAJOR, 30)), "/dev/tty30"}, - {"/dev/tty31", BRACK(FHDEV(DEV_TTYS_MAJOR, 31)), "/dev/tty31"}, - {"/dev/tty32", BRACK(FHDEV(DEV_TTYS_MAJOR, 32)), "/dev/tty32"}, - {"/dev/tty33", BRACK(FHDEV(DEV_TTYS_MAJOR, 33)), "/dev/tty33"}, - {"/dev/tty34", BRACK(FHDEV(DEV_TTYS_MAJOR, 34)), "/dev/tty34"}, - {"/dev/tty35", BRACK(FHDEV(DEV_TTYS_MAJOR, 35)), "/dev/tty35"}, - {"/dev/tty36", BRACK(FHDEV(DEV_TTYS_MAJOR, 36)), "/dev/tty36"}, - {"/dev/tty37", BRACK(FHDEV(DEV_TTYS_MAJOR, 37)), "/dev/tty37"}, - {"/dev/tty38", BRACK(FHDEV(DEV_TTYS_MAJOR, 38)), "/dev/tty38"}, - {"/dev/tty39", BRACK(FHDEV(DEV_TTYS_MAJOR, 39)), "/dev/tty39"}, - {"/dev/tty40", BRACK(FHDEV(DEV_TTYS_MAJOR, 40)), "/dev/tty40"}, - {"/dev/tty41", BRACK(FHDEV(DEV_TTYS_MAJOR, 41)), "/dev/tty41"}, - {"/dev/tty42", BRACK(FHDEV(DEV_TTYS_MAJOR, 42)), "/dev/tty42"}, - {"/dev/tty43", BRACK(FHDEV(DEV_TTYS_MAJOR, 43)), "/dev/tty43"}, - {"/dev/tty44", BRACK(FHDEV(DEV_TTYS_MAJOR, 44)), "/dev/tty44"}, - {"/dev/tty45", BRACK(FHDEV(DEV_TTYS_MAJOR, 45)), "/dev/tty45"}, - {"/dev/tty46", BRACK(FHDEV(DEV_TTYS_MAJOR, 46)), "/dev/tty46"}, - {"/dev/tty47", BRACK(FHDEV(DEV_TTYS_MAJOR, 47)), "/dev/tty47"}, - {"/dev/tty48", BRACK(FHDEV(DEV_TTYS_MAJOR, 48)), "/dev/tty48"}, - {"/dev/tty49", BRACK(FHDEV(DEV_TTYS_MAJOR, 49)), "/dev/tty49"}, - {"/dev/tty50", BRACK(FHDEV(DEV_TTYS_MAJOR, 50)), "/dev/tty50"}, - {"/dev/tty51", BRACK(FHDEV(DEV_TTYS_MAJOR, 51)), "/dev/tty51"}, - {"/dev/tty52", BRACK(FHDEV(DEV_TTYS_MAJOR, 52)), "/dev/tty52"}, - {"/dev/tty53", BRACK(FHDEV(DEV_TTYS_MAJOR, 53)), "/dev/tty53"}, - {"/dev/tty54", BRACK(FHDEV(DEV_TTYS_MAJOR, 54)), "/dev/tty54"}, - {"/dev/tty55", BRACK(FHDEV(DEV_TTYS_MAJOR, 55)), "/dev/tty55"}, - {"/dev/tty56", BRACK(FHDEV(DEV_TTYS_MAJOR, 56)), "/dev/tty56"}, - {"/dev/tty57", BRACK(FHDEV(DEV_TTYS_MAJOR, 57)), "/dev/tty57"}, - {"/dev/tty58", BRACK(FHDEV(DEV_TTYS_MAJOR, 58)), "/dev/tty58"}, - {"/dev/tty59", BRACK(FHDEV(DEV_TTYS_MAJOR, 59)), "/dev/tty59"}, - {"/dev/tty60", BRACK(FHDEV(DEV_TTYS_MAJOR, 60)), "/dev/tty60"}, - {"/dev/tty61", BRACK(FHDEV(DEV_TTYS_MAJOR, 61)), "/dev/tty61"}, - {"/dev/tty62", BRACK(FHDEV(DEV_TTYS_MAJOR, 62)), "/dev/tty62"}, - {"/dev/tty63", BRACK(FHDEV(DEV_TTYS_MAJOR, 63)), "/dev/tty63"}, {"/dev/ttyS0", BRACK(FHDEV(DEV_SERIAL_MAJOR, 0)), "\\??\\COM1"}, {"/dev/ttyS1", BRACK(FHDEV(DEV_SERIAL_MAJOR, 1)), "\\??\\COM2"}, {"/dev/ttyS2", BRACK(FHDEV(DEV_SERIAL_MAJOR, 2)), "\\??\\COM3"}, @@ -2652,8 +2716,9 @@ static const device dev_storage[] = const device *cons_dev = dev_storage + 20; const device *console_dev = dev_storage + 84; -const device *ttys_dev = dev_storage + 2449; -const device *urandom_dev = dev_storage + 2577; +const device *ttym_dev = dev_storage + 303; +const device *ttys_dev = dev_storage + 239; +const device *urandom_dev = dev_storage + 2641; static KR_device_t KR_find_keyword (const char *KR_keyword, int KR_length) @@ -2683,7 +2748,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz", 8) == 0) { { -return dev_storage + 281; +return dev_storage + 409; } } @@ -2701,7 +2766,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty", 8) == 0) { { -return dev_storage + 2448; +return dev_storage + 2576; } } @@ -2716,7 +2781,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy", 8) == 0) { { -return dev_storage + 280; +return dev_storage + 408; } } @@ -2737,7 +2802,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx", 8) == 0) { { -return dev_storage + 279; +return dev_storage + 407; } } @@ -2752,7 +2817,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw", 8) == 0) { { -return dev_storage + 278; +return dev_storage + 406; } } @@ -2767,7 +2832,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv", 8) == 0) { { -return dev_storage + 277; +return dev_storage + 405; } } @@ -2782,7 +2847,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu", 8) == 0) { { -return dev_storage + 276; +return dev_storage + 404; } } @@ -2797,7 +2862,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt", 8) == 0) { { -return dev_storage + 275; +return dev_storage + 403; } } @@ -2812,7 +2877,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds", 8) == 0) { { -return dev_storage + 274; +return dev_storage + 402; } } @@ -2827,7 +2892,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr", 8) == 0) { { -return dev_storage + 273; +return dev_storage + 401; } } @@ -2842,7 +2907,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq", 8) == 0) { { -return dev_storage + 272; +return dev_storage + 400; } } @@ -2860,7 +2925,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp", 8) == 0) { { -return dev_storage + 271; +return dev_storage + 399; } } @@ -2896,7 +2961,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo", 8) == 0) { { -return dev_storage + 270; +return dev_storage + 398; } } @@ -2911,7 +2976,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn", 8) == 0) { { -return dev_storage + 269; +return dev_storage + 397; } } @@ -2929,7 +2994,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm", 8) == 0) { { -return dev_storage + 268; +return dev_storage + 396; } } @@ -2965,7 +3030,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl", 8) == 0) { { -return dev_storage + 267; +return dev_storage + 395; } } @@ -2980,7 +3045,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk", 8) == 0) { { -return dev_storage + 266; +return dev_storage + 394; } } @@ -2995,7 +3060,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj", 8) == 0) { { -return dev_storage + 265; +return dev_storage + 393; } } @@ -3010,7 +3075,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi", 8) == 0) { { -return dev_storage + 264; +return dev_storage + 392; } } @@ -3025,7 +3090,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh", 8) == 0) { { -return dev_storage + 263; +return dev_storage + 391; } } @@ -3040,7 +3105,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg", 8) == 0) { { -return dev_storage + 262; +return dev_storage + 390; } } @@ -3055,7 +3120,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf", 8) == 0) { { -return dev_storage + 261; +return dev_storage + 389; } } @@ -3070,7 +3135,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde", 8) == 0) { { -return dev_storage + 260; +return dev_storage + 388; } } @@ -3085,7 +3150,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd", 8) == 0) { { -return dev_storage + 259; +return dev_storage + 387; } } @@ -3100,7 +3165,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc", 8) == 0) { { -return dev_storage + 258; +return dev_storage + 386; } } @@ -3115,7 +3180,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb", 8) == 0) { { -return dev_storage + 257; +return dev_storage + 385; } } @@ -3130,7 +3195,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda", 8) == 0) { { -return dev_storage + 256; +return dev_storage + 384; } } @@ -3148,7 +3213,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st9", 8) == 0) { { -return dev_storage + 2329; +return dev_storage + 2457; } } @@ -3163,7 +3228,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr9", 8) == 0) { { -return dev_storage + 2313; +return dev_storage + 2441; } } @@ -3202,7 +3267,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st8", 8) == 0) { { -return dev_storage + 2328; +return dev_storage + 2456; } } @@ -3217,7 +3282,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr8", 8) == 0) { { -return dev_storage + 2312; +return dev_storage + 2440; } } @@ -3256,7 +3321,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st7", 8) == 0) { { -return dev_storage + 2327; +return dev_storage + 2455; } } @@ -3271,7 +3336,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr7", 8) == 0) { { -return dev_storage + 2311; +return dev_storage + 2439; } } @@ -3310,7 +3375,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st6", 8) == 0) { { -return dev_storage + 2326; +return dev_storage + 2454; } } @@ -3325,7 +3390,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr6", 8) == 0) { { -return dev_storage + 2310; +return dev_storage + 2438; } } @@ -3364,7 +3429,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st5", 8) == 0) { { -return dev_storage + 2325; +return dev_storage + 2453; } } @@ -3379,7 +3444,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr5", 8) == 0) { { -return dev_storage + 2309; +return dev_storage + 2437; } } @@ -3418,7 +3483,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st4", 8) == 0) { { -return dev_storage + 2324; +return dev_storage + 2452; } } @@ -3433,7 +3498,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr4", 8) == 0) { { -return dev_storage + 2308; +return dev_storage + 2436; } } @@ -3472,7 +3537,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st3", 8) == 0) { { -return dev_storage + 2323; +return dev_storage + 2451; } } @@ -3487,7 +3552,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr3", 8) == 0) { { -return dev_storage + 2307; +return dev_storage + 2435; } } @@ -3526,7 +3591,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st2", 8) == 0) { { -return dev_storage + 2322; +return dev_storage + 2450; } } @@ -3541,7 +3606,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr2", 8) == 0) { { -return dev_storage + 2306; +return dev_storage + 2434; } } @@ -3580,7 +3645,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st1", 8) == 0) { { -return dev_storage + 2321; +return dev_storage + 2449; } } @@ -3595,7 +3660,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr1", 8) == 0) { { -return dev_storage + 2305; +return dev_storage + 2433; } } @@ -3634,7 +3699,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st0", 8) == 0) { { -return dev_storage + 2320; +return dev_storage + 2448; } } @@ -3649,7 +3714,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr0", 8) == 0) { { -return dev_storage + 2304; +return dev_storage + 2432; } } @@ -3697,7 +3762,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz9", 9) == 0) { { -return dev_storage + 665; +return dev_storage + 793; } } @@ -3712,7 +3777,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz8", 9) == 0) { { -return dev_storage + 664; +return dev_storage + 792; } } @@ -3727,7 +3792,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz7", 9) == 0) { { -return dev_storage + 663; +return dev_storage + 791; } } @@ -3742,7 +3807,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz6", 9) == 0) { { -return dev_storage + 662; +return dev_storage + 790; } } @@ -3757,7 +3822,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz5", 9) == 0) { { -return dev_storage + 661; +return dev_storage + 789; } } @@ -3772,7 +3837,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz4", 9) == 0) { { -return dev_storage + 660; +return dev_storage + 788; } } @@ -3787,7 +3852,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz3", 9) == 0) { { -return dev_storage + 659; +return dev_storage + 787; } } @@ -3802,7 +3867,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz2", 9) == 0) { { -return dev_storage + 658; +return dev_storage + 786; } } @@ -3817,7 +3882,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz1", 9) == 0) { { -return dev_storage + 657; +return dev_storage + 785; } } @@ -3840,11 +3905,11 @@ return NULL; case '9': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty9", 9) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/sdy9", 9) == 0) { { -return dev_storage + 2458; +return dev_storage + 778; } } @@ -3855,11 +3920,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/sdy9", 9) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty9", 9) == 0) { { -return dev_storage + 650; +return dev_storage + 248; } } @@ -3879,11 +3944,11 @@ return NULL; case '8': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty8", 9) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/sdy8", 9) == 0) { { -return dev_storage + 2457; +return dev_storage + 777; } } @@ -3894,11 +3959,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/sdy8", 9) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty8", 9) == 0) { { -return dev_storage + 649; +return dev_storage + 247; } } @@ -3918,11 +3983,11 @@ return NULL; case '7': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty7", 9) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/sdy7", 9) == 0) { { -return dev_storage + 2456; +return dev_storage + 776; } } @@ -3933,11 +3998,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/sdy7", 9) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty7", 9) == 0) { { -return dev_storage + 648; +return dev_storage + 246; } } @@ -3957,11 +4022,11 @@ return NULL; case '6': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty6", 9) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/sdy6", 9) == 0) { { -return dev_storage + 2455; +return dev_storage + 775; } } @@ -3972,11 +4037,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/sdy6", 9) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty6", 9) == 0) { { -return dev_storage + 647; +return dev_storage + 245; } } @@ -3996,11 +4061,11 @@ return NULL; case '5': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty5", 9) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/sdy5", 9) == 0) { { -return dev_storage + 2454; +return dev_storage + 774; } } @@ -4011,11 +4076,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/sdy5", 9) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty5", 9) == 0) { { -return dev_storage + 646; +return dev_storage + 244; } } @@ -4035,11 +4100,11 @@ return NULL; case '4': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty4", 9) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/sdy4", 9) == 0) { { -return dev_storage + 2453; +return dev_storage + 773; } } @@ -4050,11 +4115,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/sdy4", 9) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty4", 9) == 0) { { -return dev_storage + 645; +return dev_storage + 243; } } @@ -4074,11 +4139,11 @@ return NULL; case '3': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty3", 9) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/sdy3", 9) == 0) { { -return dev_storage + 2452; +return dev_storage + 772; } } @@ -4089,11 +4154,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/sdy3", 9) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty3", 9) == 0) { { -return dev_storage + 644; +return dev_storage + 242; } } @@ -4113,11 +4178,11 @@ return NULL; case '2': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty2", 9) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/sdy2", 9) == 0) { { -return dev_storage + 2451; +return dev_storage + 771; } } @@ -4128,11 +4193,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/sdy2", 9) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty2", 9) == 0) { { -return dev_storage + 643; +return dev_storage + 241; } } @@ -4152,11 +4217,11 @@ return NULL; case '1': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty1", 9) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/sdy1", 9) == 0) { { -return dev_storage + 2450; +return dev_storage + 770; } } @@ -4167,11 +4232,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/sdy1", 9) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty1", 9) == 0) { { -return dev_storage + 642; +return dev_storage + 240; } } @@ -4189,10 +4254,10 @@ return NULL; } } case '0': - if (strncmp (KR_keyword, "/dev/tty0", 9) == 0) + if (strncmp (KR_keyword, "/dev/pty0", 9) == 0) { { -return dev_storage + 2449; +return dev_storage + 239; } } @@ -4216,7 +4281,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx9", 9) == 0) { { -return dev_storage + 635; +return dev_storage + 763; } } @@ -4231,7 +4296,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx8", 9) == 0) { { -return dev_storage + 634; +return dev_storage + 762; } } @@ -4246,7 +4311,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx7", 9) == 0) { { -return dev_storage + 633; +return dev_storage + 761; } } @@ -4261,7 +4326,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx6", 9) == 0) { { -return dev_storage + 632; +return dev_storage + 760; } } @@ -4276,7 +4341,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx5", 9) == 0) { { -return dev_storage + 631; +return dev_storage + 759; } } @@ -4291,7 +4356,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx4", 9) == 0) { { -return dev_storage + 630; +return dev_storage + 758; } } @@ -4306,7 +4371,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx3", 9) == 0) { { -return dev_storage + 629; +return dev_storage + 757; } } @@ -4321,7 +4386,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx2", 9) == 0) { { -return dev_storage + 628; +return dev_storage + 756; } } @@ -4336,7 +4401,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx1", 9) == 0) { { -return dev_storage + 627; +return dev_storage + 755; } } @@ -4360,7 +4425,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw9", 9) == 0) { { -return dev_storage + 620; +return dev_storage + 748; } } @@ -4375,7 +4440,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw8", 9) == 0) { { -return dev_storage + 619; +return dev_storage + 747; } } @@ -4390,7 +4455,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw7", 9) == 0) { { -return dev_storage + 618; +return dev_storage + 746; } } @@ -4405,7 +4470,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw6", 9) == 0) { { -return dev_storage + 617; +return dev_storage + 745; } } @@ -4420,7 +4485,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw5", 9) == 0) { { -return dev_storage + 616; +return dev_storage + 744; } } @@ -4435,7 +4500,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw4", 9) == 0) { { -return dev_storage + 615; +return dev_storage + 743; } } @@ -4450,7 +4515,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw3", 9) == 0) { { -return dev_storage + 614; +return dev_storage + 742; } } @@ -4465,7 +4530,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw2", 9) == 0) { { -return dev_storage + 613; +return dev_storage + 741; } } @@ -4480,7 +4545,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw1", 9) == 0) { { -return dev_storage + 612; +return dev_storage + 740; } } @@ -4504,7 +4569,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv9", 9) == 0) { { -return dev_storage + 605; +return dev_storage + 733; } } @@ -4519,7 +4584,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv8", 9) == 0) { { -return dev_storage + 604; +return dev_storage + 732; } } @@ -4534,7 +4599,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv7", 9) == 0) { { -return dev_storage + 603; +return dev_storage + 731; } } @@ -4549,7 +4614,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv6", 9) == 0) { { -return dev_storage + 602; +return dev_storage + 730; } } @@ -4564,7 +4629,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv5", 9) == 0) { { -return dev_storage + 601; +return dev_storage + 729; } } @@ -4579,7 +4644,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv4", 9) == 0) { { -return dev_storage + 600; +return dev_storage + 728; } } @@ -4594,7 +4659,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv3", 9) == 0) { { -return dev_storage + 599; +return dev_storage + 727; } } @@ -4609,7 +4674,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv2", 9) == 0) { { -return dev_storage + 598; +return dev_storage + 726; } } @@ -4624,7 +4689,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv1", 9) == 0) { { -return dev_storage + 597; +return dev_storage + 725; } } @@ -4648,7 +4713,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu9", 9) == 0) { { -return dev_storage + 590; +return dev_storage + 718; } } @@ -4663,7 +4728,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu8", 9) == 0) { { -return dev_storage + 589; +return dev_storage + 717; } } @@ -4678,7 +4743,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu7", 9) == 0) { { -return dev_storage + 588; +return dev_storage + 716; } } @@ -4693,7 +4758,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu6", 9) == 0) { { -return dev_storage + 587; +return dev_storage + 715; } } @@ -4708,7 +4773,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu5", 9) == 0) { { -return dev_storage + 586; +return dev_storage + 714; } } @@ -4723,7 +4788,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu4", 9) == 0) { { -return dev_storage + 585; +return dev_storage + 713; } } @@ -4738,7 +4803,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu3", 9) == 0) { { -return dev_storage + 584; +return dev_storage + 712; } } @@ -4753,7 +4818,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu2", 9) == 0) { { -return dev_storage + 583; +return dev_storage + 711; } } @@ -4768,7 +4833,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu1", 9) == 0) { { -return dev_storage + 582; +return dev_storage + 710; } } @@ -4795,7 +4860,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt9", 9) == 0) { { -return dev_storage + 575; +return dev_storage + 703; } } @@ -4834,7 +4899,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt8", 9) == 0) { { -return dev_storage + 574; +return dev_storage + 702; } } @@ -4873,7 +4938,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt7", 9) == 0) { { -return dev_storage + 573; +return dev_storage + 701; } } @@ -4912,7 +4977,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt6", 9) == 0) { { -return dev_storage + 572; +return dev_storage + 700; } } @@ -4951,7 +5016,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt5", 9) == 0) { { -return dev_storage + 571; +return dev_storage + 699; } } @@ -4990,7 +5055,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt4", 9) == 0) { { -return dev_storage + 570; +return dev_storage + 698; } } @@ -5029,7 +5094,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt3", 9) == 0) { { -return dev_storage + 569; +return dev_storage + 697; } } @@ -5068,7 +5133,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt2", 9) == 0) { { -return dev_storage + 568; +return dev_storage + 696; } } @@ -5107,7 +5172,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt1", 9) == 0) { { -return dev_storage + 567; +return dev_storage + 695; } } @@ -5182,7 +5247,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds9", 9) == 0) { { -return dev_storage + 560; +return dev_storage + 688; } } @@ -5197,7 +5262,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds8", 9) == 0) { { -return dev_storage + 559; +return dev_storage + 687; } } @@ -5212,7 +5277,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds7", 9) == 0) { { -return dev_storage + 558; +return dev_storage + 686; } } @@ -5227,7 +5292,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds6", 9) == 0) { { -return dev_storage + 557; +return dev_storage + 685; } } @@ -5242,7 +5307,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds5", 9) == 0) { { -return dev_storage + 556; +return dev_storage + 684; } } @@ -5257,7 +5322,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds4", 9) == 0) { { -return dev_storage + 555; +return dev_storage + 683; } } @@ -5272,7 +5337,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds3", 9) == 0) { { -return dev_storage + 554; +return dev_storage + 682; } } @@ -5287,7 +5352,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds2", 9) == 0) { { -return dev_storage + 553; +return dev_storage + 681; } } @@ -5302,7 +5367,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds1", 9) == 0) { { -return dev_storage + 552; +return dev_storage + 680; } } @@ -5341,7 +5406,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/zero", 9) == 0) { { -return dev_storage + 2579; +return dev_storage + 2643; } } @@ -5356,7 +5421,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr9", 9) == 0) { { -return dev_storage + 545; +return dev_storage + 673; } } @@ -5371,7 +5436,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr8", 9) == 0) { { -return dev_storage + 544; +return dev_storage + 672; } } @@ -5386,7 +5451,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr7", 9) == 0) { { -return dev_storage + 543; +return dev_storage + 671; } } @@ -5401,7 +5466,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr6", 9) == 0) { { -return dev_storage + 542; +return dev_storage + 670; } } @@ -5416,7 +5481,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr5", 9) == 0) { { -return dev_storage + 541; +return dev_storage + 669; } } @@ -5431,7 +5496,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr4", 9) == 0) { { -return dev_storage + 540; +return dev_storage + 668; } } @@ -5446,7 +5511,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr3", 9) == 0) { { -return dev_storage + 539; +return dev_storage + 667; } } @@ -5461,7 +5526,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr2", 9) == 0) { { -return dev_storage + 538; +return dev_storage + 666; } } @@ -5476,7 +5541,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr1", 9) == 0) { { -return dev_storage + 537; +return dev_storage + 665; } } @@ -5500,7 +5565,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq9", 9) == 0) { { -return dev_storage + 530; +return dev_storage + 658; } } @@ -5515,7 +5580,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq8", 9) == 0) { { -return dev_storage + 529; +return dev_storage + 657; } } @@ -5530,7 +5595,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq7", 9) == 0) { { -return dev_storage + 528; +return dev_storage + 656; } } @@ -5545,7 +5610,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq6", 9) == 0) { { -return dev_storage + 527; +return dev_storage + 655; } } @@ -5560,7 +5625,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq5", 9) == 0) { { -return dev_storage + 526; +return dev_storage + 654; } } @@ -5575,7 +5640,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq4", 9) == 0) { { -return dev_storage + 525; +return dev_storage + 653; } } @@ -5590,7 +5655,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq3", 9) == 0) { { -return dev_storage + 524; +return dev_storage + 652; } } @@ -5605,7 +5670,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq2", 9) == 0) { { -return dev_storage + 523; +return dev_storage + 651; } } @@ -5620,7 +5685,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq1", 9) == 0) { { -return dev_storage + 522; +return dev_storage + 650; } } @@ -5659,7 +5724,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp9", 9) == 0) { { -return dev_storage + 515; +return dev_storage + 643; } } @@ -5674,7 +5739,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp8", 9) == 0) { { -return dev_storage + 514; +return dev_storage + 642; } } @@ -5689,7 +5754,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp7", 9) == 0) { { -return dev_storage + 513; +return dev_storage + 641; } } @@ -5704,7 +5769,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp6", 9) == 0) { { -return dev_storage + 512; +return dev_storage + 640; } } @@ -5719,7 +5784,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp5", 9) == 0) { { -return dev_storage + 511; +return dev_storage + 639; } } @@ -5734,7 +5799,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp4", 9) == 0) { { -return dev_storage + 510; +return dev_storage + 638; } } @@ -5749,7 +5814,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp3", 9) == 0) { { -return dev_storage + 509; +return dev_storage + 637; } } @@ -5764,7 +5829,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp2", 9) == 0) { { -return dev_storage + 508; +return dev_storage + 636; } } @@ -5779,7 +5844,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp1", 9) == 0) { { -return dev_storage + 507; +return dev_storage + 635; } } @@ -5803,7 +5868,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo9", 9) == 0) { { -return dev_storage + 500; +return dev_storage + 628; } } @@ -5818,7 +5883,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo8", 9) == 0) { { -return dev_storage + 499; +return dev_storage + 627; } } @@ -5833,7 +5898,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo7", 9) == 0) { { -return dev_storage + 498; +return dev_storage + 626; } } @@ -5848,7 +5913,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo6", 9) == 0) { { -return dev_storage + 497; +return dev_storage + 625; } } @@ -5863,7 +5928,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo5", 9) == 0) { { -return dev_storage + 496; +return dev_storage + 624; } } @@ -5878,7 +5943,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo4", 9) == 0) { { -return dev_storage + 495; +return dev_storage + 623; } } @@ -5893,7 +5958,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo3", 9) == 0) { { -return dev_storage + 494; +return dev_storage + 622; } } @@ -5908,7 +5973,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo2", 9) == 0) { { -return dev_storage + 493; +return dev_storage + 621; } } @@ -5923,7 +5988,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo1", 9) == 0) { { -return dev_storage + 492; +return dev_storage + 620; } } @@ -5947,7 +6012,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn9", 9) == 0) { { -return dev_storage + 485; +return dev_storage + 613; } } @@ -5962,7 +6027,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn8", 9) == 0) { { -return dev_storage + 484; +return dev_storage + 612; } } @@ -5977,7 +6042,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn7", 9) == 0) { { -return dev_storage + 483; +return dev_storage + 611; } } @@ -5992,7 +6057,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn6", 9) == 0) { { -return dev_storage + 482; +return dev_storage + 610; } } @@ -6007,7 +6072,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn5", 9) == 0) { { -return dev_storage + 481; +return dev_storage + 609; } } @@ -6022,7 +6087,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn4", 9) == 0) { { -return dev_storage + 480; +return dev_storage + 608; } } @@ -6037,7 +6102,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn3", 9) == 0) { { -return dev_storage + 479; +return dev_storage + 607; } } @@ -6052,7 +6117,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn2", 9) == 0) { { -return dev_storage + 478; +return dev_storage + 606; } } @@ -6067,7 +6132,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn1", 9) == 0) { { -return dev_storage + 477; +return dev_storage + 605; } } @@ -6094,7 +6159,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm9", 9) == 0) { { -return dev_storage + 470; +return dev_storage + 598; } } @@ -6109,7 +6174,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm8", 9) == 0) { { -return dev_storage + 469; +return dev_storage + 597; } } @@ -6124,7 +6189,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm7", 9) == 0) { { -return dev_storage + 468; +return dev_storage + 596; } } @@ -6139,7 +6204,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm6", 9) == 0) { { -return dev_storage + 467; +return dev_storage + 595; } } @@ -6154,7 +6219,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm5", 9) == 0) { { -return dev_storage + 466; +return dev_storage + 594; } } @@ -6169,7 +6234,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm4", 9) == 0) { { -return dev_storage + 465; +return dev_storage + 593; } } @@ -6184,7 +6249,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm3", 9) == 0) { { -return dev_storage + 464; +return dev_storage + 592; } } @@ -6199,7 +6264,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm2", 9) == 0) { { -return dev_storage + 463; +return dev_storage + 591; } } @@ -6214,7 +6279,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm1", 9) == 0) { { -return dev_storage + 462; +return dev_storage + 590; } } @@ -6442,7 +6507,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl9", 9) == 0) { { -return dev_storage + 455; +return dev_storage + 583; } } @@ -6457,7 +6522,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl8", 9) == 0) { { -return dev_storage + 454; +return dev_storage + 582; } } @@ -6472,7 +6537,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl7", 9) == 0) { { -return dev_storage + 453; +return dev_storage + 581; } } @@ -6487,7 +6552,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl6", 9) == 0) { { -return dev_storage + 452; +return dev_storage + 580; } } @@ -6502,7 +6567,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl5", 9) == 0) { { -return dev_storage + 451; +return dev_storage + 579; } } @@ -6517,7 +6582,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl4", 9) == 0) { { -return dev_storage + 450; +return dev_storage + 578; } } @@ -6532,7 +6597,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl3", 9) == 0) { { -return dev_storage + 449; +return dev_storage + 577; } } @@ -6547,7 +6612,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl2", 9) == 0) { { -return dev_storage + 448; +return dev_storage + 576; } } @@ -6562,7 +6627,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl1", 9) == 0) { { -return dev_storage + 447; +return dev_storage + 575; } } @@ -6586,7 +6651,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk9", 9) == 0) { { -return dev_storage + 440; +return dev_storage + 568; } } @@ -6601,7 +6666,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk8", 9) == 0) { { -return dev_storage + 439; +return dev_storage + 567; } } @@ -6616,7 +6681,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk7", 9) == 0) { { -return dev_storage + 438; +return dev_storage + 566; } } @@ -6631,7 +6696,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk6", 9) == 0) { { -return dev_storage + 437; +return dev_storage + 565; } } @@ -6646,7 +6711,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk5", 9) == 0) { { -return dev_storage + 436; +return dev_storage + 564; } } @@ -6661,7 +6726,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk4", 9) == 0) { { -return dev_storage + 435; +return dev_storage + 563; } } @@ -6676,7 +6741,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk3", 9) == 0) { { -return dev_storage + 434; +return dev_storage + 562; } } @@ -6691,7 +6756,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk2", 9) == 0) { { -return dev_storage + 433; +return dev_storage + 561; } } @@ -6706,7 +6771,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk1", 9) == 0) { { -return dev_storage + 432; +return dev_storage + 560; } } @@ -6730,7 +6795,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj9", 9) == 0) { { -return dev_storage + 425; +return dev_storage + 553; } } @@ -6745,7 +6810,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj8", 9) == 0) { { -return dev_storage + 424; +return dev_storage + 552; } } @@ -6760,7 +6825,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj7", 9) == 0) { { -return dev_storage + 423; +return dev_storage + 551; } } @@ -6775,7 +6840,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj6", 9) == 0) { { -return dev_storage + 422; +return dev_storage + 550; } } @@ -6790,7 +6855,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj5", 9) == 0) { { -return dev_storage + 421; +return dev_storage + 549; } } @@ -6805,7 +6870,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj4", 9) == 0) { { -return dev_storage + 420; +return dev_storage + 548; } } @@ -6820,7 +6885,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj3", 9) == 0) { { -return dev_storage + 419; +return dev_storage + 547; } } @@ -6835,7 +6900,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj2", 9) == 0) { { -return dev_storage + 418; +return dev_storage + 546; } } @@ -6850,7 +6915,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj1", 9) == 0) { { -return dev_storage + 417; +return dev_storage + 545; } } @@ -6874,7 +6939,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi9", 9) == 0) { { -return dev_storage + 410; +return dev_storage + 538; } } @@ -6889,7 +6954,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi8", 9) == 0) { { -return dev_storage + 409; +return dev_storage + 537; } } @@ -6904,7 +6969,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi7", 9) == 0) { { -return dev_storage + 408; +return dev_storage + 536; } } @@ -6919,7 +6984,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi6", 9) == 0) { { -return dev_storage + 407; +return dev_storage + 535; } } @@ -6934,7 +6999,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi5", 9) == 0) { { -return dev_storage + 406; +return dev_storage + 534; } } @@ -6949,7 +7014,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi4", 9) == 0) { { -return dev_storage + 405; +return dev_storage + 533; } } @@ -6964,7 +7029,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi3", 9) == 0) { { -return dev_storage + 404; +return dev_storage + 532; } } @@ -6979,7 +7044,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi2", 9) == 0) { { -return dev_storage + 403; +return dev_storage + 531; } } @@ -6994,7 +7059,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi1", 9) == 0) { { -return dev_storage + 402; +return dev_storage + 530; } } @@ -7018,7 +7083,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh9", 9) == 0) { { -return dev_storage + 395; +return dev_storage + 523; } } @@ -7033,7 +7098,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh8", 9) == 0) { { -return dev_storage + 394; +return dev_storage + 522; } } @@ -7048,7 +7113,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh7", 9) == 0) { { -return dev_storage + 393; +return dev_storage + 521; } } @@ -7063,7 +7128,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh6", 9) == 0) { { -return dev_storage + 392; +return dev_storage + 520; } } @@ -7078,7 +7143,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh5", 9) == 0) { { -return dev_storage + 391; +return dev_storage + 519; } } @@ -7093,7 +7158,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh4", 9) == 0) { { -return dev_storage + 390; +return dev_storage + 518; } } @@ -7108,7 +7173,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh3", 9) == 0) { { -return dev_storage + 389; +return dev_storage + 517; } } @@ -7123,7 +7188,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh2", 9) == 0) { { -return dev_storage + 388; +return dev_storage + 516; } } @@ -7138,7 +7203,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh1", 9) == 0) { { -return dev_storage + 387; +return dev_storage + 515; } } @@ -7162,7 +7227,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg9", 9) == 0) { { -return dev_storage + 380; +return dev_storage + 508; } } @@ -7177,7 +7242,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg8", 9) == 0) { { -return dev_storage + 379; +return dev_storage + 507; } } @@ -7192,7 +7257,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg7", 9) == 0) { { -return dev_storage + 378; +return dev_storage + 506; } } @@ -7207,7 +7272,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg6", 9) == 0) { { -return dev_storage + 377; +return dev_storage + 505; } } @@ -7222,7 +7287,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg5", 9) == 0) { { -return dev_storage + 376; +return dev_storage + 504; } } @@ -7237,7 +7302,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg4", 9) == 0) { { -return dev_storage + 375; +return dev_storage + 503; } } @@ -7252,7 +7317,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg3", 9) == 0) { { -return dev_storage + 374; +return dev_storage + 502; } } @@ -7267,7 +7332,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg2", 9) == 0) { { -return dev_storage + 373; +return dev_storage + 501; } } @@ -7282,7 +7347,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg1", 9) == 0) { { -return dev_storage + 372; +return dev_storage + 500; } } @@ -7321,7 +7386,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf9", 9) == 0) { { -return dev_storage + 365; +return dev_storage + 493; } } @@ -7336,7 +7401,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf8", 9) == 0) { { -return dev_storage + 364; +return dev_storage + 492; } } @@ -7351,7 +7416,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf7", 9) == 0) { { -return dev_storage + 363; +return dev_storage + 491; } } @@ -7366,7 +7431,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf6", 9) == 0) { { -return dev_storage + 362; +return dev_storage + 490; } } @@ -7381,7 +7446,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf5", 9) == 0) { { -return dev_storage + 361; +return dev_storage + 489; } } @@ -7396,7 +7461,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf4", 9) == 0) { { -return dev_storage + 360; +return dev_storage + 488; } } @@ -7411,7 +7476,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf3", 9) == 0) { { -return dev_storage + 359; +return dev_storage + 487; } } @@ -7426,7 +7491,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf2", 9) == 0) { { -return dev_storage + 358; +return dev_storage + 486; } } @@ -7441,7 +7506,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf1", 9) == 0) { { -return dev_storage + 357; +return dev_storage + 485; } } @@ -7480,7 +7545,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde9", 9) == 0) { { -return dev_storage + 350; +return dev_storage + 478; } } @@ -7495,7 +7560,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde8", 9) == 0) { { -return dev_storage + 349; +return dev_storage + 477; } } @@ -7510,7 +7575,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde7", 9) == 0) { { -return dev_storage + 348; +return dev_storage + 476; } } @@ -7525,7 +7590,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde6", 9) == 0) { { -return dev_storage + 347; +return dev_storage + 475; } } @@ -7540,7 +7605,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde5", 9) == 0) { { -return dev_storage + 346; +return dev_storage + 474; } } @@ -7555,7 +7620,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde4", 9) == 0) { { -return dev_storage + 345; +return dev_storage + 473; } } @@ -7570,7 +7635,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde3", 9) == 0) { { -return dev_storage + 344; +return dev_storage + 472; } } @@ -7585,7 +7650,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde2", 9) == 0) { { -return dev_storage + 343; +return dev_storage + 471; } } @@ -7600,7 +7665,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde1", 9) == 0) { { -return dev_storage + 342; +return dev_storage + 470; } } @@ -7624,7 +7689,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx", 9) == 0) { { -return dev_storage + 1943; +return dev_storage + 2071; } } @@ -7639,7 +7704,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw", 9) == 0) { { -return dev_storage + 1942; +return dev_storage + 2070; } } @@ -7654,7 +7719,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv", 9) == 0) { { -return dev_storage + 1941; +return dev_storage + 2069; } } @@ -7669,7 +7734,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu", 9) == 0) { { -return dev_storage + 1940; +return dev_storage + 2068; } } @@ -7684,7 +7749,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt", 9) == 0) { { -return dev_storage + 1939; +return dev_storage + 2067; } } @@ -7699,7 +7764,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds", 9) == 0) { { -return dev_storage + 1938; +return dev_storage + 2066; } } @@ -7714,7 +7779,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr", 9) == 0) { { -return dev_storage + 1937; +return dev_storage + 2065; } } @@ -7729,7 +7794,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq", 9) == 0) { { -return dev_storage + 1936; +return dev_storage + 2064; } } @@ -7744,7 +7809,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp", 9) == 0) { { -return dev_storage + 1935; +return dev_storage + 2063; } } @@ -7759,7 +7824,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo", 9) == 0) { { -return dev_storage + 1934; +return dev_storage + 2062; } } @@ -7774,7 +7839,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn", 9) == 0) { { -return dev_storage + 1933; +return dev_storage + 2061; } } @@ -7789,7 +7854,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm", 9) == 0) { { -return dev_storage + 1932; +return dev_storage + 2060; } } @@ -7804,7 +7869,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl", 9) == 0) { { -return dev_storage + 1931; +return dev_storage + 2059; } } @@ -7819,7 +7884,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk", 9) == 0) { { -return dev_storage + 1930; +return dev_storage + 2058; } } @@ -7834,7 +7899,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj", 9) == 0) { { -return dev_storage + 1929; +return dev_storage + 2057; } } @@ -7849,7 +7914,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi", 9) == 0) { { -return dev_storage + 1928; +return dev_storage + 2056; } } @@ -7864,7 +7929,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh", 9) == 0) { { -return dev_storage + 1927; +return dev_storage + 2055; } } @@ -7879,7 +7944,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg", 9) == 0) { { -return dev_storage + 1926; +return dev_storage + 2054; } } @@ -7894,7 +7959,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf", 9) == 0) { { -return dev_storage + 1925; +return dev_storage + 2053; } } @@ -7909,7 +7974,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde", 9) == 0) { { -return dev_storage + 1924; +return dev_storage + 2052; } } @@ -7924,7 +7989,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd", 9) == 0) { { -return dev_storage + 1923; +return dev_storage + 2051; } } @@ -7939,7 +8004,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc", 9) == 0) { { -return dev_storage + 1922; +return dev_storage + 2050; } } @@ -7954,7 +8019,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb", 9) == 0) { { -return dev_storage + 1921; +return dev_storage + 2049; } } @@ -7969,7 +8034,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda", 9) == 0) { { -return dev_storage + 1920; +return dev_storage + 2048; } } @@ -7987,7 +8052,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd9", 9) == 0) { { -return dev_storage + 335; +return dev_storage + 463; } } @@ -8002,7 +8067,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd9", 9) == 0) { { -return dev_storage + 249; +return dev_storage + 377; } } @@ -8026,7 +8091,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd8", 9) == 0) { { -return dev_storage + 334; +return dev_storage + 462; } } @@ -8041,7 +8106,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd8", 9) == 0) { { -return dev_storage + 248; +return dev_storage + 376; } } @@ -8065,7 +8130,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd7", 9) == 0) { { -return dev_storage + 333; +return dev_storage + 461; } } @@ -8080,7 +8145,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd7", 9) == 0) { { -return dev_storage + 247; +return dev_storage + 375; } } @@ -8104,7 +8169,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd6", 9) == 0) { { -return dev_storage + 332; +return dev_storage + 460; } } @@ -8119,7 +8184,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd6", 9) == 0) { { -return dev_storage + 246; +return dev_storage + 374; } } @@ -8143,7 +8208,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd5", 9) == 0) { { -return dev_storage + 331; +return dev_storage + 459; } } @@ -8158,7 +8223,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd5", 9) == 0) { { -return dev_storage + 245; +return dev_storage + 373; } } @@ -8182,7 +8247,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd4", 9) == 0) { { -return dev_storage + 330; +return dev_storage + 458; } } @@ -8197,7 +8262,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd4", 9) == 0) { { -return dev_storage + 244; +return dev_storage + 372; } } @@ -8221,7 +8286,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd3", 9) == 0) { { -return dev_storage + 329; +return dev_storage + 457; } } @@ -8236,7 +8301,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd3", 9) == 0) { { -return dev_storage + 243; +return dev_storage + 371; } } @@ -8260,7 +8325,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd2", 9) == 0) { { -return dev_storage + 328; +return dev_storage + 456; } } @@ -8275,7 +8340,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd2", 9) == 0) { { -return dev_storage + 242; +return dev_storage + 370; } } @@ -8299,7 +8364,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd1", 9) == 0) { { -return dev_storage + 327; +return dev_storage + 455; } } @@ -8314,7 +8379,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd1", 9) == 0) { { -return dev_storage + 241; +return dev_storage + 369; } } @@ -8335,7 +8400,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd0", 9) == 0) { { -return dev_storage + 240; +return dev_storage + 368; } } @@ -8359,7 +8424,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz", 9) == 0) { { -return dev_storage + 1529; +return dev_storage + 1657; } } @@ -8374,7 +8439,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy", 9) == 0) { { -return dev_storage + 1528; +return dev_storage + 1656; } } @@ -8389,7 +8454,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx", 9) == 0) { { -return dev_storage + 1527; +return dev_storage + 1655; } } @@ -8404,7 +8469,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw", 9) == 0) { { -return dev_storage + 1526; +return dev_storage + 1654; } } @@ -8419,7 +8484,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv", 9) == 0) { { -return dev_storage + 1525; +return dev_storage + 1653; } } @@ -8434,7 +8499,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu", 9) == 0) { { -return dev_storage + 1524; +return dev_storage + 1652; } } @@ -8449,7 +8514,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct", 9) == 0) { { -return dev_storage + 1523; +return dev_storage + 1651; } } @@ -8464,7 +8529,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs", 9) == 0) { { -return dev_storage + 1522; +return dev_storage + 1650; } } @@ -8479,7 +8544,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr", 9) == 0) { { -return dev_storage + 1521; +return dev_storage + 1649; } } @@ -8494,7 +8559,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq", 9) == 0) { { -return dev_storage + 1520; +return dev_storage + 1648; } } @@ -8509,7 +8574,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp", 9) == 0) { { -return dev_storage + 1519; +return dev_storage + 1647; } } @@ -8524,7 +8589,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco", 9) == 0) { { -return dev_storage + 1518; +return dev_storage + 1646; } } @@ -8539,7 +8604,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn", 9) == 0) { { -return dev_storage + 1517; +return dev_storage + 1645; } } @@ -8554,7 +8619,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm", 9) == 0) { { -return dev_storage + 1516; +return dev_storage + 1644; } } @@ -8569,7 +8634,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl", 9) == 0) { { -return dev_storage + 1515; +return dev_storage + 1643; } } @@ -8584,7 +8649,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck", 9) == 0) { { -return dev_storage + 1514; +return dev_storage + 1642; } } @@ -8599,7 +8664,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj", 9) == 0) { { -return dev_storage + 1513; +return dev_storage + 1641; } } @@ -8614,7 +8679,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci", 9) == 0) { { -return dev_storage + 1512; +return dev_storage + 1640; } } @@ -8629,7 +8694,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch", 9) == 0) { { -return dev_storage + 1511; +return dev_storage + 1639; } } @@ -8644,7 +8709,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg", 9) == 0) { { -return dev_storage + 1510; +return dev_storage + 1638; } } @@ -8659,7 +8724,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf", 9) == 0) { { -return dev_storage + 1509; +return dev_storage + 1637; } } @@ -8674,7 +8739,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce", 9) == 0) { { -return dev_storage + 1508; +return dev_storage + 1636; } } @@ -8689,7 +8754,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd", 9) == 0) { { -return dev_storage + 1507; +return dev_storage + 1635; } } @@ -8704,7 +8769,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc", 9) == 0) { { -return dev_storage + 1506; +return dev_storage + 1634; } } @@ -8719,7 +8784,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb", 9) == 0) { { -return dev_storage + 1505; +return dev_storage + 1633; } } @@ -8734,7 +8799,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca", 9) == 0) { { -return dev_storage + 1504; +return dev_storage + 1632; } } @@ -8749,7 +8814,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc9", 9) == 0) { { -return dev_storage + 320; +return dev_storage + 448; } } @@ -8764,7 +8829,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc8", 9) == 0) { { -return dev_storage + 319; +return dev_storage + 447; } } @@ -8779,7 +8844,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc7", 9) == 0) { { -return dev_storage + 318; +return dev_storage + 446; } } @@ -8794,7 +8859,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc6", 9) == 0) { { -return dev_storage + 317; +return dev_storage + 445; } } @@ -8809,7 +8874,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc5", 9) == 0) { { -return dev_storage + 316; +return dev_storage + 444; } } @@ -8824,7 +8889,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc4", 9) == 0) { { -return dev_storage + 315; +return dev_storage + 443; } } @@ -8839,7 +8904,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc3", 9) == 0) { { -return dev_storage + 314; +return dev_storage + 442; } } @@ -8854,7 +8919,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc2", 9) == 0) { { -return dev_storage + 313; +return dev_storage + 441; } } @@ -8869,7 +8934,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc1", 9) == 0) { { -return dev_storage + 312; +return dev_storage + 440; } } @@ -8893,7 +8958,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz", 9) == 0) { { -return dev_storage + 1113; +return dev_storage + 1241; } } @@ -8908,7 +8973,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby", 9) == 0) { { -return dev_storage + 1112; +return dev_storage + 1240; } } @@ -8923,7 +8988,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx", 9) == 0) { { -return dev_storage + 1111; +return dev_storage + 1239; } } @@ -8938,7 +9003,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw", 9) == 0) { { -return dev_storage + 1110; +return dev_storage + 1238; } } @@ -8953,7 +9018,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv", 9) == 0) { { -return dev_storage + 1109; +return dev_storage + 1237; } } @@ -8968,7 +9033,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu", 9) == 0) { { -return dev_storage + 1108; +return dev_storage + 1236; } } @@ -8983,7 +9048,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt", 9) == 0) { { -return dev_storage + 1107; +return dev_storage + 1235; } } @@ -8998,7 +9063,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs", 9) == 0) { { -return dev_storage + 1106; +return dev_storage + 1234; } } @@ -9013,7 +9078,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr", 9) == 0) { { -return dev_storage + 1105; +return dev_storage + 1233; } } @@ -9028,7 +9093,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq", 9) == 0) { { -return dev_storage + 1104; +return dev_storage + 1232; } } @@ -9043,7 +9108,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp", 9) == 0) { { -return dev_storage + 1103; +return dev_storage + 1231; } } @@ -9058,7 +9123,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo", 9) == 0) { { -return dev_storage + 1102; +return dev_storage + 1230; } } @@ -9073,7 +9138,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn", 9) == 0) { { -return dev_storage + 1101; +return dev_storage + 1229; } } @@ -9088,7 +9153,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm", 9) == 0) { { -return dev_storage + 1100; +return dev_storage + 1228; } } @@ -9103,7 +9168,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl", 9) == 0) { { -return dev_storage + 1099; +return dev_storage + 1227; } } @@ -9118,7 +9183,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk", 9) == 0) { { -return dev_storage + 1098; +return dev_storage + 1226; } } @@ -9133,7 +9198,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj", 9) == 0) { { -return dev_storage + 1097; +return dev_storage + 1225; } } @@ -9148,7 +9213,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi", 9) == 0) { { -return dev_storage + 1096; +return dev_storage + 1224; } } @@ -9163,7 +9228,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh", 9) == 0) { { -return dev_storage + 1095; +return dev_storage + 1223; } } @@ -9178,7 +9243,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg", 9) == 0) { { -return dev_storage + 1094; +return dev_storage + 1222; } } @@ -9193,7 +9258,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf", 9) == 0) { { -return dev_storage + 1093; +return dev_storage + 1221; } } @@ -9208,7 +9273,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe", 9) == 0) { { -return dev_storage + 1092; +return dev_storage + 1220; } } @@ -9223,7 +9288,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd", 9) == 0) { { -return dev_storage + 1091; +return dev_storage + 1219; } } @@ -9238,7 +9303,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc", 9) == 0) { { -return dev_storage + 1090; +return dev_storage + 1218; } } @@ -9253,7 +9318,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb", 9) == 0) { { -return dev_storage + 1089; +return dev_storage + 1217; } } @@ -9268,7 +9333,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba", 9) == 0) { { -return dev_storage + 1088; +return dev_storage + 1216; } } @@ -9283,7 +9348,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb9", 9) == 0) { { -return dev_storage + 305; +return dev_storage + 433; } } @@ -9298,7 +9363,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb8", 9) == 0) { { -return dev_storage + 304; +return dev_storage + 432; } } @@ -9313,7 +9378,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb7", 9) == 0) { { -return dev_storage + 303; +return dev_storage + 431; } } @@ -9328,7 +9393,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb6", 9) == 0) { { -return dev_storage + 302; +return dev_storage + 430; } } @@ -9343,7 +9408,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb5", 9) == 0) { { -return dev_storage + 301; +return dev_storage + 429; } } @@ -9358,7 +9423,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb4", 9) == 0) { { -return dev_storage + 300; +return dev_storage + 428; } } @@ -9373,7 +9438,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb3", 9) == 0) { { -return dev_storage + 299; +return dev_storage + 427; } } @@ -9388,7 +9453,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb2", 9) == 0) { { -return dev_storage + 298; +return dev_storage + 426; } } @@ -9403,7 +9468,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb1", 9) == 0) { { -return dev_storage + 297; +return dev_storage + 425; } } @@ -9427,7 +9492,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz", 9) == 0) { { -return dev_storage + 697; +return dev_storage + 825; } } @@ -9442,7 +9507,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday", 9) == 0) { { -return dev_storage + 696; +return dev_storage + 824; } } @@ -9457,7 +9522,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax", 9) == 0) { { -return dev_storage + 695; +return dev_storage + 823; } } @@ -9472,7 +9537,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw", 9) == 0) { { -return dev_storage + 694; +return dev_storage + 822; } } @@ -9487,7 +9552,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav", 9) == 0) { { -return dev_storage + 693; +return dev_storage + 821; } } @@ -9502,7 +9567,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau", 9) == 0) { { -return dev_storage + 692; +return dev_storage + 820; } } @@ -9517,7 +9582,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat", 9) == 0) { { -return dev_storage + 691; +return dev_storage + 819; } } @@ -9532,7 +9597,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas", 9) == 0) { { -return dev_storage + 690; +return dev_storage + 818; } } @@ -9547,7 +9612,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar", 9) == 0) { { -return dev_storage + 689; +return dev_storage + 817; } } @@ -9562,7 +9627,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq", 9) == 0) { { -return dev_storage + 688; +return dev_storage + 816; } } @@ -9577,7 +9642,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap", 9) == 0) { { -return dev_storage + 687; +return dev_storage + 815; } } @@ -9592,7 +9657,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao", 9) == 0) { { -return dev_storage + 686; +return dev_storage + 814; } } @@ -9607,7 +9672,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan", 9) == 0) { { -return dev_storage + 685; +return dev_storage + 813; } } @@ -9622,7 +9687,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam", 9) == 0) { { -return dev_storage + 684; +return dev_storage + 812; } } @@ -9637,7 +9702,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal", 9) == 0) { { -return dev_storage + 683; +return dev_storage + 811; } } @@ -9652,7 +9717,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak", 9) == 0) { { -return dev_storage + 682; +return dev_storage + 810; } } @@ -9667,7 +9732,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj", 9) == 0) { { -return dev_storage + 681; +return dev_storage + 809; } } @@ -9682,7 +9747,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai", 9) == 0) { { -return dev_storage + 680; +return dev_storage + 808; } } @@ -9697,7 +9762,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah", 9) == 0) { { -return dev_storage + 679; +return dev_storage + 807; } } @@ -9712,7 +9777,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag", 9) == 0) { { -return dev_storage + 678; +return dev_storage + 806; } } @@ -9727,7 +9792,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf", 9) == 0) { { -return dev_storage + 677; +return dev_storage + 805; } } @@ -9742,7 +9807,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae", 9) == 0) { { -return dev_storage + 676; +return dev_storage + 804; } } @@ -9757,7 +9822,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad", 9) == 0) { { -return dev_storage + 675; +return dev_storage + 803; } } @@ -9772,7 +9837,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac", 9) == 0) { { -return dev_storage + 674; +return dev_storage + 802; } } @@ -9787,7 +9852,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab", 9) == 0) { { -return dev_storage + 673; +return dev_storage + 801; } } @@ -9802,7 +9867,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa", 9) == 0) { { -return dev_storage + 672; +return dev_storage + 800; } } @@ -9817,7 +9882,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda9", 9) == 0) { { -return dev_storage + 290; +return dev_storage + 418; } } @@ -9832,7 +9897,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda8", 9) == 0) { { -return dev_storage + 289; +return dev_storage + 417; } } @@ -9847,7 +9912,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda7", 9) == 0) { { -return dev_storage + 288; +return dev_storage + 416; } } @@ -9862,7 +9927,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda6", 9) == 0) { { -return dev_storage + 287; +return dev_storage + 415; } } @@ -9877,7 +9942,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda5", 9) == 0) { { -return dev_storage + 286; +return dev_storage + 414; } } @@ -9892,7 +9957,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda4", 9) == 0) { { -return dev_storage + 285; +return dev_storage + 413; } } @@ -9907,7 +9972,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda3", 9) == 0) { { -return dev_storage + 284; +return dev_storage + 412; } } @@ -9922,7 +9987,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda2", 9) == 0) { { -return dev_storage + 283; +return dev_storage + 411; } } @@ -9937,7 +10002,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda1", 9) == 0) { { -return dev_storage + 282; +return dev_storage + 410; } } @@ -9961,7 +10026,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st99", 9) == 0) { { -return dev_storage + 2419; +return dev_storage + 2547; } } @@ -9976,7 +10041,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st98", 9) == 0) { { -return dev_storage + 2418; +return dev_storage + 2546; } } @@ -9991,7 +10056,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st97", 9) == 0) { { -return dev_storage + 2417; +return dev_storage + 2545; } } @@ -10006,7 +10071,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st96", 9) == 0) { { -return dev_storage + 2416; +return dev_storage + 2544; } } @@ -10021,7 +10086,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st95", 9) == 0) { { -return dev_storage + 2415; +return dev_storage + 2543; } } @@ -10036,7 +10101,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st94", 9) == 0) { { -return dev_storage + 2414; +return dev_storage + 2542; } } @@ -10051,7 +10116,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st93", 9) == 0) { { -return dev_storage + 2413; +return dev_storage + 2541; } } @@ -10066,7 +10131,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st92", 9) == 0) { { -return dev_storage + 2412; +return dev_storage + 2540; } } @@ -10081,7 +10146,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st91", 9) == 0) { { -return dev_storage + 2411; +return dev_storage + 2539; } } @@ -10096,7 +10161,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st90", 9) == 0) { { -return dev_storage + 2410; +return dev_storage + 2538; } } @@ -10120,7 +10185,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st89", 9) == 0) { { -return dev_storage + 2409; +return dev_storage + 2537; } } @@ -10135,7 +10200,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st88", 9) == 0) { { -return dev_storage + 2408; +return dev_storage + 2536; } } @@ -10150,7 +10215,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st87", 9) == 0) { { -return dev_storage + 2407; +return dev_storage + 2535; } } @@ -10165,7 +10230,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st86", 9) == 0) { { -return dev_storage + 2406; +return dev_storage + 2534; } } @@ -10180,7 +10245,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st85", 9) == 0) { { -return dev_storage + 2405; +return dev_storage + 2533; } } @@ -10195,7 +10260,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st84", 9) == 0) { { -return dev_storage + 2404; +return dev_storage + 2532; } } @@ -10210,7 +10275,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st83", 9) == 0) { { -return dev_storage + 2403; +return dev_storage + 2531; } } @@ -10225,7 +10290,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st82", 9) == 0) { { -return dev_storage + 2402; +return dev_storage + 2530; } } @@ -10240,7 +10305,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st81", 9) == 0) { { -return dev_storage + 2401; +return dev_storage + 2529; } } @@ -10255,7 +10320,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st80", 9) == 0) { { -return dev_storage + 2400; +return dev_storage + 2528; } } @@ -10279,7 +10344,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st79", 9) == 0) { { -return dev_storage + 2399; +return dev_storage + 2527; } } @@ -10294,7 +10359,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st78", 9) == 0) { { -return dev_storage + 2398; +return dev_storage + 2526; } } @@ -10309,7 +10374,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st77", 9) == 0) { { -return dev_storage + 2397; +return dev_storage + 2525; } } @@ -10324,7 +10389,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st76", 9) == 0) { { -return dev_storage + 2396; +return dev_storage + 2524; } } @@ -10339,7 +10404,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st75", 9) == 0) { { -return dev_storage + 2395; +return dev_storage + 2523; } } @@ -10354,7 +10419,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st74", 9) == 0) { { -return dev_storage + 2394; +return dev_storage + 2522; } } @@ -10369,7 +10434,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st73", 9) == 0) { { -return dev_storage + 2393; +return dev_storage + 2521; } } @@ -10384,7 +10449,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st72", 9) == 0) { { -return dev_storage + 2392; +return dev_storage + 2520; } } @@ -10399,7 +10464,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st71", 9) == 0) { { -return dev_storage + 2391; +return dev_storage + 2519; } } @@ -10414,7 +10479,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st70", 9) == 0) { { -return dev_storage + 2390; +return dev_storage + 2518; } } @@ -10438,7 +10503,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st69", 9) == 0) { { -return dev_storage + 2389; +return dev_storage + 2517; } } @@ -10453,7 +10518,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st68", 9) == 0) { { -return dev_storage + 2388; +return dev_storage + 2516; } } @@ -10468,7 +10533,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st67", 9) == 0) { { -return dev_storage + 2387; +return dev_storage + 2515; } } @@ -10483,7 +10548,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st66", 9) == 0) { { -return dev_storage + 2386; +return dev_storage + 2514; } } @@ -10498,7 +10563,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st65", 9) == 0) { { -return dev_storage + 2385; +return dev_storage + 2513; } } @@ -10513,7 +10578,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st64", 9) == 0) { { -return dev_storage + 2384; +return dev_storage + 2512; } } @@ -10528,7 +10593,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st63", 9) == 0) { { -return dev_storage + 2383; +return dev_storage + 2511; } } @@ -10543,7 +10608,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st62", 9) == 0) { { -return dev_storage + 2382; +return dev_storage + 2510; } } @@ -10558,7 +10623,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st61", 9) == 0) { { -return dev_storage + 2381; +return dev_storage + 2509; } } @@ -10573,7 +10638,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st60", 9) == 0) { { -return dev_storage + 2380; +return dev_storage + 2508; } } @@ -10597,7 +10662,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st59", 9) == 0) { { -return dev_storage + 2379; +return dev_storage + 2507; } } @@ -10612,7 +10677,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st58", 9) == 0) { { -return dev_storage + 2378; +return dev_storage + 2506; } } @@ -10627,7 +10692,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st57", 9) == 0) { { -return dev_storage + 2377; +return dev_storage + 2505; } } @@ -10642,7 +10707,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st56", 9) == 0) { { -return dev_storage + 2376; +return dev_storage + 2504; } } @@ -10657,7 +10722,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st55", 9) == 0) { { -return dev_storage + 2375; +return dev_storage + 2503; } } @@ -10672,7 +10737,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st54", 9) == 0) { { -return dev_storage + 2374; +return dev_storage + 2502; } } @@ -10687,7 +10752,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st53", 9) == 0) { { -return dev_storage + 2373; +return dev_storage + 2501; } } @@ -10702,7 +10767,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st52", 9) == 0) { { -return dev_storage + 2372; +return dev_storage + 2500; } } @@ -10717,7 +10782,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st51", 9) == 0) { { -return dev_storage + 2371; +return dev_storage + 2499; } } @@ -10732,7 +10797,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st50", 9) == 0) { { -return dev_storage + 2370; +return dev_storage + 2498; } } @@ -10756,7 +10821,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st49", 9) == 0) { { -return dev_storage + 2369; +return dev_storage + 2497; } } @@ -10771,7 +10836,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st48", 9) == 0) { { -return dev_storage + 2368; +return dev_storage + 2496; } } @@ -10786,7 +10851,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st47", 9) == 0) { { -return dev_storage + 2367; +return dev_storage + 2495; } } @@ -10801,7 +10866,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st46", 9) == 0) { { -return dev_storage + 2366; +return dev_storage + 2494; } } @@ -10816,7 +10881,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st45", 9) == 0) { { -return dev_storage + 2365; +return dev_storage + 2493; } } @@ -10831,7 +10896,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st44", 9) == 0) { { -return dev_storage + 2364; +return dev_storage + 2492; } } @@ -10846,7 +10911,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st43", 9) == 0) { { -return dev_storage + 2363; +return dev_storage + 2491; } } @@ -10861,7 +10926,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st42", 9) == 0) { { -return dev_storage + 2362; +return dev_storage + 2490; } } @@ -10876,7 +10941,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st41", 9) == 0) { { -return dev_storage + 2361; +return dev_storage + 2489; } } @@ -10891,7 +10956,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st40", 9) == 0) { { -return dev_storage + 2360; +return dev_storage + 2488; } } @@ -10915,7 +10980,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st39", 9) == 0) { { -return dev_storage + 2359; +return dev_storage + 2487; } } @@ -10930,7 +10995,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st38", 9) == 0) { { -return dev_storage + 2358; +return dev_storage + 2486; } } @@ -10945,7 +11010,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st37", 9) == 0) { { -return dev_storage + 2357; +return dev_storage + 2485; } } @@ -10960,7 +11025,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st36", 9) == 0) { { -return dev_storage + 2356; +return dev_storage + 2484; } } @@ -10975,7 +11040,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st35", 9) == 0) { { -return dev_storage + 2355; +return dev_storage + 2483; } } @@ -10990,7 +11055,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st34", 9) == 0) { { -return dev_storage + 2354; +return dev_storage + 2482; } } @@ -11005,7 +11070,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st33", 9) == 0) { { -return dev_storage + 2353; +return dev_storage + 2481; } } @@ -11020,7 +11085,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st32", 9) == 0) { { -return dev_storage + 2352; +return dev_storage + 2480; } } @@ -11035,7 +11100,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st31", 9) == 0) { { -return dev_storage + 2351; +return dev_storage + 2479; } } @@ -11050,7 +11115,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st30", 9) == 0) { { -return dev_storage + 2350; +return dev_storage + 2478; } } @@ -11074,7 +11139,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st29", 9) == 0) { { -return dev_storage + 2349; +return dev_storage + 2477; } } @@ -11089,7 +11154,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st28", 9) == 0) { { -return dev_storage + 2348; +return dev_storage + 2476; } } @@ -11104,7 +11169,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st27", 9) == 0) { { -return dev_storage + 2347; +return dev_storage + 2475; } } @@ -11119,7 +11184,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st26", 9) == 0) { { -return dev_storage + 2346; +return dev_storage + 2474; } } @@ -11134,7 +11199,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st25", 9) == 0) { { -return dev_storage + 2345; +return dev_storage + 2473; } } @@ -11149,7 +11214,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st24", 9) == 0) { { -return dev_storage + 2344; +return dev_storage + 2472; } } @@ -11164,7 +11229,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st23", 9) == 0) { { -return dev_storage + 2343; +return dev_storage + 2471; } } @@ -11179,7 +11244,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st22", 9) == 0) { { -return dev_storage + 2342; +return dev_storage + 2470; } } @@ -11194,7 +11259,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st21", 9) == 0) { { -return dev_storage + 2341; +return dev_storage + 2469; } } @@ -11209,7 +11274,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st20", 9) == 0) { { -return dev_storage + 2340; +return dev_storage + 2468; } } @@ -11233,7 +11298,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st19", 9) == 0) { { -return dev_storage + 2339; +return dev_storage + 2467; } } @@ -11248,7 +11313,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st18", 9) == 0) { { -return dev_storage + 2338; +return dev_storage + 2466; } } @@ -11263,7 +11328,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st17", 9) == 0) { { -return dev_storage + 2337; +return dev_storage + 2465; } } @@ -11278,7 +11343,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st16", 9) == 0) { { -return dev_storage + 2336; +return dev_storage + 2464; } } @@ -11296,7 +11361,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st15", 9) == 0) { { -return dev_storage + 2335; +return dev_storage + 2463; } } @@ -11311,7 +11376,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr15", 9) == 0) { { -return dev_storage + 2319; +return dev_storage + 2447; } } @@ -11350,7 +11415,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st14", 9) == 0) { { -return dev_storage + 2334; +return dev_storage + 2462; } } @@ -11365,7 +11430,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr14", 9) == 0) { { -return dev_storage + 2318; +return dev_storage + 2446; } } @@ -11404,7 +11469,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st13", 9) == 0) { { -return dev_storage + 2333; +return dev_storage + 2461; } } @@ -11419,7 +11484,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr13", 9) == 0) { { -return dev_storage + 2317; +return dev_storage + 2445; } } @@ -11458,7 +11523,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st12", 9) == 0) { { -return dev_storage + 2332; +return dev_storage + 2460; } } @@ -11473,7 +11538,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr12", 9) == 0) { { -return dev_storage + 2316; +return dev_storage + 2444; } } @@ -11512,7 +11577,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st11", 9) == 0) { { -return dev_storage + 2331; +return dev_storage + 2459; } } @@ -11527,7 +11592,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr11", 9) == 0) { { -return dev_storage + 2315; +return dev_storage + 2443; } } @@ -11566,7 +11631,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st10", 9) == 0) { { -return dev_storage + 2330; +return dev_storage + 2458; } } @@ -11581,7 +11646,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr10", 9) == 0) { { -return dev_storage + 2314; +return dev_storage + 2442; } } @@ -11653,7 +11718,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz9", 10) == 0) { { -return dev_storage + 1913; +return dev_storage + 2041; } } @@ -11668,7 +11733,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz9", 10) == 0) { { -return dev_storage + 1497; +return dev_storage + 1625; } } @@ -11683,7 +11748,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz9", 10) == 0) { { -return dev_storage + 1081; +return dev_storage + 1209; } } @@ -11707,7 +11772,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy9", 10) == 0) { { -return dev_storage + 1898; +return dev_storage + 2026; } } @@ -11722,7 +11787,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby9", 10) == 0) { { -return dev_storage + 1482; +return dev_storage + 1610; } } @@ -11737,7 +11802,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday9", 10) == 0) { { -return dev_storage + 1066; +return dev_storage + 1194; } } @@ -11761,7 +11826,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx9", 10) == 0) { { -return dev_storage + 2297; +return dev_storage + 2425; } } @@ -11776,7 +11841,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx9", 10) == 0) { { -return dev_storage + 1883; +return dev_storage + 2011; } } @@ -11791,7 +11856,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx9", 10) == 0) { { -return dev_storage + 1467; +return dev_storage + 1595; } } @@ -11806,7 +11871,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax9", 10) == 0) { { -return dev_storage + 1051; +return dev_storage + 1179; } } @@ -11830,7 +11895,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw9", 10) == 0) { { -return dev_storage + 2282; +return dev_storage + 2410; } } @@ -11845,7 +11910,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw9", 10) == 0) { { -return dev_storage + 1868; +return dev_storage + 1996; } } @@ -11860,7 +11925,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw9", 10) == 0) { { -return dev_storage + 1452; +return dev_storage + 1580; } } @@ -11875,7 +11940,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw9", 10) == 0) { { -return dev_storage + 1036; +return dev_storage + 1164; } } @@ -11899,7 +11964,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv9", 10) == 0) { { -return dev_storage + 2267; +return dev_storage + 2395; } } @@ -11914,7 +11979,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv9", 10) == 0) { { -return dev_storage + 1853; +return dev_storage + 1981; } } @@ -11929,7 +11994,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv9", 10) == 0) { { -return dev_storage + 1437; +return dev_storage + 1565; } } @@ -11944,7 +12009,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav9", 10) == 0) { { -return dev_storage + 1021; +return dev_storage + 1149; } } @@ -11968,7 +12033,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu9", 10) == 0) { { -return dev_storage + 2252; +return dev_storage + 2380; } } @@ -11983,7 +12048,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu9", 10) == 0) { { -return dev_storage + 1838; +return dev_storage + 1966; } } @@ -11998,7 +12063,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu9", 10) == 0) { { -return dev_storage + 1422; +return dev_storage + 1550; } } @@ -12013,7 +12078,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau9", 10) == 0) { { -return dev_storage + 1006; +return dev_storage + 1134; } } @@ -12037,7 +12102,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt9", 10) == 0) { { -return dev_storage + 2237; +return dev_storage + 2365; } } @@ -12052,7 +12117,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct9", 10) == 0) { { -return dev_storage + 1823; +return dev_storage + 1951; } } @@ -12067,7 +12132,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt9", 10) == 0) { { -return dev_storage + 1407; +return dev_storage + 1535; } } @@ -12082,7 +12147,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat9", 10) == 0) { { -return dev_storage + 991; +return dev_storage + 1119; } } @@ -12121,7 +12186,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds9", 10) == 0) { { -return dev_storage + 2222; +return dev_storage + 2350; } } @@ -12136,7 +12201,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs9", 10) == 0) { { -return dev_storage + 1808; +return dev_storage + 1936; } } @@ -12151,7 +12216,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs9", 10) == 0) { { -return dev_storage + 1392; +return dev_storage + 1520; } } @@ -12166,7 +12231,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas9", 10) == 0) { { -return dev_storage + 976; +return dev_storage + 1104; } } @@ -12190,7 +12255,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr9", 10) == 0) { { -return dev_storage + 2207; +return dev_storage + 2335; } } @@ -12205,7 +12270,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr9", 10) == 0) { { -return dev_storage + 1793; +return dev_storage + 1921; } } @@ -12220,7 +12285,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr9", 10) == 0) { { -return dev_storage + 1377; +return dev_storage + 1505; } } @@ -12235,7 +12300,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar9", 10) == 0) { { -return dev_storage + 961; +return dev_storage + 1089; } } @@ -12259,7 +12324,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq9", 10) == 0) { { -return dev_storage + 2192; +return dev_storage + 2320; } } @@ -12274,7 +12339,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq9", 10) == 0) { { -return dev_storage + 1778; +return dev_storage + 1906; } } @@ -12289,7 +12354,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq9", 10) == 0) { { -return dev_storage + 1362; +return dev_storage + 1490; } } @@ -12304,7 +12369,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq9", 10) == 0) { { -return dev_storage + 946; +return dev_storage + 1074; } } @@ -12328,7 +12393,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp9", 10) == 0) { { -return dev_storage + 2177; +return dev_storage + 2305; } } @@ -12343,7 +12408,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp9", 10) == 0) { { -return dev_storage + 1763; +return dev_storage + 1891; } } @@ -12358,7 +12423,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp9", 10) == 0) { { -return dev_storage + 1347; +return dev_storage + 1475; } } @@ -12373,7 +12438,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap9", 10) == 0) { { -return dev_storage + 931; +return dev_storage + 1059; } } @@ -12397,7 +12462,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo9", 10) == 0) { { -return dev_storage + 2162; +return dev_storage + 2290; } } @@ -12412,7 +12477,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco9", 10) == 0) { { -return dev_storage + 1748; +return dev_storage + 1876; } } @@ -12427,7 +12492,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo9", 10) == 0) { { -return dev_storage + 1332; +return dev_storage + 1460; } } @@ -12442,7 +12507,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao9", 10) == 0) { { -return dev_storage + 916; +return dev_storage + 1044; } } @@ -12466,7 +12531,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn9", 10) == 0) { { -return dev_storage + 2147; +return dev_storage + 2275; } } @@ -12481,7 +12546,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn9", 10) == 0) { { -return dev_storage + 1733; +return dev_storage + 1861; } } @@ -12496,7 +12561,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn9", 10) == 0) { { -return dev_storage + 1317; +return dev_storage + 1445; } } @@ -12511,7 +12576,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan9", 10) == 0) { { -return dev_storage + 901; +return dev_storage + 1029; } } @@ -12531,11 +12596,26 @@ return NULL; case 'm': switch (KR_keyword [7]) { + case 'y': + if (strncmp (KR_keyword, "/dev/ptym9", 10) == 0) + { +{ +return dev_storage + 312; + +} + } + else + { +{ +return NULL; + +} + } case 'd': if (strncmp (KR_keyword, "/dev/sddm9", 10) == 0) { { -return dev_storage + 2132; +return dev_storage + 2260; } } @@ -12550,7 +12630,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm9", 10) == 0) { { -return dev_storage + 1718; +return dev_storage + 1846; } } @@ -12565,7 +12645,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm9", 10) == 0) { { -return dev_storage + 1302; +return dev_storage + 1430; } } @@ -12580,7 +12660,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam9", 10) == 0) { { -return dev_storage + 886; +return dev_storage + 1014; } } @@ -12604,7 +12684,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl9", 10) == 0) { { -return dev_storage + 2117; +return dev_storage + 2245; } } @@ -12619,7 +12699,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl9", 10) == 0) { { -return dev_storage + 1703; +return dev_storage + 1831; } } @@ -12634,7 +12714,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl9", 10) == 0) { { -return dev_storage + 1287; +return dev_storage + 1415; } } @@ -12649,7 +12729,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal9", 10) == 0) { { -return dev_storage + 871; +return dev_storage + 999; } } @@ -12673,7 +12753,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk9", 10) == 0) { { -return dev_storage + 2102; +return dev_storage + 2230; } } @@ -12688,7 +12768,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck9", 10) == 0) { { -return dev_storage + 1688; +return dev_storage + 1816; } } @@ -12703,7 +12783,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk9", 10) == 0) { { -return dev_storage + 1272; +return dev_storage + 1400; } } @@ -12718,7 +12798,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak9", 10) == 0) { { -return dev_storage + 856; +return dev_storage + 984; } } @@ -12742,7 +12822,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj9", 10) == 0) { { -return dev_storage + 2087; +return dev_storage + 2215; } } @@ -12757,7 +12837,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj9", 10) == 0) { { -return dev_storage + 1673; +return dev_storage + 1801; } } @@ -12772,7 +12852,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj9", 10) == 0) { { -return dev_storage + 1257; +return dev_storage + 1385; } } @@ -12787,7 +12867,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj9", 10) == 0) { { -return dev_storage + 841; +return dev_storage + 969; } } @@ -12811,7 +12891,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi9", 10) == 0) { { -return dev_storage + 2072; +return dev_storage + 2200; } } @@ -12826,7 +12906,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci9", 10) == 0) { { -return dev_storage + 1658; +return dev_storage + 1786; } } @@ -12841,7 +12921,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi9", 10) == 0) { { -return dev_storage + 1242; +return dev_storage + 1370; } } @@ -12856,7 +12936,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai9", 10) == 0) { { -return dev_storage + 826; +return dev_storage + 954; } } @@ -12880,7 +12960,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh9", 10) == 0) { { -return dev_storage + 2057; +return dev_storage + 2185; } } @@ -12895,7 +12975,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch9", 10) == 0) { { -return dev_storage + 1643; +return dev_storage + 1771; } } @@ -12910,7 +12990,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh9", 10) == 0) { { -return dev_storage + 1227; +return dev_storage + 1355; } } @@ -12925,7 +13005,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah9", 10) == 0) { { -return dev_storage + 811; +return dev_storage + 939; } } @@ -12949,7 +13029,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg9", 10) == 0) { { -return dev_storage + 2042; +return dev_storage + 2170; } } @@ -12964,7 +13044,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg9", 10) == 0) { { -return dev_storage + 1628; +return dev_storage + 1756; } } @@ -12979,7 +13059,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg9", 10) == 0) { { -return dev_storage + 1212; +return dev_storage + 1340; } } @@ -12994,7 +13074,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag9", 10) == 0) { { -return dev_storage + 796; +return dev_storage + 924; } } @@ -13018,7 +13098,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf9", 10) == 0) { { -return dev_storage + 2027; +return dev_storage + 2155; } } @@ -13033,7 +13113,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf9", 10) == 0) { { -return dev_storage + 1613; +return dev_storage + 1741; } } @@ -13048,7 +13128,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf9", 10) == 0) { { -return dev_storage + 1197; +return dev_storage + 1325; } } @@ -13063,7 +13143,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf9", 10) == 0) { { -return dev_storage + 781; +return dev_storage + 909; } } @@ -13087,7 +13167,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde9", 10) == 0) { { -return dev_storage + 2012; +return dev_storage + 2140; } } @@ -13102,7 +13182,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce9", 10) == 0) { { -return dev_storage + 1598; +return dev_storage + 1726; } } @@ -13117,7 +13197,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe9", 10) == 0) { { -return dev_storage + 1182; +return dev_storage + 1310; } } @@ -13132,7 +13212,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae9", 10) == 0) { { -return dev_storage + 766; +return dev_storage + 894; } } @@ -13156,7 +13236,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd9", 10) == 0) { { -return dev_storage + 1997; +return dev_storage + 2125; } } @@ -13171,7 +13251,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd9", 10) == 0) { { -return dev_storage + 1583; +return dev_storage + 1711; } } @@ -13186,7 +13266,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd9", 10) == 0) { { -return dev_storage + 1167; +return dev_storage + 1295; } } @@ -13201,7 +13281,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad9", 10) == 0) { { -return dev_storage + 751; +return dev_storage + 879; } } @@ -13225,7 +13305,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc9", 10) == 0) { { -return dev_storage + 1982; +return dev_storage + 2110; } } @@ -13240,7 +13320,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc9", 10) == 0) { { -return dev_storage + 1568; +return dev_storage + 1696; } } @@ -13255,7 +13335,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc9", 10) == 0) { { -return dev_storage + 1152; +return dev_storage + 1280; } } @@ -13270,7 +13350,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac9", 10) == 0) { { -return dev_storage + 736; +return dev_storage + 864; } } @@ -13294,7 +13374,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb9", 10) == 0) { { -return dev_storage + 1967; +return dev_storage + 2095; } } @@ -13309,7 +13389,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb9", 10) == 0) { { -return dev_storage + 1553; +return dev_storage + 1681; } } @@ -13324,7 +13404,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb9", 10) == 0) { { -return dev_storage + 1137; +return dev_storage + 1265; } } @@ -13339,7 +13419,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab9", 10) == 0) { { -return dev_storage + 721; +return dev_storage + 849; } } @@ -13363,7 +13443,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda9", 10) == 0) { { -return dev_storage + 1952; +return dev_storage + 2080; } } @@ -13378,7 +13458,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca9", 10) == 0) { { -return dev_storage + 1538; +return dev_storage + 1666; } } @@ -13393,7 +13473,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba9", 10) == 0) { { -return dev_storage + 1122; +return dev_storage + 1250; } } @@ -13408,7 +13488,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa9", 10) == 0) { { -return dev_storage + 706; +return dev_storage + 834; } } @@ -13429,7 +13509,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS9", 10) == 0) { { -return dev_storage + 2522; +return dev_storage + 2586; } } @@ -13503,11 +13583,11 @@ return NULL; case '5': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty59", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty59", 10) == 0) { { -return dev_storage + 2508; +return dev_storage + 298; } } @@ -13542,11 +13622,11 @@ return NULL; case '4': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty49", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty49", 10) == 0) { { -return dev_storage + 2498; +return dev_storage + 288; } } @@ -13581,11 +13661,11 @@ return NULL; case '3': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty39", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty39", 10) == 0) { { -return dev_storage + 2488; +return dev_storage + 278; } } @@ -13620,11 +13700,11 @@ return NULL; case '2': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty29", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty29", 10) == 0) { { -return dev_storage + 2478; +return dev_storage + 268; } } @@ -13659,11 +13739,11 @@ return NULL; case '1': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty19", 10) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/st119", 10) == 0) { { -return dev_storage + 2468; +return dev_storage + 2567; } } @@ -13674,11 +13754,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/st119", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty19", 10) == 0) { { -return dev_storage + 2439; +return dev_storage + 258; } } @@ -13714,7 +13794,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st109", 10) == 0) { { -return dev_storage + 2429; +return dev_storage + 2557; } } @@ -13741,7 +13821,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz8", 10) == 0) { { -return dev_storage + 1912; +return dev_storage + 2040; } } @@ -13756,7 +13836,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz8", 10) == 0) { { -return dev_storage + 1496; +return dev_storage + 1624; } } @@ -13771,7 +13851,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz8", 10) == 0) { { -return dev_storage + 1080; +return dev_storage + 1208; } } @@ -13795,7 +13875,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy8", 10) == 0) { { -return dev_storage + 1897; +return dev_storage + 2025; } } @@ -13810,7 +13890,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby8", 10) == 0) { { -return dev_storage + 1481; +return dev_storage + 1609; } } @@ -13825,7 +13905,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday8", 10) == 0) { { -return dev_storage + 1065; +return dev_storage + 1193; } } @@ -13849,7 +13929,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx8", 10) == 0) { { -return dev_storage + 2296; +return dev_storage + 2424; } } @@ -13864,7 +13944,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx8", 10) == 0) { { -return dev_storage + 1882; +return dev_storage + 2010; } } @@ -13879,7 +13959,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx8", 10) == 0) { { -return dev_storage + 1466; +return dev_storage + 1594; } } @@ -13894,7 +13974,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax8", 10) == 0) { { -return dev_storage + 1050; +return dev_storage + 1178; } } @@ -13918,7 +13998,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw8", 10) == 0) { { -return dev_storage + 2281; +return dev_storage + 2409; } } @@ -13933,7 +14013,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw8", 10) == 0) { { -return dev_storage + 1867; +return dev_storage + 1995; } } @@ -13948,7 +14028,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw8", 10) == 0) { { -return dev_storage + 1451; +return dev_storage + 1579; } } @@ -13963,7 +14043,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw8", 10) == 0) { { -return dev_storage + 1035; +return dev_storage + 1163; } } @@ -13987,7 +14067,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv8", 10) == 0) { { -return dev_storage + 2266; +return dev_storage + 2394; } } @@ -14002,7 +14082,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv8", 10) == 0) { { -return dev_storage + 1852; +return dev_storage + 1980; } } @@ -14017,7 +14097,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv8", 10) == 0) { { -return dev_storage + 1436; +return dev_storage + 1564; } } @@ -14032,7 +14112,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav8", 10) == 0) { { -return dev_storage + 1020; +return dev_storage + 1148; } } @@ -14056,7 +14136,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu8", 10) == 0) { { -return dev_storage + 2251; +return dev_storage + 2379; } } @@ -14071,7 +14151,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu8", 10) == 0) { { -return dev_storage + 1837; +return dev_storage + 1965; } } @@ -14086,7 +14166,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu8", 10) == 0) { { -return dev_storage + 1421; +return dev_storage + 1549; } } @@ -14101,7 +14181,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau8", 10) == 0) { { -return dev_storage + 1005; +return dev_storage + 1133; } } @@ -14125,7 +14205,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt8", 10) == 0) { { -return dev_storage + 2236; +return dev_storage + 2364; } } @@ -14140,7 +14220,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct8", 10) == 0) { { -return dev_storage + 1822; +return dev_storage + 1950; } } @@ -14155,7 +14235,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt8", 10) == 0) { { -return dev_storage + 1406; +return dev_storage + 1534; } } @@ -14170,7 +14250,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat8", 10) == 0) { { -return dev_storage + 990; +return dev_storage + 1118; } } @@ -14209,7 +14289,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds8", 10) == 0) { { -return dev_storage + 2221; +return dev_storage + 2349; } } @@ -14224,7 +14304,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs8", 10) == 0) { { -return dev_storage + 1807; +return dev_storage + 1935; } } @@ -14239,7 +14319,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs8", 10) == 0) { { -return dev_storage + 1391; +return dev_storage + 1519; } } @@ -14254,7 +14334,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas8", 10) == 0) { { -return dev_storage + 975; +return dev_storage + 1103; } } @@ -14278,7 +14358,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr8", 10) == 0) { { -return dev_storage + 2206; +return dev_storage + 2334; } } @@ -14293,7 +14373,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr8", 10) == 0) { { -return dev_storage + 1792; +return dev_storage + 1920; } } @@ -14308,7 +14388,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr8", 10) == 0) { { -return dev_storage + 1376; +return dev_storage + 1504; } } @@ -14323,7 +14403,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar8", 10) == 0) { { -return dev_storage + 960; +return dev_storage + 1088; } } @@ -14347,7 +14427,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq8", 10) == 0) { { -return dev_storage + 2191; +return dev_storage + 2319; } } @@ -14362,7 +14442,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq8", 10) == 0) { { -return dev_storage + 1777; +return dev_storage + 1905; } } @@ -14377,7 +14457,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq8", 10) == 0) { { -return dev_storage + 1361; +return dev_storage + 1489; } } @@ -14392,7 +14472,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq8", 10) == 0) { { -return dev_storage + 945; +return dev_storage + 1073; } } @@ -14416,7 +14496,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp8", 10) == 0) { { -return dev_storage + 2176; +return dev_storage + 2304; } } @@ -14431,7 +14511,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp8", 10) == 0) { { -return dev_storage + 1762; +return dev_storage + 1890; } } @@ -14446,7 +14526,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp8", 10) == 0) { { -return dev_storage + 1346; +return dev_storage + 1474; } } @@ -14461,7 +14541,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap8", 10) == 0) { { -return dev_storage + 930; +return dev_storage + 1058; } } @@ -14485,7 +14565,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo8", 10) == 0) { { -return dev_storage + 2161; +return dev_storage + 2289; } } @@ -14500,7 +14580,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco8", 10) == 0) { { -return dev_storage + 1747; +return dev_storage + 1875; } } @@ -14515,7 +14595,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo8", 10) == 0) { { -return dev_storage + 1331; +return dev_storage + 1459; } } @@ -14530,7 +14610,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao8", 10) == 0) { { -return dev_storage + 915; +return dev_storage + 1043; } } @@ -14554,7 +14634,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn8", 10) == 0) { { -return dev_storage + 2146; +return dev_storage + 2274; } } @@ -14569,7 +14649,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn8", 10) == 0) { { -return dev_storage + 1732; +return dev_storage + 1860; } } @@ -14584,7 +14664,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn8", 10) == 0) { { -return dev_storage + 1316; +return dev_storage + 1444; } } @@ -14599,7 +14679,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan8", 10) == 0) { { -return dev_storage + 900; +return dev_storage + 1028; } } @@ -14619,11 +14699,26 @@ return NULL; case 'm': switch (KR_keyword [7]) { + case 'y': + if (strncmp (KR_keyword, "/dev/ptym8", 10) == 0) + { +{ +return dev_storage + 311; + +} + } + else + { +{ +return NULL; + +} + } case 'd': if (strncmp (KR_keyword, "/dev/sddm8", 10) == 0) { { -return dev_storage + 2131; +return dev_storage + 2259; } } @@ -14638,7 +14733,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm8", 10) == 0) { { -return dev_storage + 1717; +return dev_storage + 1845; } } @@ -14653,7 +14748,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm8", 10) == 0) { { -return dev_storage + 1301; +return dev_storage + 1429; } } @@ -14668,7 +14763,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam8", 10) == 0) { { -return dev_storage + 885; +return dev_storage + 1013; } } @@ -14692,7 +14787,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl8", 10) == 0) { { -return dev_storage + 2116; +return dev_storage + 2244; } } @@ -14707,7 +14802,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl8", 10) == 0) { { -return dev_storage + 1702; +return dev_storage + 1830; } } @@ -14722,7 +14817,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl8", 10) == 0) { { -return dev_storage + 1286; +return dev_storage + 1414; } } @@ -14737,7 +14832,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal8", 10) == 0) { { -return dev_storage + 870; +return dev_storage + 998; } } @@ -14761,7 +14856,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk8", 10) == 0) { { -return dev_storage + 2101; +return dev_storage + 2229; } } @@ -14776,7 +14871,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck8", 10) == 0) { { -return dev_storage + 1687; +return dev_storage + 1815; } } @@ -14791,7 +14886,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk8", 10) == 0) { { -return dev_storage + 1271; +return dev_storage + 1399; } } @@ -14806,7 +14901,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak8", 10) == 0) { { -return dev_storage + 855; +return dev_storage + 983; } } @@ -14830,7 +14925,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj8", 10) == 0) { { -return dev_storage + 2086; +return dev_storage + 2214; } } @@ -14845,7 +14940,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj8", 10) == 0) { { -return dev_storage + 1672; +return dev_storage + 1800; } } @@ -14860,7 +14955,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj8", 10) == 0) { { -return dev_storage + 1256; +return dev_storage + 1384; } } @@ -14875,7 +14970,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj8", 10) == 0) { { -return dev_storage + 840; +return dev_storage + 968; } } @@ -14899,7 +14994,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi8", 10) == 0) { { -return dev_storage + 2071; +return dev_storage + 2199; } } @@ -14914,7 +15009,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci8", 10) == 0) { { -return dev_storage + 1657; +return dev_storage + 1785; } } @@ -14929,7 +15024,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi8", 10) == 0) { { -return dev_storage + 1241; +return dev_storage + 1369; } } @@ -14944,7 +15039,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai8", 10) == 0) { { -return dev_storage + 825; +return dev_storage + 953; } } @@ -14968,7 +15063,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh8", 10) == 0) { { -return dev_storage + 2056; +return dev_storage + 2184; } } @@ -14983,7 +15078,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch8", 10) == 0) { { -return dev_storage + 1642; +return dev_storage + 1770; } } @@ -14998,7 +15093,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh8", 10) == 0) { { -return dev_storage + 1226; +return dev_storage + 1354; } } @@ -15013,7 +15108,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah8", 10) == 0) { { -return dev_storage + 810; +return dev_storage + 938; } } @@ -15037,7 +15132,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg8", 10) == 0) { { -return dev_storage + 2041; +return dev_storage + 2169; } } @@ -15052,7 +15147,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg8", 10) == 0) { { -return dev_storage + 1627; +return dev_storage + 1755; } } @@ -15067,7 +15162,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg8", 10) == 0) { { -return dev_storage + 1211; +return dev_storage + 1339; } } @@ -15082,7 +15177,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag8", 10) == 0) { { -return dev_storage + 795; +return dev_storage + 923; } } @@ -15106,7 +15201,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf8", 10) == 0) { { -return dev_storage + 2026; +return dev_storage + 2154; } } @@ -15121,7 +15216,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf8", 10) == 0) { { -return dev_storage + 1612; +return dev_storage + 1740; } } @@ -15136,7 +15231,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf8", 10) == 0) { { -return dev_storage + 1196; +return dev_storage + 1324; } } @@ -15151,7 +15246,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf8", 10) == 0) { { -return dev_storage + 780; +return dev_storage + 908; } } @@ -15175,7 +15270,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde8", 10) == 0) { { -return dev_storage + 2011; +return dev_storage + 2139; } } @@ -15190,7 +15285,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce8", 10) == 0) { { -return dev_storage + 1597; +return dev_storage + 1725; } } @@ -15205,7 +15300,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe8", 10) == 0) { { -return dev_storage + 1181; +return dev_storage + 1309; } } @@ -15220,7 +15315,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae8", 10) == 0) { { -return dev_storage + 765; +return dev_storage + 893; } } @@ -15244,7 +15339,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd8", 10) == 0) { { -return dev_storage + 1996; +return dev_storage + 2124; } } @@ -15259,7 +15354,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd8", 10) == 0) { { -return dev_storage + 1582; +return dev_storage + 1710; } } @@ -15274,7 +15369,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd8", 10) == 0) { { -return dev_storage + 1166; +return dev_storage + 1294; } } @@ -15289,7 +15384,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad8", 10) == 0) { { -return dev_storage + 750; +return dev_storage + 878; } } @@ -15313,7 +15408,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc8", 10) == 0) { { -return dev_storage + 1981; +return dev_storage + 2109; } } @@ -15328,7 +15423,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc8", 10) == 0) { { -return dev_storage + 1567; +return dev_storage + 1695; } } @@ -15343,7 +15438,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc8", 10) == 0) { { -return dev_storage + 1151; +return dev_storage + 1279; } } @@ -15358,7 +15453,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac8", 10) == 0) { { -return dev_storage + 735; +return dev_storage + 863; } } @@ -15382,7 +15477,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb8", 10) == 0) { { -return dev_storage + 1966; +return dev_storage + 2094; } } @@ -15397,7 +15492,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb8", 10) == 0) { { -return dev_storage + 1552; +return dev_storage + 1680; } } @@ -15412,7 +15507,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb8", 10) == 0) { { -return dev_storage + 1136; +return dev_storage + 1264; } } @@ -15427,7 +15522,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab8", 10) == 0) { { -return dev_storage + 720; +return dev_storage + 848; } } @@ -15451,7 +15546,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda8", 10) == 0) { { -return dev_storage + 1951; +return dev_storage + 2079; } } @@ -15466,7 +15561,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca8", 10) == 0) { { -return dev_storage + 1537; +return dev_storage + 1665; } } @@ -15481,7 +15576,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba8", 10) == 0) { { -return dev_storage + 1121; +return dev_storage + 1249; } } @@ -15496,7 +15591,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa8", 10) == 0) { { -return dev_storage + 705; +return dev_storage + 833; } } @@ -15517,7 +15612,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS8", 10) == 0) { { -return dev_storage + 2521; +return dev_storage + 2585; } } @@ -15591,11 +15686,11 @@ return NULL; case '5': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty58", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty58", 10) == 0) { { -return dev_storage + 2507; +return dev_storage + 297; } } @@ -15630,11 +15725,11 @@ return NULL; case '4': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty48", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty48", 10) == 0) { { -return dev_storage + 2497; +return dev_storage + 287; } } @@ -15669,11 +15764,11 @@ return NULL; case '3': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty38", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty38", 10) == 0) { { -return dev_storage + 2487; +return dev_storage + 277; } } @@ -15708,11 +15803,11 @@ return NULL; case '2': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty28", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty28", 10) == 0) { { -return dev_storage + 2477; +return dev_storage + 267; } } @@ -15747,11 +15842,11 @@ return NULL; case '1': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty18", 10) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/st118", 10) == 0) { { -return dev_storage + 2467; +return dev_storage + 2566; } } @@ -15762,11 +15857,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/st118", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty18", 10) == 0) { { -return dev_storage + 2438; +return dev_storage + 257; } } @@ -15802,7 +15897,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st108", 10) == 0) { { -return dev_storage + 2428; +return dev_storage + 2556; } } @@ -15829,7 +15924,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz7", 10) == 0) { { -return dev_storage + 1911; +return dev_storage + 2039; } } @@ -15844,7 +15939,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz7", 10) == 0) { { -return dev_storage + 1495; +return dev_storage + 1623; } } @@ -15859,7 +15954,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz7", 10) == 0) { { -return dev_storage + 1079; +return dev_storage + 1207; } } @@ -15883,7 +15978,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy7", 10) == 0) { { -return dev_storage + 1896; +return dev_storage + 2024; } } @@ -15898,7 +15993,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby7", 10) == 0) { { -return dev_storage + 1480; +return dev_storage + 1608; } } @@ -15913,7 +16008,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday7", 10) == 0) { { -return dev_storage + 1064; +return dev_storage + 1192; } } @@ -15937,7 +16032,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx7", 10) == 0) { { -return dev_storage + 2295; +return dev_storage + 2423; } } @@ -15952,7 +16047,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx7", 10) == 0) { { -return dev_storage + 1881; +return dev_storage + 2009; } } @@ -15967,7 +16062,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx7", 10) == 0) { { -return dev_storage + 1465; +return dev_storage + 1593; } } @@ -15982,7 +16077,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax7", 10) == 0) { { -return dev_storage + 1049; +return dev_storage + 1177; } } @@ -16006,7 +16101,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw7", 10) == 0) { { -return dev_storage + 2280; +return dev_storage + 2408; } } @@ -16021,7 +16116,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw7", 10) == 0) { { -return dev_storage + 1866; +return dev_storage + 1994; } } @@ -16036,7 +16131,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw7", 10) == 0) { { -return dev_storage + 1450; +return dev_storage + 1578; } } @@ -16051,7 +16146,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw7", 10) == 0) { { -return dev_storage + 1034; +return dev_storage + 1162; } } @@ -16075,7 +16170,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv7", 10) == 0) { { -return dev_storage + 2265; +return dev_storage + 2393; } } @@ -16090,7 +16185,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv7", 10) == 0) { { -return dev_storage + 1851; +return dev_storage + 1979; } } @@ -16105,7 +16200,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv7", 10) == 0) { { -return dev_storage + 1435; +return dev_storage + 1563; } } @@ -16120,7 +16215,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav7", 10) == 0) { { -return dev_storage + 1019; +return dev_storage + 1147; } } @@ -16144,7 +16239,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu7", 10) == 0) { { -return dev_storage + 2250; +return dev_storage + 2378; } } @@ -16159,7 +16254,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu7", 10) == 0) { { -return dev_storage + 1836; +return dev_storage + 1964; } } @@ -16174,7 +16269,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu7", 10) == 0) { { -return dev_storage + 1420; +return dev_storage + 1548; } } @@ -16189,7 +16284,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau7", 10) == 0) { { -return dev_storage + 1004; +return dev_storage + 1132; } } @@ -16213,7 +16308,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt7", 10) == 0) { { -return dev_storage + 2235; +return dev_storage + 2363; } } @@ -16228,7 +16323,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct7", 10) == 0) { { -return dev_storage + 1821; +return dev_storage + 1949; } } @@ -16243,7 +16338,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt7", 10) == 0) { { -return dev_storage + 1405; +return dev_storage + 1533; } } @@ -16258,7 +16353,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat7", 10) == 0) { { -return dev_storage + 989; +return dev_storage + 1117; } } @@ -16297,7 +16392,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds7", 10) == 0) { { -return dev_storage + 2220; +return dev_storage + 2348; } } @@ -16312,7 +16407,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs7", 10) == 0) { { -return dev_storage + 1806; +return dev_storage + 1934; } } @@ -16327,7 +16422,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs7", 10) == 0) { { -return dev_storage + 1390; +return dev_storage + 1518; } } @@ -16342,7 +16437,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas7", 10) == 0) { { -return dev_storage + 974; +return dev_storage + 1102; } } @@ -16366,7 +16461,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr7", 10) == 0) { { -return dev_storage + 2205; +return dev_storage + 2333; } } @@ -16381,7 +16476,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr7", 10) == 0) { { -return dev_storage + 1791; +return dev_storage + 1919; } } @@ -16396,7 +16491,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr7", 10) == 0) { { -return dev_storage + 1375; +return dev_storage + 1503; } } @@ -16411,7 +16506,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar7", 10) == 0) { { -return dev_storage + 959; +return dev_storage + 1087; } } @@ -16435,7 +16530,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq7", 10) == 0) { { -return dev_storage + 2190; +return dev_storage + 2318; } } @@ -16450,7 +16545,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq7", 10) == 0) { { -return dev_storage + 1776; +return dev_storage + 1904; } } @@ -16465,7 +16560,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq7", 10) == 0) { { -return dev_storage + 1360; +return dev_storage + 1488; } } @@ -16480,7 +16575,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq7", 10) == 0) { { -return dev_storage + 944; +return dev_storage + 1072; } } @@ -16504,7 +16599,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp7", 10) == 0) { { -return dev_storage + 2175; +return dev_storage + 2303; } } @@ -16519,7 +16614,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp7", 10) == 0) { { -return dev_storage + 1761; +return dev_storage + 1889; } } @@ -16534,7 +16629,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp7", 10) == 0) { { -return dev_storage + 1345; +return dev_storage + 1473; } } @@ -16549,7 +16644,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap7", 10) == 0) { { -return dev_storage + 929; +return dev_storage + 1057; } } @@ -16573,7 +16668,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo7", 10) == 0) { { -return dev_storage + 2160; +return dev_storage + 2288; } } @@ -16588,7 +16683,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco7", 10) == 0) { { -return dev_storage + 1746; +return dev_storage + 1874; } } @@ -16603,7 +16698,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo7", 10) == 0) { { -return dev_storage + 1330; +return dev_storage + 1458; } } @@ -16618,7 +16713,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao7", 10) == 0) { { -return dev_storage + 914; +return dev_storage + 1042; } } @@ -16642,7 +16737,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn7", 10) == 0) { { -return dev_storage + 2145; +return dev_storage + 2273; } } @@ -16657,7 +16752,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn7", 10) == 0) { { -return dev_storage + 1731; +return dev_storage + 1859; } } @@ -16672,7 +16767,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn7", 10) == 0) { { -return dev_storage + 1315; +return dev_storage + 1443; } } @@ -16687,7 +16782,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan7", 10) == 0) { { -return dev_storage + 899; +return dev_storage + 1027; } } @@ -16707,11 +16802,26 @@ return NULL; case 'm': switch (KR_keyword [7]) { + case 'y': + if (strncmp (KR_keyword, "/dev/ptym7", 10) == 0) + { +{ +return dev_storage + 310; + +} + } + else + { +{ +return NULL; + +} + } case 'd': if (strncmp (KR_keyword, "/dev/sddm7", 10) == 0) { { -return dev_storage + 2130; +return dev_storage + 2258; } } @@ -16726,7 +16836,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm7", 10) == 0) { { -return dev_storage + 1716; +return dev_storage + 1844; } } @@ -16741,7 +16851,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm7", 10) == 0) { { -return dev_storage + 1300; +return dev_storage + 1428; } } @@ -16756,7 +16866,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam7", 10) == 0) { { -return dev_storage + 884; +return dev_storage + 1012; } } @@ -16780,7 +16890,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl7", 10) == 0) { { -return dev_storage + 2115; +return dev_storage + 2243; } } @@ -16795,7 +16905,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl7", 10) == 0) { { -return dev_storage + 1701; +return dev_storage + 1829; } } @@ -16810,7 +16920,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl7", 10) == 0) { { -return dev_storage + 1285; +return dev_storage + 1413; } } @@ -16825,7 +16935,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal7", 10) == 0) { { -return dev_storage + 869; +return dev_storage + 997; } } @@ -16849,7 +16959,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk7", 10) == 0) { { -return dev_storage + 2100; +return dev_storage + 2228; } } @@ -16864,7 +16974,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck7", 10) == 0) { { -return dev_storage + 1686; +return dev_storage + 1814; } } @@ -16879,7 +16989,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk7", 10) == 0) { { -return dev_storage + 1270; +return dev_storage + 1398; } } @@ -16894,7 +17004,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak7", 10) == 0) { { -return dev_storage + 854; +return dev_storage + 982; } } @@ -16918,7 +17028,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj7", 10) == 0) { { -return dev_storage + 2085; +return dev_storage + 2213; } } @@ -16933,7 +17043,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj7", 10) == 0) { { -return dev_storage + 1671; +return dev_storage + 1799; } } @@ -16948,7 +17058,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj7", 10) == 0) { { -return dev_storage + 1255; +return dev_storage + 1383; } } @@ -16963,7 +17073,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj7", 10) == 0) { { -return dev_storage + 839; +return dev_storage + 967; } } @@ -16987,7 +17097,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi7", 10) == 0) { { -return dev_storage + 2070; +return dev_storage + 2198; } } @@ -17002,7 +17112,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci7", 10) == 0) { { -return dev_storage + 1656; +return dev_storage + 1784; } } @@ -17017,7 +17127,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi7", 10) == 0) { { -return dev_storage + 1240; +return dev_storage + 1368; } } @@ -17032,7 +17142,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai7", 10) == 0) { { -return dev_storage + 824; +return dev_storage + 952; } } @@ -17056,7 +17166,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh7", 10) == 0) { { -return dev_storage + 2055; +return dev_storage + 2183; } } @@ -17071,7 +17181,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch7", 10) == 0) { { -return dev_storage + 1641; +return dev_storage + 1769; } } @@ -17086,7 +17196,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh7", 10) == 0) { { -return dev_storage + 1225; +return dev_storage + 1353; } } @@ -17101,7 +17211,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah7", 10) == 0) { { -return dev_storage + 809; +return dev_storage + 937; } } @@ -17125,7 +17235,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg7", 10) == 0) { { -return dev_storage + 2040; +return dev_storage + 2168; } } @@ -17140,7 +17250,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg7", 10) == 0) { { -return dev_storage + 1626; +return dev_storage + 1754; } } @@ -17155,7 +17265,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg7", 10) == 0) { { -return dev_storage + 1210; +return dev_storage + 1338; } } @@ -17170,7 +17280,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag7", 10) == 0) { { -return dev_storage + 794; +return dev_storage + 922; } } @@ -17194,7 +17304,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf7", 10) == 0) { { -return dev_storage + 2025; +return dev_storage + 2153; } } @@ -17209,7 +17319,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf7", 10) == 0) { { -return dev_storage + 1611; +return dev_storage + 1739; } } @@ -17224,7 +17334,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf7", 10) == 0) { { -return dev_storage + 1195; +return dev_storage + 1323; } } @@ -17239,7 +17349,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf7", 10) == 0) { { -return dev_storage + 779; +return dev_storage + 907; } } @@ -17263,7 +17373,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde7", 10) == 0) { { -return dev_storage + 2010; +return dev_storage + 2138; } } @@ -17278,7 +17388,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce7", 10) == 0) { { -return dev_storage + 1596; +return dev_storage + 1724; } } @@ -17293,7 +17403,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe7", 10) == 0) { { -return dev_storage + 1180; +return dev_storage + 1308; } } @@ -17308,7 +17418,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae7", 10) == 0) { { -return dev_storage + 764; +return dev_storage + 892; } } @@ -17332,7 +17442,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd7", 10) == 0) { { -return dev_storage + 1995; +return dev_storage + 2123; } } @@ -17347,7 +17457,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd7", 10) == 0) { { -return dev_storage + 1581; +return dev_storage + 1709; } } @@ -17362,7 +17472,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd7", 10) == 0) { { -return dev_storage + 1165; +return dev_storage + 1293; } } @@ -17377,7 +17487,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad7", 10) == 0) { { -return dev_storage + 749; +return dev_storage + 877; } } @@ -17401,7 +17511,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc7", 10) == 0) { { -return dev_storage + 1980; +return dev_storage + 2108; } } @@ -17416,7 +17526,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc7", 10) == 0) { { -return dev_storage + 1566; +return dev_storage + 1694; } } @@ -17431,7 +17541,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc7", 10) == 0) { { -return dev_storage + 1150; +return dev_storage + 1278; } } @@ -17446,7 +17556,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac7", 10) == 0) { { -return dev_storage + 734; +return dev_storage + 862; } } @@ -17470,7 +17580,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb7", 10) == 0) { { -return dev_storage + 1965; +return dev_storage + 2093; } } @@ -17485,7 +17595,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb7", 10) == 0) { { -return dev_storage + 1551; +return dev_storage + 1679; } } @@ -17500,7 +17610,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb7", 10) == 0) { { -return dev_storage + 1135; +return dev_storage + 1263; } } @@ -17515,7 +17625,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab7", 10) == 0) { { -return dev_storage + 719; +return dev_storage + 847; } } @@ -17539,7 +17649,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda7", 10) == 0) { { -return dev_storage + 1950; +return dev_storage + 2078; } } @@ -17554,7 +17664,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca7", 10) == 0) { { -return dev_storage + 1536; +return dev_storage + 1664; } } @@ -17569,7 +17679,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba7", 10) == 0) { { -return dev_storage + 1120; +return dev_storage + 1248; } } @@ -17584,7 +17694,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa7", 10) == 0) { { -return dev_storage + 704; +return dev_storage + 832; } } @@ -17605,7 +17715,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS7", 10) == 0) { { -return dev_storage + 2520; +return dev_storage + 2584; } } @@ -17679,11 +17789,11 @@ return NULL; case '5': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty57", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty57", 10) == 0) { { -return dev_storage + 2506; +return dev_storage + 296; } } @@ -17718,11 +17828,11 @@ return NULL; case '4': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty47", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty47", 10) == 0) { { -return dev_storage + 2496; +return dev_storage + 286; } } @@ -17757,11 +17867,11 @@ return NULL; case '3': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty37", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty37", 10) == 0) { { -return dev_storage + 2486; +return dev_storage + 276; } } @@ -17796,11 +17906,11 @@ return NULL; case '2': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty27", 10) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/st127", 10) == 0) { { -return dev_storage + 2476; +return dev_storage + 2575; } } @@ -17811,11 +17921,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/st127", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty27", 10) == 0) { { -return dev_storage + 2447; +return dev_storage + 266; } } @@ -17850,11 +17960,11 @@ return NULL; case '1': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty17", 10) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/st117", 10) == 0) { { -return dev_storage + 2466; +return dev_storage + 2565; } } @@ -17865,11 +17975,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/st117", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty17", 10) == 0) { { -return dev_storage + 2437; +return dev_storage + 256; } } @@ -17905,7 +18015,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st107", 10) == 0) { { -return dev_storage + 2427; +return dev_storage + 2555; } } @@ -17932,7 +18042,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz6", 10) == 0) { { -return dev_storage + 1910; +return dev_storage + 2038; } } @@ -17947,7 +18057,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz6", 10) == 0) { { -return dev_storage + 1494; +return dev_storage + 1622; } } @@ -17962,7 +18072,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz6", 10) == 0) { { -return dev_storage + 1078; +return dev_storage + 1206; } } @@ -17986,7 +18096,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy6", 10) == 0) { { -return dev_storage + 1895; +return dev_storage + 2023; } } @@ -18001,7 +18111,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby6", 10) == 0) { { -return dev_storage + 1479; +return dev_storage + 1607; } } @@ -18016,7 +18126,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday6", 10) == 0) { { -return dev_storage + 1063; +return dev_storage + 1191; } } @@ -18040,7 +18150,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx6", 10) == 0) { { -return dev_storage + 2294; +return dev_storage + 2422; } } @@ -18055,7 +18165,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx6", 10) == 0) { { -return dev_storage + 1880; +return dev_storage + 2008; } } @@ -18070,7 +18180,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx6", 10) == 0) { { -return dev_storage + 1464; +return dev_storage + 1592; } } @@ -18085,7 +18195,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax6", 10) == 0) { { -return dev_storage + 1048; +return dev_storage + 1176; } } @@ -18109,7 +18219,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw6", 10) == 0) { { -return dev_storage + 2279; +return dev_storage + 2407; } } @@ -18124,7 +18234,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw6", 10) == 0) { { -return dev_storage + 1865; +return dev_storage + 1993; } } @@ -18139,7 +18249,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw6", 10) == 0) { { -return dev_storage + 1449; +return dev_storage + 1577; } } @@ -18154,7 +18264,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw6", 10) == 0) { { -return dev_storage + 1033; +return dev_storage + 1161; } } @@ -18178,7 +18288,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv6", 10) == 0) { { -return dev_storage + 2264; +return dev_storage + 2392; } } @@ -18193,7 +18303,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv6", 10) == 0) { { -return dev_storage + 1850; +return dev_storage + 1978; } } @@ -18208,7 +18318,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv6", 10) == 0) { { -return dev_storage + 1434; +return dev_storage + 1562; } } @@ -18223,7 +18333,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav6", 10) == 0) { { -return dev_storage + 1018; +return dev_storage + 1146; } } @@ -18247,7 +18357,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu6", 10) == 0) { { -return dev_storage + 2249; +return dev_storage + 2377; } } @@ -18262,7 +18372,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu6", 10) == 0) { { -return dev_storage + 1835; +return dev_storage + 1963; } } @@ -18277,7 +18387,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu6", 10) == 0) { { -return dev_storage + 1419; +return dev_storage + 1547; } } @@ -18292,7 +18402,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau6", 10) == 0) { { -return dev_storage + 1003; +return dev_storage + 1131; } } @@ -18316,7 +18426,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt6", 10) == 0) { { -return dev_storage + 2234; +return dev_storage + 2362; } } @@ -18331,7 +18441,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct6", 10) == 0) { { -return dev_storage + 1820; +return dev_storage + 1948; } } @@ -18346,7 +18456,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt6", 10) == 0) { { -return dev_storage + 1404; +return dev_storage + 1532; } } @@ -18361,7 +18471,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat6", 10) == 0) { { -return dev_storage + 988; +return dev_storage + 1116; } } @@ -18400,7 +18510,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds6", 10) == 0) { { -return dev_storage + 2219; +return dev_storage + 2347; } } @@ -18415,7 +18525,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs6", 10) == 0) { { -return dev_storage + 1805; +return dev_storage + 1933; } } @@ -18430,7 +18540,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs6", 10) == 0) { { -return dev_storage + 1389; +return dev_storage + 1517; } } @@ -18445,7 +18555,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas6", 10) == 0) { { -return dev_storage + 973; +return dev_storage + 1101; } } @@ -18469,7 +18579,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr6", 10) == 0) { { -return dev_storage + 2204; +return dev_storage + 2332; } } @@ -18484,7 +18594,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr6", 10) == 0) { { -return dev_storage + 1790; +return dev_storage + 1918; } } @@ -18499,7 +18609,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr6", 10) == 0) { { -return dev_storage + 1374; +return dev_storage + 1502; } } @@ -18514,7 +18624,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar6", 10) == 0) { { -return dev_storage + 958; +return dev_storage + 1086; } } @@ -18538,7 +18648,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq6", 10) == 0) { { -return dev_storage + 2189; +return dev_storage + 2317; } } @@ -18553,7 +18663,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq6", 10) == 0) { { -return dev_storage + 1775; +return dev_storage + 1903; } } @@ -18568,7 +18678,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq6", 10) == 0) { { -return dev_storage + 1359; +return dev_storage + 1487; } } @@ -18583,7 +18693,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq6", 10) == 0) { { -return dev_storage + 943; +return dev_storage + 1071; } } @@ -18607,7 +18717,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp6", 10) == 0) { { -return dev_storage + 2174; +return dev_storage + 2302; } } @@ -18622,7 +18732,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp6", 10) == 0) { { -return dev_storage + 1760; +return dev_storage + 1888; } } @@ -18637,7 +18747,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp6", 10) == 0) { { -return dev_storage + 1344; +return dev_storage + 1472; } } @@ -18652,7 +18762,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap6", 10) == 0) { { -return dev_storage + 928; +return dev_storage + 1056; } } @@ -18676,7 +18786,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo6", 10) == 0) { { -return dev_storage + 2159; +return dev_storage + 2287; } } @@ -18691,7 +18801,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco6", 10) == 0) { { -return dev_storage + 1745; +return dev_storage + 1873; } } @@ -18706,7 +18816,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo6", 10) == 0) { { -return dev_storage + 1329; +return dev_storage + 1457; } } @@ -18721,7 +18831,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao6", 10) == 0) { { -return dev_storage + 913; +return dev_storage + 1041; } } @@ -18745,7 +18855,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn6", 10) == 0) { { -return dev_storage + 2144; +return dev_storage + 2272; } } @@ -18760,7 +18870,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn6", 10) == 0) { { -return dev_storage + 1730; +return dev_storage + 1858; } } @@ -18775,7 +18885,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn6", 10) == 0) { { -return dev_storage + 1314; +return dev_storage + 1442; } } @@ -18790,7 +18900,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan6", 10) == 0) { { -return dev_storage + 898; +return dev_storage + 1026; } } @@ -18810,11 +18920,26 @@ return NULL; case 'm': switch (KR_keyword [7]) { + case 'y': + if (strncmp (KR_keyword, "/dev/ptym6", 10) == 0) + { +{ +return dev_storage + 309; + +} + } + else + { +{ +return NULL; + +} + } case 'd': if (strncmp (KR_keyword, "/dev/sddm6", 10) == 0) { { -return dev_storage + 2129; +return dev_storage + 2257; } } @@ -18829,7 +18954,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm6", 10) == 0) { { -return dev_storage + 1715; +return dev_storage + 1843; } } @@ -18844,7 +18969,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm6", 10) == 0) { { -return dev_storage + 1299; +return dev_storage + 1427; } } @@ -18859,7 +18984,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam6", 10) == 0) { { -return dev_storage + 883; +return dev_storage + 1011; } } @@ -18883,7 +19008,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl6", 10) == 0) { { -return dev_storage + 2114; +return dev_storage + 2242; } } @@ -18898,7 +19023,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl6", 10) == 0) { { -return dev_storage + 1700; +return dev_storage + 1828; } } @@ -18913,7 +19038,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl6", 10) == 0) { { -return dev_storage + 1284; +return dev_storage + 1412; } } @@ -18928,7 +19053,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal6", 10) == 0) { { -return dev_storage + 868; +return dev_storage + 996; } } @@ -18952,7 +19077,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk6", 10) == 0) { { -return dev_storage + 2099; +return dev_storage + 2227; } } @@ -18967,7 +19092,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck6", 10) == 0) { { -return dev_storage + 1685; +return dev_storage + 1813; } } @@ -18982,7 +19107,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk6", 10) == 0) { { -return dev_storage + 1269; +return dev_storage + 1397; } } @@ -18997,7 +19122,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak6", 10) == 0) { { -return dev_storage + 853; +return dev_storage + 981; } } @@ -19021,7 +19146,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj6", 10) == 0) { { -return dev_storage + 2084; +return dev_storage + 2212; } } @@ -19036,7 +19161,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj6", 10) == 0) { { -return dev_storage + 1670; +return dev_storage + 1798; } } @@ -19051,7 +19176,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj6", 10) == 0) { { -return dev_storage + 1254; +return dev_storage + 1382; } } @@ -19066,7 +19191,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj6", 10) == 0) { { -return dev_storage + 838; +return dev_storage + 966; } } @@ -19090,7 +19215,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi6", 10) == 0) { { -return dev_storage + 2069; +return dev_storage + 2197; } } @@ -19105,7 +19230,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci6", 10) == 0) { { -return dev_storage + 1655; +return dev_storage + 1783; } } @@ -19120,7 +19245,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi6", 10) == 0) { { -return dev_storage + 1239; +return dev_storage + 1367; } } @@ -19135,7 +19260,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai6", 10) == 0) { { -return dev_storage + 823; +return dev_storage + 951; } } @@ -19159,7 +19284,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh6", 10) == 0) { { -return dev_storage + 2054; +return dev_storage + 2182; } } @@ -19174,7 +19299,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch6", 10) == 0) { { -return dev_storage + 1640; +return dev_storage + 1768; } } @@ -19189,7 +19314,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh6", 10) == 0) { { -return dev_storage + 1224; +return dev_storage + 1352; } } @@ -19204,7 +19329,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah6", 10) == 0) { { -return dev_storage + 808; +return dev_storage + 936; } } @@ -19228,7 +19353,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg6", 10) == 0) { { -return dev_storage + 2039; +return dev_storage + 2167; } } @@ -19243,7 +19368,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg6", 10) == 0) { { -return dev_storage + 1625; +return dev_storage + 1753; } } @@ -19258,7 +19383,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg6", 10) == 0) { { -return dev_storage + 1209; +return dev_storage + 1337; } } @@ -19273,7 +19398,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag6", 10) == 0) { { -return dev_storage + 793; +return dev_storage + 921; } } @@ -19297,7 +19422,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf6", 10) == 0) { { -return dev_storage + 2024; +return dev_storage + 2152; } } @@ -19312,7 +19437,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf6", 10) == 0) { { -return dev_storage + 1610; +return dev_storage + 1738; } } @@ -19327,7 +19452,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf6", 10) == 0) { { -return dev_storage + 1194; +return dev_storage + 1322; } } @@ -19342,7 +19467,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf6", 10) == 0) { { -return dev_storage + 778; +return dev_storage + 906; } } @@ -19366,7 +19491,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde6", 10) == 0) { { -return dev_storage + 2009; +return dev_storage + 2137; } } @@ -19381,7 +19506,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce6", 10) == 0) { { -return dev_storage + 1595; +return dev_storage + 1723; } } @@ -19396,7 +19521,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe6", 10) == 0) { { -return dev_storage + 1179; +return dev_storage + 1307; } } @@ -19411,7 +19536,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae6", 10) == 0) { { -return dev_storage + 763; +return dev_storage + 891; } } @@ -19435,7 +19560,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd6", 10) == 0) { { -return dev_storage + 1994; +return dev_storage + 2122; } } @@ -19450,7 +19575,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd6", 10) == 0) { { -return dev_storage + 1580; +return dev_storage + 1708; } } @@ -19465,7 +19590,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd6", 10) == 0) { { -return dev_storage + 1164; +return dev_storage + 1292; } } @@ -19480,7 +19605,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad6", 10) == 0) { { -return dev_storage + 748; +return dev_storage + 876; } } @@ -19504,7 +19629,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc6", 10) == 0) { { -return dev_storage + 1979; +return dev_storage + 2107; } } @@ -19519,7 +19644,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc6", 10) == 0) { { -return dev_storage + 1565; +return dev_storage + 1693; } } @@ -19534,7 +19659,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc6", 10) == 0) { { -return dev_storage + 1149; +return dev_storage + 1277; } } @@ -19549,7 +19674,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac6", 10) == 0) { { -return dev_storage + 733; +return dev_storage + 861; } } @@ -19573,7 +19698,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb6", 10) == 0) { { -return dev_storage + 1964; +return dev_storage + 2092; } } @@ -19588,7 +19713,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb6", 10) == 0) { { -return dev_storage + 1550; +return dev_storage + 1678; } } @@ -19603,7 +19728,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb6", 10) == 0) { { -return dev_storage + 1134; +return dev_storage + 1262; } } @@ -19618,7 +19743,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab6", 10) == 0) { { -return dev_storage + 718; +return dev_storage + 846; } } @@ -19642,7 +19767,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda6", 10) == 0) { { -return dev_storage + 1949; +return dev_storage + 2077; } } @@ -19657,7 +19782,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca6", 10) == 0) { { -return dev_storage + 1535; +return dev_storage + 1663; } } @@ -19672,7 +19797,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba6", 10) == 0) { { -return dev_storage + 1119; +return dev_storage + 1247; } } @@ -19687,7 +19812,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa6", 10) == 0) { { -return dev_storage + 703; +return dev_storage + 831; } } @@ -19708,7 +19833,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS6", 10) == 0) { { -return dev_storage + 2519; +return dev_storage + 2583; } } @@ -19782,11 +19907,11 @@ return NULL; case '5': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty56", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty56", 10) == 0) { { -return dev_storage + 2505; +return dev_storage + 295; } } @@ -19821,11 +19946,11 @@ return NULL; case '4': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty46", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty46", 10) == 0) { { -return dev_storage + 2495; +return dev_storage + 285; } } @@ -19860,11 +19985,11 @@ return NULL; case '3': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty36", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty36", 10) == 0) { { -return dev_storage + 2485; +return dev_storage + 275; } } @@ -19899,11 +20024,11 @@ return NULL; case '2': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty26", 10) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/st126", 10) == 0) { { -return dev_storage + 2475; +return dev_storage + 2574; } } @@ -19914,11 +20039,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/st126", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty26", 10) == 0) { { -return dev_storage + 2446; +return dev_storage + 265; } } @@ -19953,11 +20078,11 @@ return NULL; case '1': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty16", 10) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/st116", 10) == 0) { { -return dev_storage + 2465; +return dev_storage + 2564; } } @@ -19968,11 +20093,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/st116", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty16", 10) == 0) { { -return dev_storage + 2436; +return dev_storage + 255; } } @@ -20023,7 +20148,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st106", 10) == 0) { { -return dev_storage + 2426; +return dev_storage + 2554; } } @@ -20047,7 +20172,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz15", 10) == 0) { { -return dev_storage + 671; +return dev_storage + 799; } } @@ -20061,11 +20186,26 @@ return NULL; case 'y': switch (KR_keyword [8]) { + case 'm': + if (strncmp (KR_keyword, "/dev/ptym5", 10) == 0) + { +{ +return dev_storage + 308; + +} + } + else + { +{ +return NULL; + +} + } case 'S': if (strncmp (KR_keyword, "/dev/ttyS5", 10) == 0) { { -return dev_storage + 2518; +return dev_storage + 2582; } } @@ -20077,10 +20217,10 @@ return NULL; } } case '5': - if (strncmp (KR_keyword, "/dev/tty55", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty55", 10) == 0) { { -return dev_storage + 2504; +return dev_storage + 294; } } @@ -20092,10 +20232,10 @@ return NULL; } } case '4': - if (strncmp (KR_keyword, "/dev/tty45", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty45", 10) == 0) { { -return dev_storage + 2494; +return dev_storage + 284; } } @@ -20107,10 +20247,10 @@ return NULL; } } case '3': - if (strncmp (KR_keyword, "/dev/tty35", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty35", 10) == 0) { { -return dev_storage + 2484; +return dev_storage + 274; } } @@ -20122,10 +20262,10 @@ return NULL; } } case '2': - if (strncmp (KR_keyword, "/dev/tty25", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty25", 10) == 0) { { -return dev_storage + 2474; +return dev_storage + 264; } } @@ -20139,11 +20279,11 @@ return NULL; case '1': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty15", 10) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/sdy15", 10) == 0) { { -return dev_storage + 2464; +return dev_storage + 784; } } @@ -20154,11 +20294,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/sdy15", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty15", 10) == 0) { { -return dev_storage + 656; +return dev_storage + 254; } } @@ -20185,7 +20325,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx15", 10) == 0) { { -return dev_storage + 641; +return dev_storage + 769; } } @@ -20200,7 +20340,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw15", 10) == 0) { { -return dev_storage + 626; +return dev_storage + 754; } } @@ -20215,7 +20355,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv15", 10) == 0) { { -return dev_storage + 611; +return dev_storage + 739; } } @@ -20230,7 +20370,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu15", 10) == 0) { { -return dev_storage + 596; +return dev_storage + 724; } } @@ -20371,7 +20511,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt15", 10) == 0) { { -return dev_storage + 581; +return dev_storage + 709; } } @@ -20413,7 +20553,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds15", 10) == 0) { { -return dev_storage + 566; +return dev_storage + 694; } } @@ -20428,7 +20568,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr15", 10) == 0) { { -return dev_storage + 551; +return dev_storage + 679; } } @@ -20443,7 +20583,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq15", 10) == 0) { { -return dev_storage + 536; +return dev_storage + 664; } } @@ -20458,7 +20598,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp15", 10) == 0) { { -return dev_storage + 521; +return dev_storage + 649; } } @@ -20473,7 +20613,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo15", 10) == 0) { { -return dev_storage + 506; +return dev_storage + 634; } } @@ -20491,7 +20631,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn15", 10) == 0) { { -return dev_storage + 491; +return dev_storage + 619; } } @@ -20530,7 +20670,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm15", 10) == 0) { { -return dev_storage + 476; +return dev_storage + 604; } } @@ -20566,7 +20706,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl15", 10) == 0) { { -return dev_storage + 461; +return dev_storage + 589; } } @@ -20581,7 +20721,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk15", 10) == 0) { { -return dev_storage + 446; +return dev_storage + 574; } } @@ -20596,7 +20736,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj15", 10) == 0) { { -return dev_storage + 431; +return dev_storage + 559; } } @@ -20611,7 +20751,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi15", 10) == 0) { { -return dev_storage + 416; +return dev_storage + 544; } } @@ -20626,7 +20766,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh15", 10) == 0) { { -return dev_storage + 401; +return dev_storage + 529; } } @@ -20641,7 +20781,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg15", 10) == 0) { { -return dev_storage + 386; +return dev_storage + 514; } } @@ -20656,7 +20796,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf15", 10) == 0) { { -return dev_storage + 371; +return dev_storage + 499; } } @@ -20671,7 +20811,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde15", 10) == 0) { { -return dev_storage + 356; +return dev_storage + 484; } } @@ -20689,7 +20829,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx5", 10) == 0) { { -return dev_storage + 2293; +return dev_storage + 2421; } } @@ -20704,7 +20844,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw5", 10) == 0) { { -return dev_storage + 2278; +return dev_storage + 2406; } } @@ -20719,7 +20859,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv5", 10) == 0) { { -return dev_storage + 2263; +return dev_storage + 2391; } } @@ -20734,7 +20874,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu5", 10) == 0) { { -return dev_storage + 2248; +return dev_storage + 2376; } } @@ -20749,7 +20889,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt5", 10) == 0) { { -return dev_storage + 2233; +return dev_storage + 2361; } } @@ -20764,7 +20904,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds5", 10) == 0) { { -return dev_storage + 2218; +return dev_storage + 2346; } } @@ -20779,7 +20919,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr5", 10) == 0) { { -return dev_storage + 2203; +return dev_storage + 2331; } } @@ -20794,7 +20934,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq5", 10) == 0) { { -return dev_storage + 2188; +return dev_storage + 2316; } } @@ -20809,7 +20949,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp5", 10) == 0) { { -return dev_storage + 2173; +return dev_storage + 2301; } } @@ -20824,7 +20964,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo5", 10) == 0) { { -return dev_storage + 2158; +return dev_storage + 2286; } } @@ -20839,7 +20979,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn5", 10) == 0) { { -return dev_storage + 2143; +return dev_storage + 2271; } } @@ -20854,7 +20994,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm5", 10) == 0) { { -return dev_storage + 2128; +return dev_storage + 2256; } } @@ -20869,7 +21009,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl5", 10) == 0) { { -return dev_storage + 2113; +return dev_storage + 2241; } } @@ -20884,7 +21024,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk5", 10) == 0) { { -return dev_storage + 2098; +return dev_storage + 2226; } } @@ -20899,7 +21039,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj5", 10) == 0) { { -return dev_storage + 2083; +return dev_storage + 2211; } } @@ -20914,7 +21054,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi5", 10) == 0) { { -return dev_storage + 2068; +return dev_storage + 2196; } } @@ -20929,7 +21069,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh5", 10) == 0) { { -return dev_storage + 2053; +return dev_storage + 2181; } } @@ -20944,7 +21084,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg5", 10) == 0) { { -return dev_storage + 2038; +return dev_storage + 2166; } } @@ -20959,7 +21099,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf5", 10) == 0) { { -return dev_storage + 2023; +return dev_storage + 2151; } } @@ -20974,7 +21114,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde5", 10) == 0) { { -return dev_storage + 2008; +return dev_storage + 2136; } } @@ -20989,7 +21129,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd5", 10) == 0) { { -return dev_storage + 1993; +return dev_storage + 2121; } } @@ -21004,7 +21144,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc5", 10) == 0) { { -return dev_storage + 1978; +return dev_storage + 2106; } } @@ -21019,7 +21159,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb5", 10) == 0) { { -return dev_storage + 1963; +return dev_storage + 2091; } } @@ -21034,7 +21174,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda5", 10) == 0) { { -return dev_storage + 1948; +return dev_storage + 2076; } } @@ -21052,7 +21192,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd15", 10) == 0) { { -return dev_storage + 341; +return dev_storage + 469; } } @@ -21067,7 +21207,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd15", 10) == 0) { { -return dev_storage + 255; +return dev_storage + 383; } } @@ -21097,7 +21237,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz5", 10) == 0) { { -return dev_storage + 1909; +return dev_storage + 2037; } } @@ -21112,7 +21252,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy5", 10) == 0) { { -return dev_storage + 1894; +return dev_storage + 2022; } } @@ -21127,7 +21267,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx5", 10) == 0) { { -return dev_storage + 1879; +return dev_storage + 2007; } } @@ -21142,7 +21282,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw5", 10) == 0) { { -return dev_storage + 1864; +return dev_storage + 1992; } } @@ -21157,7 +21297,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv5", 10) == 0) { { -return dev_storage + 1849; +return dev_storage + 1977; } } @@ -21172,7 +21312,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu5", 10) == 0) { { -return dev_storage + 1834; +return dev_storage + 1962; } } @@ -21187,7 +21327,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct5", 10) == 0) { { -return dev_storage + 1819; +return dev_storage + 1947; } } @@ -21202,7 +21342,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs5", 10) == 0) { { -return dev_storage + 1804; +return dev_storage + 1932; } } @@ -21217,7 +21357,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr5", 10) == 0) { { -return dev_storage + 1789; +return dev_storage + 1917; } } @@ -21232,7 +21372,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq5", 10) == 0) { { -return dev_storage + 1774; +return dev_storage + 1902; } } @@ -21247,7 +21387,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp5", 10) == 0) { { -return dev_storage + 1759; +return dev_storage + 1887; } } @@ -21262,7 +21402,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco5", 10) == 0) { { -return dev_storage + 1744; +return dev_storage + 1872; } } @@ -21277,7 +21417,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn5", 10) == 0) { { -return dev_storage + 1729; +return dev_storage + 1857; } } @@ -21292,7 +21432,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm5", 10) == 0) { { -return dev_storage + 1714; +return dev_storage + 1842; } } @@ -21307,7 +21447,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl5", 10) == 0) { { -return dev_storage + 1699; +return dev_storage + 1827; } } @@ -21322,7 +21462,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck5", 10) == 0) { { -return dev_storage + 1684; +return dev_storage + 1812; } } @@ -21337,7 +21477,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj5", 10) == 0) { { -return dev_storage + 1669; +return dev_storage + 1797; } } @@ -21352,7 +21492,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci5", 10) == 0) { { -return dev_storage + 1654; +return dev_storage + 1782; } } @@ -21367,7 +21507,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch5", 10) == 0) { { -return dev_storage + 1639; +return dev_storage + 1767; } } @@ -21382,7 +21522,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg5", 10) == 0) { { -return dev_storage + 1624; +return dev_storage + 1752; } } @@ -21397,7 +21537,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf5", 10) == 0) { { -return dev_storage + 1609; +return dev_storage + 1737; } } @@ -21412,7 +21552,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce5", 10) == 0) { { -return dev_storage + 1594; +return dev_storage + 1722; } } @@ -21427,7 +21567,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd5", 10) == 0) { { -return dev_storage + 1579; +return dev_storage + 1707; } } @@ -21442,7 +21582,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc5", 10) == 0) { { -return dev_storage + 1564; +return dev_storage + 1692; } } @@ -21457,7 +21597,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb5", 10) == 0) { { -return dev_storage + 1549; +return dev_storage + 1677; } } @@ -21472,7 +21612,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca5", 10) == 0) { { -return dev_storage + 1534; +return dev_storage + 1662; } } @@ -21487,7 +21627,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc15", 10) == 0) { { -return dev_storage + 326; +return dev_storage + 454; } } @@ -21511,7 +21651,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz5", 10) == 0) { { -return dev_storage + 1493; +return dev_storage + 1621; } } @@ -21526,7 +21666,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby5", 10) == 0) { { -return dev_storage + 1478; +return dev_storage + 1606; } } @@ -21541,7 +21681,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx5", 10) == 0) { { -return dev_storage + 1463; +return dev_storage + 1591; } } @@ -21556,7 +21696,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw5", 10) == 0) { { -return dev_storage + 1448; +return dev_storage + 1576; } } @@ -21571,7 +21711,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv5", 10) == 0) { { -return dev_storage + 1433; +return dev_storage + 1561; } } @@ -21586,7 +21726,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu5", 10) == 0) { { -return dev_storage + 1418; +return dev_storage + 1546; } } @@ -21601,7 +21741,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt5", 10) == 0) { { -return dev_storage + 1403; +return dev_storage + 1531; } } @@ -21616,7 +21756,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs5", 10) == 0) { { -return dev_storage + 1388; +return dev_storage + 1516; } } @@ -21631,7 +21771,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr5", 10) == 0) { { -return dev_storage + 1373; +return dev_storage + 1501; } } @@ -21646,7 +21786,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq5", 10) == 0) { { -return dev_storage + 1358; +return dev_storage + 1486; } } @@ -21661,7 +21801,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp5", 10) == 0) { { -return dev_storage + 1343; +return dev_storage + 1471; } } @@ -21676,7 +21816,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo5", 10) == 0) { { -return dev_storage + 1328; +return dev_storage + 1456; } } @@ -21691,7 +21831,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn5", 10) == 0) { { -return dev_storage + 1313; +return dev_storage + 1441; } } @@ -21706,7 +21846,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm5", 10) == 0) { { -return dev_storage + 1298; +return dev_storage + 1426; } } @@ -21721,7 +21861,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl5", 10) == 0) { { -return dev_storage + 1283; +return dev_storage + 1411; } } @@ -21736,7 +21876,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk5", 10) == 0) { { -return dev_storage + 1268; +return dev_storage + 1396; } } @@ -21751,7 +21891,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj5", 10) == 0) { { -return dev_storage + 1253; +return dev_storage + 1381; } } @@ -21766,7 +21906,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi5", 10) == 0) { { -return dev_storage + 1238; +return dev_storage + 1366; } } @@ -21781,7 +21921,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh5", 10) == 0) { { -return dev_storage + 1223; +return dev_storage + 1351; } } @@ -21796,7 +21936,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg5", 10) == 0) { { -return dev_storage + 1208; +return dev_storage + 1336; } } @@ -21811,7 +21951,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf5", 10) == 0) { { -return dev_storage + 1193; +return dev_storage + 1321; } } @@ -21826,7 +21966,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe5", 10) == 0) { { -return dev_storage + 1178; +return dev_storage + 1306; } } @@ -21841,7 +21981,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd5", 10) == 0) { { -return dev_storage + 1163; +return dev_storage + 1291; } } @@ -21856,7 +21996,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc5", 10) == 0) { { -return dev_storage + 1148; +return dev_storage + 1276; } } @@ -21871,7 +22011,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb5", 10) == 0) { { -return dev_storage + 1133; +return dev_storage + 1261; } } @@ -21886,7 +22026,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba5", 10) == 0) { { -return dev_storage + 1118; +return dev_storage + 1246; } } @@ -21901,7 +22041,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb15", 10) == 0) { { -return dev_storage + 311; +return dev_storage + 439; } } @@ -21925,7 +22065,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz5", 10) == 0) { { -return dev_storage + 1077; +return dev_storage + 1205; } } @@ -21940,7 +22080,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday5", 10) == 0) { { -return dev_storage + 1062; +return dev_storage + 1190; } } @@ -21955,7 +22095,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax5", 10) == 0) { { -return dev_storage + 1047; +return dev_storage + 1175; } } @@ -21970,7 +22110,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw5", 10) == 0) { { -return dev_storage + 1032; +return dev_storage + 1160; } } @@ -21985,7 +22125,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav5", 10) == 0) { { -return dev_storage + 1017; +return dev_storage + 1145; } } @@ -22000,7 +22140,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau5", 10) == 0) { { -return dev_storage + 1002; +return dev_storage + 1130; } } @@ -22015,7 +22155,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat5", 10) == 0) { { -return dev_storage + 987; +return dev_storage + 1115; } } @@ -22030,7 +22170,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas5", 10) == 0) { { -return dev_storage + 972; +return dev_storage + 1100; } } @@ -22045,7 +22185,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar5", 10) == 0) { { -return dev_storage + 957; +return dev_storage + 1085; } } @@ -22060,7 +22200,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq5", 10) == 0) { { -return dev_storage + 942; +return dev_storage + 1070; } } @@ -22075,7 +22215,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap5", 10) == 0) { { -return dev_storage + 927; +return dev_storage + 1055; } } @@ -22090,7 +22230,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao5", 10) == 0) { { -return dev_storage + 912; +return dev_storage + 1040; } } @@ -22105,7 +22245,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan5", 10) == 0) { { -return dev_storage + 897; +return dev_storage + 1025; } } @@ -22120,7 +22260,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam5", 10) == 0) { { -return dev_storage + 882; +return dev_storage + 1010; } } @@ -22135,7 +22275,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal5", 10) == 0) { { -return dev_storage + 867; +return dev_storage + 995; } } @@ -22150,7 +22290,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak5", 10) == 0) { { -return dev_storage + 852; +return dev_storage + 980; } } @@ -22165,7 +22305,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj5", 10) == 0) { { -return dev_storage + 837; +return dev_storage + 965; } } @@ -22180,7 +22320,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai5", 10) == 0) { { -return dev_storage + 822; +return dev_storage + 950; } } @@ -22195,7 +22335,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah5", 10) == 0) { { -return dev_storage + 807; +return dev_storage + 935; } } @@ -22210,7 +22350,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag5", 10) == 0) { { -return dev_storage + 792; +return dev_storage + 920; } } @@ -22225,7 +22365,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf5", 10) == 0) { { -return dev_storage + 777; +return dev_storage + 905; } } @@ -22240,7 +22380,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae5", 10) == 0) { { -return dev_storage + 762; +return dev_storage + 890; } } @@ -22255,7 +22395,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad5", 10) == 0) { { -return dev_storage + 747; +return dev_storage + 875; } } @@ -22270,7 +22410,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac5", 10) == 0) { { -return dev_storage + 732; +return dev_storage + 860; } } @@ -22285,7 +22425,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab5", 10) == 0) { { -return dev_storage + 717; +return dev_storage + 845; } } @@ -22300,7 +22440,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa5", 10) == 0) { { -return dev_storage + 702; +return dev_storage + 830; } } @@ -22315,7 +22455,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda15", 10) == 0) { { -return dev_storage + 296; +return dev_storage + 424; } } @@ -22339,7 +22479,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st125", 10) == 0) { { -return dev_storage + 2445; +return dev_storage + 2573; } } @@ -22354,7 +22494,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st115", 10) == 0) { { -return dev_storage + 2435; +return dev_storage + 2563; } } @@ -22369,7 +22509,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st105", 10) == 0) { { -return dev_storage + 2425; +return dev_storage + 2553; } } @@ -22399,7 +22539,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz14", 10) == 0) { { -return dev_storage + 670; +return dev_storage + 798; } } @@ -22413,11 +22553,26 @@ return NULL; case 'y': switch (KR_keyword [8]) { + case 'm': + if (strncmp (KR_keyword, "/dev/ptym4", 10) == 0) + { +{ +return dev_storage + 307; + +} + } + else + { +{ +return NULL; + +} + } case 'S': if (strncmp (KR_keyword, "/dev/ttyS4", 10) == 0) { { -return dev_storage + 2517; +return dev_storage + 2581; } } @@ -22429,10 +22584,10 @@ return NULL; } } case '5': - if (strncmp (KR_keyword, "/dev/tty54", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty54", 10) == 0) { { -return dev_storage + 2503; +return dev_storage + 293; } } @@ -22444,10 +22599,10 @@ return NULL; } } case '4': - if (strncmp (KR_keyword, "/dev/tty44", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty44", 10) == 0) { { -return dev_storage + 2493; +return dev_storage + 283; } } @@ -22459,10 +22614,10 @@ return NULL; } } case '3': - if (strncmp (KR_keyword, "/dev/tty34", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty34", 10) == 0) { { -return dev_storage + 2483; +return dev_storage + 273; } } @@ -22474,10 +22629,10 @@ return NULL; } } case '2': - if (strncmp (KR_keyword, "/dev/tty24", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty24", 10) == 0) { { -return dev_storage + 2473; +return dev_storage + 263; } } @@ -22491,11 +22646,11 @@ return NULL; case '1': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty14", 10) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/sdy14", 10) == 0) { { -return dev_storage + 2463; +return dev_storage + 783; } } @@ -22506,11 +22661,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/sdy14", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty14", 10) == 0) { { -return dev_storage + 655; +return dev_storage + 253; } } @@ -22537,7 +22692,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx14", 10) == 0) { { -return dev_storage + 640; +return dev_storage + 768; } } @@ -22552,7 +22707,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw14", 10) == 0) { { -return dev_storage + 625; +return dev_storage + 753; } } @@ -22567,7 +22722,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv14", 10) == 0) { { -return dev_storage + 610; +return dev_storage + 738; } } @@ -22582,7 +22737,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu14", 10) == 0) { { -return dev_storage + 595; +return dev_storage + 723; } } @@ -22723,7 +22878,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt14", 10) == 0) { { -return dev_storage + 580; +return dev_storage + 708; } } @@ -22765,7 +22920,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds14", 10) == 0) { { -return dev_storage + 565; +return dev_storage + 693; } } @@ -22780,7 +22935,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr14", 10) == 0) { { -return dev_storage + 550; +return dev_storage + 678; } } @@ -22795,7 +22950,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq14", 10) == 0) { { -return dev_storage + 535; +return dev_storage + 663; } } @@ -22810,7 +22965,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp14", 10) == 0) { { -return dev_storage + 520; +return dev_storage + 648; } } @@ -22825,7 +22980,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo14", 10) == 0) { { -return dev_storage + 505; +return dev_storage + 633; } } @@ -22843,7 +22998,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn14", 10) == 0) { { -return dev_storage + 490; +return dev_storage + 618; } } @@ -22882,7 +23037,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm14", 10) == 0) { { -return dev_storage + 475; +return dev_storage + 603; } } @@ -22918,7 +23073,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl14", 10) == 0) { { -return dev_storage + 460; +return dev_storage + 588; } } @@ -22933,7 +23088,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk14", 10) == 0) { { -return dev_storage + 445; +return dev_storage + 573; } } @@ -22948,7 +23103,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj14", 10) == 0) { { -return dev_storage + 430; +return dev_storage + 558; } } @@ -22963,7 +23118,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi14", 10) == 0) { { -return dev_storage + 415; +return dev_storage + 543; } } @@ -22978,7 +23133,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh14", 10) == 0) { { -return dev_storage + 400; +return dev_storage + 528; } } @@ -22993,7 +23148,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg14", 10) == 0) { { -return dev_storage + 385; +return dev_storage + 513; } } @@ -23008,7 +23163,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf14", 10) == 0) { { -return dev_storage + 370; +return dev_storage + 498; } } @@ -23023,7 +23178,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde14", 10) == 0) { { -return dev_storage + 355; +return dev_storage + 483; } } @@ -23041,7 +23196,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx4", 10) == 0) { { -return dev_storage + 2292; +return dev_storage + 2420; } } @@ -23056,7 +23211,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw4", 10) == 0) { { -return dev_storage + 2277; +return dev_storage + 2405; } } @@ -23071,7 +23226,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv4", 10) == 0) { { -return dev_storage + 2262; +return dev_storage + 2390; } } @@ -23086,7 +23241,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu4", 10) == 0) { { -return dev_storage + 2247; +return dev_storage + 2375; } } @@ -23101,7 +23256,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt4", 10) == 0) { { -return dev_storage + 2232; +return dev_storage + 2360; } } @@ -23116,7 +23271,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds4", 10) == 0) { { -return dev_storage + 2217; +return dev_storage + 2345; } } @@ -23131,7 +23286,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr4", 10) == 0) { { -return dev_storage + 2202; +return dev_storage + 2330; } } @@ -23146,7 +23301,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq4", 10) == 0) { { -return dev_storage + 2187; +return dev_storage + 2315; } } @@ -23161,7 +23316,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp4", 10) == 0) { { -return dev_storage + 2172; +return dev_storage + 2300; } } @@ -23176,7 +23331,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo4", 10) == 0) { { -return dev_storage + 2157; +return dev_storage + 2285; } } @@ -23191,7 +23346,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn4", 10) == 0) { { -return dev_storage + 2142; +return dev_storage + 2270; } } @@ -23206,7 +23361,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm4", 10) == 0) { { -return dev_storage + 2127; +return dev_storage + 2255; } } @@ -23221,7 +23376,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl4", 10) == 0) { { -return dev_storage + 2112; +return dev_storage + 2240; } } @@ -23236,7 +23391,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk4", 10) == 0) { { -return dev_storage + 2097; +return dev_storage + 2225; } } @@ -23251,7 +23406,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj4", 10) == 0) { { -return dev_storage + 2082; +return dev_storage + 2210; } } @@ -23266,7 +23421,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi4", 10) == 0) { { -return dev_storage + 2067; +return dev_storage + 2195; } } @@ -23281,7 +23436,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh4", 10) == 0) { { -return dev_storage + 2052; +return dev_storage + 2180; } } @@ -23296,7 +23451,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg4", 10) == 0) { { -return dev_storage + 2037; +return dev_storage + 2165; } } @@ -23311,7 +23466,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf4", 10) == 0) { { -return dev_storage + 2022; +return dev_storage + 2150; } } @@ -23326,7 +23481,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde4", 10) == 0) { { -return dev_storage + 2007; +return dev_storage + 2135; } } @@ -23341,7 +23496,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd4", 10) == 0) { { -return dev_storage + 1992; +return dev_storage + 2120; } } @@ -23356,7 +23511,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc4", 10) == 0) { { -return dev_storage + 1977; +return dev_storage + 2105; } } @@ -23371,7 +23526,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb4", 10) == 0) { { -return dev_storage + 1962; +return dev_storage + 2090; } } @@ -23386,7 +23541,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda4", 10) == 0) { { -return dev_storage + 1947; +return dev_storage + 2075; } } @@ -23404,7 +23559,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd14", 10) == 0) { { -return dev_storage + 340; +return dev_storage + 468; } } @@ -23419,7 +23574,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd14", 10) == 0) { { -return dev_storage + 254; +return dev_storage + 382; } } @@ -23449,7 +23604,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz4", 10) == 0) { { -return dev_storage + 1908; +return dev_storage + 2036; } } @@ -23464,7 +23619,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy4", 10) == 0) { { -return dev_storage + 1893; +return dev_storage + 2021; } } @@ -23479,7 +23634,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx4", 10) == 0) { { -return dev_storage + 1878; +return dev_storage + 2006; } } @@ -23494,7 +23649,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw4", 10) == 0) { { -return dev_storage + 1863; +return dev_storage + 1991; } } @@ -23509,7 +23664,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv4", 10) == 0) { { -return dev_storage + 1848; +return dev_storage + 1976; } } @@ -23524,7 +23679,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu4", 10) == 0) { { -return dev_storage + 1833; +return dev_storage + 1961; } } @@ -23539,7 +23694,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct4", 10) == 0) { { -return dev_storage + 1818; +return dev_storage + 1946; } } @@ -23554,7 +23709,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs4", 10) == 0) { { -return dev_storage + 1803; +return dev_storage + 1931; } } @@ -23569,7 +23724,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr4", 10) == 0) { { -return dev_storage + 1788; +return dev_storage + 1916; } } @@ -23584,7 +23739,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq4", 10) == 0) { { -return dev_storage + 1773; +return dev_storage + 1901; } } @@ -23599,7 +23754,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp4", 10) == 0) { { -return dev_storage + 1758; +return dev_storage + 1886; } } @@ -23614,7 +23769,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco4", 10) == 0) { { -return dev_storage + 1743; +return dev_storage + 1871; } } @@ -23629,7 +23784,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn4", 10) == 0) { { -return dev_storage + 1728; +return dev_storage + 1856; } } @@ -23644,7 +23799,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm4", 10) == 0) { { -return dev_storage + 1713; +return dev_storage + 1841; } } @@ -23659,7 +23814,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl4", 10) == 0) { { -return dev_storage + 1698; +return dev_storage + 1826; } } @@ -23674,7 +23829,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck4", 10) == 0) { { -return dev_storage + 1683; +return dev_storage + 1811; } } @@ -23689,7 +23844,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj4", 10) == 0) { { -return dev_storage + 1668; +return dev_storage + 1796; } } @@ -23704,7 +23859,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci4", 10) == 0) { { -return dev_storage + 1653; +return dev_storage + 1781; } } @@ -23719,7 +23874,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch4", 10) == 0) { { -return dev_storage + 1638; +return dev_storage + 1766; } } @@ -23734,7 +23889,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg4", 10) == 0) { { -return dev_storage + 1623; +return dev_storage + 1751; } } @@ -23749,7 +23904,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf4", 10) == 0) { { -return dev_storage + 1608; +return dev_storage + 1736; } } @@ -23764,7 +23919,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce4", 10) == 0) { { -return dev_storage + 1593; +return dev_storage + 1721; } } @@ -23779,7 +23934,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd4", 10) == 0) { { -return dev_storage + 1578; +return dev_storage + 1706; } } @@ -23794,7 +23949,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc4", 10) == 0) { { -return dev_storage + 1563; +return dev_storage + 1691; } } @@ -23809,7 +23964,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb4", 10) == 0) { { -return dev_storage + 1548; +return dev_storage + 1676; } } @@ -23824,7 +23979,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca4", 10) == 0) { { -return dev_storage + 1533; +return dev_storage + 1661; } } @@ -23839,7 +23994,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc14", 10) == 0) { { -return dev_storage + 325; +return dev_storage + 453; } } @@ -23863,7 +24018,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz4", 10) == 0) { { -return dev_storage + 1492; +return dev_storage + 1620; } } @@ -23878,7 +24033,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby4", 10) == 0) { { -return dev_storage + 1477; +return dev_storage + 1605; } } @@ -23893,7 +24048,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx4", 10) == 0) { { -return dev_storage + 1462; +return dev_storage + 1590; } } @@ -23908,7 +24063,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw4", 10) == 0) { { -return dev_storage + 1447; +return dev_storage + 1575; } } @@ -23923,7 +24078,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv4", 10) == 0) { { -return dev_storage + 1432; +return dev_storage + 1560; } } @@ -23938,7 +24093,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu4", 10) == 0) { { -return dev_storage + 1417; +return dev_storage + 1545; } } @@ -23953,7 +24108,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt4", 10) == 0) { { -return dev_storage + 1402; +return dev_storage + 1530; } } @@ -23968,7 +24123,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs4", 10) == 0) { { -return dev_storage + 1387; +return dev_storage + 1515; } } @@ -23983,7 +24138,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr4", 10) == 0) { { -return dev_storage + 1372; +return dev_storage + 1500; } } @@ -23998,7 +24153,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq4", 10) == 0) { { -return dev_storage + 1357; +return dev_storage + 1485; } } @@ -24013,7 +24168,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp4", 10) == 0) { { -return dev_storage + 1342; +return dev_storage + 1470; } } @@ -24028,7 +24183,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo4", 10) == 0) { { -return dev_storage + 1327; +return dev_storage + 1455; } } @@ -24043,7 +24198,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn4", 10) == 0) { { -return dev_storage + 1312; +return dev_storage + 1440; } } @@ -24058,7 +24213,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm4", 10) == 0) { { -return dev_storage + 1297; +return dev_storage + 1425; } } @@ -24073,7 +24228,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl4", 10) == 0) { { -return dev_storage + 1282; +return dev_storage + 1410; } } @@ -24088,7 +24243,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk4", 10) == 0) { { -return dev_storage + 1267; +return dev_storage + 1395; } } @@ -24103,7 +24258,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj4", 10) == 0) { { -return dev_storage + 1252; +return dev_storage + 1380; } } @@ -24118,7 +24273,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi4", 10) == 0) { { -return dev_storage + 1237; +return dev_storage + 1365; } } @@ -24133,7 +24288,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh4", 10) == 0) { { -return dev_storage + 1222; +return dev_storage + 1350; } } @@ -24148,7 +24303,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg4", 10) == 0) { { -return dev_storage + 1207; +return dev_storage + 1335; } } @@ -24163,7 +24318,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf4", 10) == 0) { { -return dev_storage + 1192; +return dev_storage + 1320; } } @@ -24178,7 +24333,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe4", 10) == 0) { { -return dev_storage + 1177; +return dev_storage + 1305; } } @@ -24193,7 +24348,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd4", 10) == 0) { { -return dev_storage + 1162; +return dev_storage + 1290; } } @@ -24208,7 +24363,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc4", 10) == 0) { { -return dev_storage + 1147; +return dev_storage + 1275; } } @@ -24223,7 +24378,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb4", 10) == 0) { { -return dev_storage + 1132; +return dev_storage + 1260; } } @@ -24238,7 +24393,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba4", 10) == 0) { { -return dev_storage + 1117; +return dev_storage + 1245; } } @@ -24253,7 +24408,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb14", 10) == 0) { { -return dev_storage + 310; +return dev_storage + 438; } } @@ -24277,7 +24432,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz4", 10) == 0) { { -return dev_storage + 1076; +return dev_storage + 1204; } } @@ -24292,7 +24447,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday4", 10) == 0) { { -return dev_storage + 1061; +return dev_storage + 1189; } } @@ -24307,7 +24462,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax4", 10) == 0) { { -return dev_storage + 1046; +return dev_storage + 1174; } } @@ -24322,7 +24477,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw4", 10) == 0) { { -return dev_storage + 1031; +return dev_storage + 1159; } } @@ -24337,7 +24492,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav4", 10) == 0) { { -return dev_storage + 1016; +return dev_storage + 1144; } } @@ -24352,7 +24507,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau4", 10) == 0) { { -return dev_storage + 1001; +return dev_storage + 1129; } } @@ -24367,7 +24522,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat4", 10) == 0) { { -return dev_storage + 986; +return dev_storage + 1114; } } @@ -24382,7 +24537,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas4", 10) == 0) { { -return dev_storage + 971; +return dev_storage + 1099; } } @@ -24397,7 +24552,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar4", 10) == 0) { { -return dev_storage + 956; +return dev_storage + 1084; } } @@ -24412,7 +24567,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq4", 10) == 0) { { -return dev_storage + 941; +return dev_storage + 1069; } } @@ -24427,7 +24582,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap4", 10) == 0) { { -return dev_storage + 926; +return dev_storage + 1054; } } @@ -24442,7 +24597,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao4", 10) == 0) { { -return dev_storage + 911; +return dev_storage + 1039; } } @@ -24457,7 +24612,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan4", 10) == 0) { { -return dev_storage + 896; +return dev_storage + 1024; } } @@ -24472,7 +24627,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam4", 10) == 0) { { -return dev_storage + 881; +return dev_storage + 1009; } } @@ -24487,7 +24642,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal4", 10) == 0) { { -return dev_storage + 866; +return dev_storage + 994; } } @@ -24502,7 +24657,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak4", 10) == 0) { { -return dev_storage + 851; +return dev_storage + 979; } } @@ -24517,7 +24672,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj4", 10) == 0) { { -return dev_storage + 836; +return dev_storage + 964; } } @@ -24532,7 +24687,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai4", 10) == 0) { { -return dev_storage + 821; +return dev_storage + 949; } } @@ -24547,7 +24702,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah4", 10) == 0) { { -return dev_storage + 806; +return dev_storage + 934; } } @@ -24562,7 +24717,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag4", 10) == 0) { { -return dev_storage + 791; +return dev_storage + 919; } } @@ -24577,7 +24732,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf4", 10) == 0) { { -return dev_storage + 776; +return dev_storage + 904; } } @@ -24592,7 +24747,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae4", 10) == 0) { { -return dev_storage + 761; +return dev_storage + 889; } } @@ -24607,7 +24762,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad4", 10) == 0) { { -return dev_storage + 746; +return dev_storage + 874; } } @@ -24622,7 +24777,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac4", 10) == 0) { { -return dev_storage + 731; +return dev_storage + 859; } } @@ -24637,7 +24792,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab4", 10) == 0) { { -return dev_storage + 716; +return dev_storage + 844; } } @@ -24652,7 +24807,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa4", 10) == 0) { { -return dev_storage + 701; +return dev_storage + 829; } } @@ -24667,7 +24822,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda14", 10) == 0) { { -return dev_storage + 295; +return dev_storage + 423; } } @@ -24691,7 +24846,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st124", 10) == 0) { { -return dev_storage + 2444; +return dev_storage + 2572; } } @@ -24706,7 +24861,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st114", 10) == 0) { { -return dev_storage + 2434; +return dev_storage + 2562; } } @@ -24721,7 +24876,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st104", 10) == 0) { { -return dev_storage + 2424; +return dev_storage + 2552; } } @@ -24751,7 +24906,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz13", 10) == 0) { { -return dev_storage + 669; +return dev_storage + 797; } } @@ -24765,11 +24920,26 @@ return NULL; case 'y': switch (KR_keyword [8]) { + case 'm': + if (strncmp (KR_keyword, "/dev/ptym3", 10) == 0) + { +{ +return dev_storage + 306; + +} + } + else + { +{ +return NULL; + +} + } case 'S': if (strncmp (KR_keyword, "/dev/ttyS3", 10) == 0) { { -return dev_storage + 2516; +return dev_storage + 2580; } } @@ -24781,10 +24951,10 @@ return NULL; } } case '6': - if (strncmp (KR_keyword, "/dev/tty63", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty63", 10) == 0) { { -return dev_storage + 2512; +return dev_storage + 302; } } @@ -24796,10 +24966,10 @@ return NULL; } } case '5': - if (strncmp (KR_keyword, "/dev/tty53", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty53", 10) == 0) { { -return dev_storage + 2502; +return dev_storage + 292; } } @@ -24811,10 +24981,10 @@ return NULL; } } case '4': - if (strncmp (KR_keyword, "/dev/tty43", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty43", 10) == 0) { { -return dev_storage + 2492; +return dev_storage + 282; } } @@ -24826,10 +24996,10 @@ return NULL; } } case '3': - if (strncmp (KR_keyword, "/dev/tty33", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty33", 10) == 0) { { -return dev_storage + 2482; +return dev_storage + 272; } } @@ -24841,10 +25011,10 @@ return NULL; } } case '2': - if (strncmp (KR_keyword, "/dev/tty23", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty23", 10) == 0) { { -return dev_storage + 2472; +return dev_storage + 262; } } @@ -24858,11 +25028,11 @@ return NULL; case '1': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty13", 10) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/sdy13", 10) == 0) { { -return dev_storage + 2462; +return dev_storage + 782; } } @@ -24873,11 +25043,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/sdy13", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty13", 10) == 0) { { -return dev_storage + 654; +return dev_storage + 252; } } @@ -24904,7 +25074,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx13", 10) == 0) { { -return dev_storage + 639; +return dev_storage + 767; } } @@ -24919,7 +25089,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw13", 10) == 0) { { -return dev_storage + 624; +return dev_storage + 752; } } @@ -24934,7 +25104,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv13", 10) == 0) { { -return dev_storage + 609; +return dev_storage + 737; } } @@ -24949,7 +25119,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu13", 10) == 0) { { -return dev_storage + 594; +return dev_storage + 722; } } @@ -25090,7 +25260,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt13", 10) == 0) { { -return dev_storage + 579; +return dev_storage + 707; } } @@ -25132,7 +25302,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds13", 10) == 0) { { -return dev_storage + 564; +return dev_storage + 692; } } @@ -25147,7 +25317,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr13", 10) == 0) { { -return dev_storage + 549; +return dev_storage + 677; } } @@ -25162,7 +25332,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq13", 10) == 0) { { -return dev_storage + 534; +return dev_storage + 662; } } @@ -25177,7 +25347,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp13", 10) == 0) { { -return dev_storage + 519; +return dev_storage + 647; } } @@ -25192,7 +25362,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo13", 10) == 0) { { -return dev_storage + 504; +return dev_storage + 632; } } @@ -25210,7 +25380,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn13", 10) == 0) { { -return dev_storage + 489; +return dev_storage + 617; } } @@ -25249,7 +25419,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm13", 10) == 0) { { -return dev_storage + 474; +return dev_storage + 602; } } @@ -25285,7 +25455,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl13", 10) == 0) { { -return dev_storage + 459; +return dev_storage + 587; } } @@ -25300,7 +25470,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk13", 10) == 0) { { -return dev_storage + 444; +return dev_storage + 572; } } @@ -25315,7 +25485,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj13", 10) == 0) { { -return dev_storage + 429; +return dev_storage + 557; } } @@ -25330,7 +25500,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi13", 10) == 0) { { -return dev_storage + 414; +return dev_storage + 542; } } @@ -25345,7 +25515,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh13", 10) == 0) { { -return dev_storage + 399; +return dev_storage + 527; } } @@ -25360,7 +25530,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg13", 10) == 0) { { -return dev_storage + 384; +return dev_storage + 512; } } @@ -25375,7 +25545,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf13", 10) == 0) { { -return dev_storage + 369; +return dev_storage + 497; } } @@ -25390,7 +25560,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde13", 10) == 0) { { -return dev_storage + 354; +return dev_storage + 482; } } @@ -25408,7 +25578,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx3", 10) == 0) { { -return dev_storage + 2291; +return dev_storage + 2419; } } @@ -25423,7 +25593,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw3", 10) == 0) { { -return dev_storage + 2276; +return dev_storage + 2404; } } @@ -25438,7 +25608,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv3", 10) == 0) { { -return dev_storage + 2261; +return dev_storage + 2389; } } @@ -25453,7 +25623,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu3", 10) == 0) { { -return dev_storage + 2246; +return dev_storage + 2374; } } @@ -25468,7 +25638,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt3", 10) == 0) { { -return dev_storage + 2231; +return dev_storage + 2359; } } @@ -25483,7 +25653,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds3", 10) == 0) { { -return dev_storage + 2216; +return dev_storage + 2344; } } @@ -25498,7 +25668,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr3", 10) == 0) { { -return dev_storage + 2201; +return dev_storage + 2329; } } @@ -25513,7 +25683,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq3", 10) == 0) { { -return dev_storage + 2186; +return dev_storage + 2314; } } @@ -25528,7 +25698,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp3", 10) == 0) { { -return dev_storage + 2171; +return dev_storage + 2299; } } @@ -25543,7 +25713,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo3", 10) == 0) { { -return dev_storage + 2156; +return dev_storage + 2284; } } @@ -25558,7 +25728,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn3", 10) == 0) { { -return dev_storage + 2141; +return dev_storage + 2269; } } @@ -25573,7 +25743,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm3", 10) == 0) { { -return dev_storage + 2126; +return dev_storage + 2254; } } @@ -25588,7 +25758,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl3", 10) == 0) { { -return dev_storage + 2111; +return dev_storage + 2239; } } @@ -25603,7 +25773,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk3", 10) == 0) { { -return dev_storage + 2096; +return dev_storage + 2224; } } @@ -25618,7 +25788,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj3", 10) == 0) { { -return dev_storage + 2081; +return dev_storage + 2209; } } @@ -25633,7 +25803,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi3", 10) == 0) { { -return dev_storage + 2066; +return dev_storage + 2194; } } @@ -25648,7 +25818,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh3", 10) == 0) { { -return dev_storage + 2051; +return dev_storage + 2179; } } @@ -25663,7 +25833,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg3", 10) == 0) { { -return dev_storage + 2036; +return dev_storage + 2164; } } @@ -25678,7 +25848,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf3", 10) == 0) { { -return dev_storage + 2021; +return dev_storage + 2149; } } @@ -25693,7 +25863,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde3", 10) == 0) { { -return dev_storage + 2006; +return dev_storage + 2134; } } @@ -25708,7 +25878,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd3", 10) == 0) { { -return dev_storage + 1991; +return dev_storage + 2119; } } @@ -25723,7 +25893,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc3", 10) == 0) { { -return dev_storage + 1976; +return dev_storage + 2104; } } @@ -25738,7 +25908,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb3", 10) == 0) { { -return dev_storage + 1961; +return dev_storage + 2089; } } @@ -25753,7 +25923,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda3", 10) == 0) { { -return dev_storage + 1946; +return dev_storage + 2074; } } @@ -25771,7 +25941,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd13", 10) == 0) { { -return dev_storage + 339; +return dev_storage + 467; } } @@ -25786,7 +25956,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd13", 10) == 0) { { -return dev_storage + 253; +return dev_storage + 381; } } @@ -25816,7 +25986,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz3", 10) == 0) { { -return dev_storage + 1907; +return dev_storage + 2035; } } @@ -25831,7 +26001,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy3", 10) == 0) { { -return dev_storage + 1892; +return dev_storage + 2020; } } @@ -25846,7 +26016,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx3", 10) == 0) { { -return dev_storage + 1877; +return dev_storage + 2005; } } @@ -25861,7 +26031,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw3", 10) == 0) { { -return dev_storage + 1862; +return dev_storage + 1990; } } @@ -25876,7 +26046,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv3", 10) == 0) { { -return dev_storage + 1847; +return dev_storage + 1975; } } @@ -25891,7 +26061,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu3", 10) == 0) { { -return dev_storage + 1832; +return dev_storage + 1960; } } @@ -25906,7 +26076,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct3", 10) == 0) { { -return dev_storage + 1817; +return dev_storage + 1945; } } @@ -25921,7 +26091,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs3", 10) == 0) { { -return dev_storage + 1802; +return dev_storage + 1930; } } @@ -25936,7 +26106,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr3", 10) == 0) { { -return dev_storage + 1787; +return dev_storage + 1915; } } @@ -25951,7 +26121,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq3", 10) == 0) { { -return dev_storage + 1772; +return dev_storage + 1900; } } @@ -25966,7 +26136,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp3", 10) == 0) { { -return dev_storage + 1757; +return dev_storage + 1885; } } @@ -25981,7 +26151,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco3", 10) == 0) { { -return dev_storage + 1742; +return dev_storage + 1870; } } @@ -25996,7 +26166,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn3", 10) == 0) { { -return dev_storage + 1727; +return dev_storage + 1855; } } @@ -26011,7 +26181,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm3", 10) == 0) { { -return dev_storage + 1712; +return dev_storage + 1840; } } @@ -26026,7 +26196,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl3", 10) == 0) { { -return dev_storage + 1697; +return dev_storage + 1825; } } @@ -26041,7 +26211,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck3", 10) == 0) { { -return dev_storage + 1682; +return dev_storage + 1810; } } @@ -26056,7 +26226,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj3", 10) == 0) { { -return dev_storage + 1667; +return dev_storage + 1795; } } @@ -26071,7 +26241,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci3", 10) == 0) { { -return dev_storage + 1652; +return dev_storage + 1780; } } @@ -26086,7 +26256,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch3", 10) == 0) { { -return dev_storage + 1637; +return dev_storage + 1765; } } @@ -26101,7 +26271,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg3", 10) == 0) { { -return dev_storage + 1622; +return dev_storage + 1750; } } @@ -26116,7 +26286,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf3", 10) == 0) { { -return dev_storage + 1607; +return dev_storage + 1735; } } @@ -26131,7 +26301,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce3", 10) == 0) { { -return dev_storage + 1592; +return dev_storage + 1720; } } @@ -26146,7 +26316,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd3", 10) == 0) { { -return dev_storage + 1577; +return dev_storage + 1705; } } @@ -26161,7 +26331,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc3", 10) == 0) { { -return dev_storage + 1562; +return dev_storage + 1690; } } @@ -26176,7 +26346,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb3", 10) == 0) { { -return dev_storage + 1547; +return dev_storage + 1675; } } @@ -26191,7 +26361,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca3", 10) == 0) { { -return dev_storage + 1532; +return dev_storage + 1660; } } @@ -26206,7 +26376,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc13", 10) == 0) { { -return dev_storage + 324; +return dev_storage + 452; } } @@ -26230,7 +26400,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz3", 10) == 0) { { -return dev_storage + 1491; +return dev_storage + 1619; } } @@ -26245,7 +26415,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby3", 10) == 0) { { -return dev_storage + 1476; +return dev_storage + 1604; } } @@ -26260,7 +26430,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx3", 10) == 0) { { -return dev_storage + 1461; +return dev_storage + 1589; } } @@ -26275,7 +26445,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw3", 10) == 0) { { -return dev_storage + 1446; +return dev_storage + 1574; } } @@ -26290,7 +26460,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv3", 10) == 0) { { -return dev_storage + 1431; +return dev_storage + 1559; } } @@ -26305,7 +26475,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu3", 10) == 0) { { -return dev_storage + 1416; +return dev_storage + 1544; } } @@ -26320,7 +26490,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt3", 10) == 0) { { -return dev_storage + 1401; +return dev_storage + 1529; } } @@ -26335,7 +26505,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs3", 10) == 0) { { -return dev_storage + 1386; +return dev_storage + 1514; } } @@ -26350,7 +26520,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr3", 10) == 0) { { -return dev_storage + 1371; +return dev_storage + 1499; } } @@ -26365,7 +26535,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq3", 10) == 0) { { -return dev_storage + 1356; +return dev_storage + 1484; } } @@ -26380,7 +26550,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp3", 10) == 0) { { -return dev_storage + 1341; +return dev_storage + 1469; } } @@ -26395,7 +26565,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo3", 10) == 0) { { -return dev_storage + 1326; +return dev_storage + 1454; } } @@ -26410,7 +26580,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn3", 10) == 0) { { -return dev_storage + 1311; +return dev_storage + 1439; } } @@ -26425,7 +26595,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm3", 10) == 0) { { -return dev_storage + 1296; +return dev_storage + 1424; } } @@ -26440,7 +26610,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl3", 10) == 0) { { -return dev_storage + 1281; +return dev_storage + 1409; } } @@ -26455,7 +26625,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk3", 10) == 0) { { -return dev_storage + 1266; +return dev_storage + 1394; } } @@ -26470,7 +26640,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj3", 10) == 0) { { -return dev_storage + 1251; +return dev_storage + 1379; } } @@ -26485,7 +26655,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi3", 10) == 0) { { -return dev_storage + 1236; +return dev_storage + 1364; } } @@ -26500,7 +26670,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh3", 10) == 0) { { -return dev_storage + 1221; +return dev_storage + 1349; } } @@ -26515,7 +26685,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg3", 10) == 0) { { -return dev_storage + 1206; +return dev_storage + 1334; } } @@ -26530,7 +26700,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf3", 10) == 0) { { -return dev_storage + 1191; +return dev_storage + 1319; } } @@ -26545,7 +26715,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe3", 10) == 0) { { -return dev_storage + 1176; +return dev_storage + 1304; } } @@ -26560,7 +26730,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd3", 10) == 0) { { -return dev_storage + 1161; +return dev_storage + 1289; } } @@ -26575,7 +26745,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc3", 10) == 0) { { -return dev_storage + 1146; +return dev_storage + 1274; } } @@ -26590,7 +26760,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb3", 10) == 0) { { -return dev_storage + 1131; +return dev_storage + 1259; } } @@ -26605,7 +26775,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba3", 10) == 0) { { -return dev_storage + 1116; +return dev_storage + 1244; } } @@ -26620,7 +26790,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb13", 10) == 0) { { -return dev_storage + 309; +return dev_storage + 437; } } @@ -26644,7 +26814,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz3", 10) == 0) { { -return dev_storage + 1075; +return dev_storage + 1203; } } @@ -26659,7 +26829,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday3", 10) == 0) { { -return dev_storage + 1060; +return dev_storage + 1188; } } @@ -26674,7 +26844,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax3", 10) == 0) { { -return dev_storage + 1045; +return dev_storage + 1173; } } @@ -26689,7 +26859,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw3", 10) == 0) { { -return dev_storage + 1030; +return dev_storage + 1158; } } @@ -26704,7 +26874,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav3", 10) == 0) { { -return dev_storage + 1015; +return dev_storage + 1143; } } @@ -26719,7 +26889,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau3", 10) == 0) { { -return dev_storage + 1000; +return dev_storage + 1128; } } @@ -26734,7 +26904,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat3", 10) == 0) { { -return dev_storage + 985; +return dev_storage + 1113; } } @@ -26749,7 +26919,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas3", 10) == 0) { { -return dev_storage + 970; +return dev_storage + 1098; } } @@ -26764,7 +26934,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar3", 10) == 0) { { -return dev_storage + 955; +return dev_storage + 1083; } } @@ -26779,7 +26949,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq3", 10) == 0) { { -return dev_storage + 940; +return dev_storage + 1068; } } @@ -26794,7 +26964,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap3", 10) == 0) { { -return dev_storage + 925; +return dev_storage + 1053; } } @@ -26809,7 +26979,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao3", 10) == 0) { { -return dev_storage + 910; +return dev_storage + 1038; } } @@ -26824,7 +26994,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan3", 10) == 0) { { -return dev_storage + 895; +return dev_storage + 1023; } } @@ -26839,7 +27009,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam3", 10) == 0) { { -return dev_storage + 880; +return dev_storage + 1008; } } @@ -26854,7 +27024,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal3", 10) == 0) { { -return dev_storage + 865; +return dev_storage + 993; } } @@ -26869,7 +27039,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak3", 10) == 0) { { -return dev_storage + 850; +return dev_storage + 978; } } @@ -26884,7 +27054,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj3", 10) == 0) { { -return dev_storage + 835; +return dev_storage + 963; } } @@ -26899,7 +27069,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai3", 10) == 0) { { -return dev_storage + 820; +return dev_storage + 948; } } @@ -26914,7 +27084,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah3", 10) == 0) { { -return dev_storage + 805; +return dev_storage + 933; } } @@ -26929,7 +27099,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag3", 10) == 0) { { -return dev_storage + 790; +return dev_storage + 918; } } @@ -26944,7 +27114,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf3", 10) == 0) { { -return dev_storage + 775; +return dev_storage + 903; } } @@ -26959,7 +27129,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae3", 10) == 0) { { -return dev_storage + 760; +return dev_storage + 888; } } @@ -26974,7 +27144,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad3", 10) == 0) { { -return dev_storage + 745; +return dev_storage + 873; } } @@ -26989,7 +27159,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac3", 10) == 0) { { -return dev_storage + 730; +return dev_storage + 858; } } @@ -27004,7 +27174,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab3", 10) == 0) { { -return dev_storage + 715; +return dev_storage + 843; } } @@ -27019,7 +27189,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa3", 10) == 0) { { -return dev_storage + 700; +return dev_storage + 828; } } @@ -27034,7 +27204,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda13", 10) == 0) { { -return dev_storage + 294; +return dev_storage + 422; } } @@ -27058,7 +27228,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st123", 10) == 0) { { -return dev_storage + 2443; +return dev_storage + 2571; } } @@ -27073,7 +27243,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st113", 10) == 0) { { -return dev_storage + 2433; +return dev_storage + 2561; } } @@ -27088,7 +27258,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st103", 10) == 0) { { -return dev_storage + 2423; +return dev_storage + 2551; } } @@ -27118,7 +27288,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz12", 10) == 0) { { -return dev_storage + 668; +return dev_storage + 796; } } @@ -27132,11 +27302,26 @@ return NULL; case 'y': switch (KR_keyword [8]) { + case 'm': + if (strncmp (KR_keyword, "/dev/ptym2", 10) == 0) + { +{ +return dev_storage + 305; + +} + } + else + { +{ +return NULL; + +} + } case 'S': if (strncmp (KR_keyword, "/dev/ttyS2", 10) == 0) { { -return dev_storage + 2515; +return dev_storage + 2579; } } @@ -27148,10 +27333,10 @@ return NULL; } } case '6': - if (strncmp (KR_keyword, "/dev/tty62", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty62", 10) == 0) { { -return dev_storage + 2511; +return dev_storage + 301; } } @@ -27163,10 +27348,10 @@ return NULL; } } case '5': - if (strncmp (KR_keyword, "/dev/tty52", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty52", 10) == 0) { { -return dev_storage + 2501; +return dev_storage + 291; } } @@ -27178,10 +27363,10 @@ return NULL; } } case '4': - if (strncmp (KR_keyword, "/dev/tty42", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty42", 10) == 0) { { -return dev_storage + 2491; +return dev_storage + 281; } } @@ -27193,10 +27378,10 @@ return NULL; } } case '3': - if (strncmp (KR_keyword, "/dev/tty32", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty32", 10) == 0) { { -return dev_storage + 2481; +return dev_storage + 271; } } @@ -27208,10 +27393,10 @@ return NULL; } } case '2': - if (strncmp (KR_keyword, "/dev/tty22", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty22", 10) == 0) { { -return dev_storage + 2471; +return dev_storage + 261; } } @@ -27225,11 +27410,11 @@ return NULL; case '1': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty12", 10) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/sdy12", 10) == 0) { { -return dev_storage + 2461; +return dev_storage + 781; } } @@ -27240,11 +27425,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/sdy12", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty12", 10) == 0) { { -return dev_storage + 653; +return dev_storage + 251; } } @@ -27271,7 +27456,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx12", 10) == 0) { { -return dev_storage + 638; +return dev_storage + 766; } } @@ -27286,7 +27471,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw12", 10) == 0) { { -return dev_storage + 623; +return dev_storage + 751; } } @@ -27301,7 +27486,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv12", 10) == 0) { { -return dev_storage + 608; +return dev_storage + 736; } } @@ -27316,7 +27501,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu12", 10) == 0) { { -return dev_storage + 593; +return dev_storage + 721; } } @@ -27457,7 +27642,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt12", 10) == 0) { { -return dev_storage + 578; +return dev_storage + 706; } } @@ -27499,7 +27684,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds12", 10) == 0) { { -return dev_storage + 563; +return dev_storage + 691; } } @@ -27514,7 +27699,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr12", 10) == 0) { { -return dev_storage + 548; +return dev_storage + 676; } } @@ -27529,7 +27714,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq12", 10) == 0) { { -return dev_storage + 533; +return dev_storage + 661; } } @@ -27544,7 +27729,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp12", 10) == 0) { { -return dev_storage + 518; +return dev_storage + 646; } } @@ -27559,7 +27744,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo12", 10) == 0) { { -return dev_storage + 503; +return dev_storage + 631; } } @@ -27577,7 +27762,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn12", 10) == 0) { { -return dev_storage + 488; +return dev_storage + 616; } } @@ -27616,7 +27801,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm12", 10) == 0) { { -return dev_storage + 473; +return dev_storage + 601; } } @@ -27652,7 +27837,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl12", 10) == 0) { { -return dev_storage + 458; +return dev_storage + 586; } } @@ -27667,7 +27852,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk12", 10) == 0) { { -return dev_storage + 443; +return dev_storage + 571; } } @@ -27682,7 +27867,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj12", 10) == 0) { { -return dev_storage + 428; +return dev_storage + 556; } } @@ -27697,7 +27882,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi12", 10) == 0) { { -return dev_storage + 413; +return dev_storage + 541; } } @@ -27712,7 +27897,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh12", 10) == 0) { { -return dev_storage + 398; +return dev_storage + 526; } } @@ -27727,7 +27912,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg12", 10) == 0) { { -return dev_storage + 383; +return dev_storage + 511; } } @@ -27742,7 +27927,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf12", 10) == 0) { { -return dev_storage + 368; +return dev_storage + 496; } } @@ -27757,7 +27942,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde12", 10) == 0) { { -return dev_storage + 353; +return dev_storage + 481; } } @@ -27775,7 +27960,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx2", 10) == 0) { { -return dev_storage + 2290; +return dev_storage + 2418; } } @@ -27790,7 +27975,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw2", 10) == 0) { { -return dev_storage + 2275; +return dev_storage + 2403; } } @@ -27805,7 +27990,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv2", 10) == 0) { { -return dev_storage + 2260; +return dev_storage + 2388; } } @@ -27820,7 +28005,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu2", 10) == 0) { { -return dev_storage + 2245; +return dev_storage + 2373; } } @@ -27835,7 +28020,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt2", 10) == 0) { { -return dev_storage + 2230; +return dev_storage + 2358; } } @@ -27850,7 +28035,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds2", 10) == 0) { { -return dev_storage + 2215; +return dev_storage + 2343; } } @@ -27865,7 +28050,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr2", 10) == 0) { { -return dev_storage + 2200; +return dev_storage + 2328; } } @@ -27880,7 +28065,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq2", 10) == 0) { { -return dev_storage + 2185; +return dev_storage + 2313; } } @@ -27895,7 +28080,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp2", 10) == 0) { { -return dev_storage + 2170; +return dev_storage + 2298; } } @@ -27910,7 +28095,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo2", 10) == 0) { { -return dev_storage + 2155; +return dev_storage + 2283; } } @@ -27925,7 +28110,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn2", 10) == 0) { { -return dev_storage + 2140; +return dev_storage + 2268; } } @@ -27940,7 +28125,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm2", 10) == 0) { { -return dev_storage + 2125; +return dev_storage + 2253; } } @@ -27955,7 +28140,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl2", 10) == 0) { { -return dev_storage + 2110; +return dev_storage + 2238; } } @@ -27970,7 +28155,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk2", 10) == 0) { { -return dev_storage + 2095; +return dev_storage + 2223; } } @@ -27985,7 +28170,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj2", 10) == 0) { { -return dev_storage + 2080; +return dev_storage + 2208; } } @@ -28000,7 +28185,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi2", 10) == 0) { { -return dev_storage + 2065; +return dev_storage + 2193; } } @@ -28015,7 +28200,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh2", 10) == 0) { { -return dev_storage + 2050; +return dev_storage + 2178; } } @@ -28030,7 +28215,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg2", 10) == 0) { { -return dev_storage + 2035; +return dev_storage + 2163; } } @@ -28045,7 +28230,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf2", 10) == 0) { { -return dev_storage + 2020; +return dev_storage + 2148; } } @@ -28060,7 +28245,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde2", 10) == 0) { { -return dev_storage + 2005; +return dev_storage + 2133; } } @@ -28075,7 +28260,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd2", 10) == 0) { { -return dev_storage + 1990; +return dev_storage + 2118; } } @@ -28090,7 +28275,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc2", 10) == 0) { { -return dev_storage + 1975; +return dev_storage + 2103; } } @@ -28105,7 +28290,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb2", 10) == 0) { { -return dev_storage + 1960; +return dev_storage + 2088; } } @@ -28120,7 +28305,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda2", 10) == 0) { { -return dev_storage + 1945; +return dev_storage + 2073; } } @@ -28138,7 +28323,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd12", 10) == 0) { { -return dev_storage + 338; +return dev_storage + 466; } } @@ -28153,7 +28338,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd12", 10) == 0) { { -return dev_storage + 252; +return dev_storage + 380; } } @@ -28183,7 +28368,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz2", 10) == 0) { { -return dev_storage + 1906; +return dev_storage + 2034; } } @@ -28198,7 +28383,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy2", 10) == 0) { { -return dev_storage + 1891; +return dev_storage + 2019; } } @@ -28213,7 +28398,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx2", 10) == 0) { { -return dev_storage + 1876; +return dev_storage + 2004; } } @@ -28228,7 +28413,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw2", 10) == 0) { { -return dev_storage + 1861; +return dev_storage + 1989; } } @@ -28243,7 +28428,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv2", 10) == 0) { { -return dev_storage + 1846; +return dev_storage + 1974; } } @@ -28258,7 +28443,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu2", 10) == 0) { { -return dev_storage + 1831; +return dev_storage + 1959; } } @@ -28273,7 +28458,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct2", 10) == 0) { { -return dev_storage + 1816; +return dev_storage + 1944; } } @@ -28288,7 +28473,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs2", 10) == 0) { { -return dev_storage + 1801; +return dev_storage + 1929; } } @@ -28303,7 +28488,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr2", 10) == 0) { { -return dev_storage + 1786; +return dev_storage + 1914; } } @@ -28318,7 +28503,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq2", 10) == 0) { { -return dev_storage + 1771; +return dev_storage + 1899; } } @@ -28333,7 +28518,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp2", 10) == 0) { { -return dev_storage + 1756; +return dev_storage + 1884; } } @@ -28348,7 +28533,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco2", 10) == 0) { { -return dev_storage + 1741; +return dev_storage + 1869; } } @@ -28363,7 +28548,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn2", 10) == 0) { { -return dev_storage + 1726; +return dev_storage + 1854; } } @@ -28378,7 +28563,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm2", 10) == 0) { { -return dev_storage + 1711; +return dev_storage + 1839; } } @@ -28393,7 +28578,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl2", 10) == 0) { { -return dev_storage + 1696; +return dev_storage + 1824; } } @@ -28408,7 +28593,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck2", 10) == 0) { { -return dev_storage + 1681; +return dev_storage + 1809; } } @@ -28423,7 +28608,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj2", 10) == 0) { { -return dev_storage + 1666; +return dev_storage + 1794; } } @@ -28438,7 +28623,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci2", 10) == 0) { { -return dev_storage + 1651; +return dev_storage + 1779; } } @@ -28453,7 +28638,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch2", 10) == 0) { { -return dev_storage + 1636; +return dev_storage + 1764; } } @@ -28468,7 +28653,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg2", 10) == 0) { { -return dev_storage + 1621; +return dev_storage + 1749; } } @@ -28483,7 +28668,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf2", 10) == 0) { { -return dev_storage + 1606; +return dev_storage + 1734; } } @@ -28498,7 +28683,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce2", 10) == 0) { { -return dev_storage + 1591; +return dev_storage + 1719; } } @@ -28513,7 +28698,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd2", 10) == 0) { { -return dev_storage + 1576; +return dev_storage + 1704; } } @@ -28528,7 +28713,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc2", 10) == 0) { { -return dev_storage + 1561; +return dev_storage + 1689; } } @@ -28543,7 +28728,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb2", 10) == 0) { { -return dev_storage + 1546; +return dev_storage + 1674; } } @@ -28558,7 +28743,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca2", 10) == 0) { { -return dev_storage + 1531; +return dev_storage + 1659; } } @@ -28573,7 +28758,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc12", 10) == 0) { { -return dev_storage + 323; +return dev_storage + 451; } } @@ -28597,7 +28782,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz2", 10) == 0) { { -return dev_storage + 1490; +return dev_storage + 1618; } } @@ -28612,7 +28797,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby2", 10) == 0) { { -return dev_storage + 1475; +return dev_storage + 1603; } } @@ -28627,7 +28812,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx2", 10) == 0) { { -return dev_storage + 1460; +return dev_storage + 1588; } } @@ -28642,7 +28827,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw2", 10) == 0) { { -return dev_storage + 1445; +return dev_storage + 1573; } } @@ -28657,7 +28842,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv2", 10) == 0) { { -return dev_storage + 1430; +return dev_storage + 1558; } } @@ -28672,7 +28857,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu2", 10) == 0) { { -return dev_storage + 1415; +return dev_storage + 1543; } } @@ -28687,7 +28872,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt2", 10) == 0) { { -return dev_storage + 1400; +return dev_storage + 1528; } } @@ -28702,7 +28887,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs2", 10) == 0) { { -return dev_storage + 1385; +return dev_storage + 1513; } } @@ -28717,7 +28902,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr2", 10) == 0) { { -return dev_storage + 1370; +return dev_storage + 1498; } } @@ -28732,7 +28917,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq2", 10) == 0) { { -return dev_storage + 1355; +return dev_storage + 1483; } } @@ -28747,7 +28932,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp2", 10) == 0) { { -return dev_storage + 1340; +return dev_storage + 1468; } } @@ -28762,7 +28947,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo2", 10) == 0) { { -return dev_storage + 1325; +return dev_storage + 1453; } } @@ -28777,7 +28962,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn2", 10) == 0) { { -return dev_storage + 1310; +return dev_storage + 1438; } } @@ -28792,7 +28977,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm2", 10) == 0) { { -return dev_storage + 1295; +return dev_storage + 1423; } } @@ -28807,7 +28992,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl2", 10) == 0) { { -return dev_storage + 1280; +return dev_storage + 1408; } } @@ -28822,7 +29007,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk2", 10) == 0) { { -return dev_storage + 1265; +return dev_storage + 1393; } } @@ -28837,7 +29022,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj2", 10) == 0) { { -return dev_storage + 1250; +return dev_storage + 1378; } } @@ -28852,7 +29037,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi2", 10) == 0) { { -return dev_storage + 1235; +return dev_storage + 1363; } } @@ -28867,7 +29052,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh2", 10) == 0) { { -return dev_storage + 1220; +return dev_storage + 1348; } } @@ -28882,7 +29067,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg2", 10) == 0) { { -return dev_storage + 1205; +return dev_storage + 1333; } } @@ -28897,7 +29082,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf2", 10) == 0) { { -return dev_storage + 1190; +return dev_storage + 1318; } } @@ -28912,7 +29097,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe2", 10) == 0) { { -return dev_storage + 1175; +return dev_storage + 1303; } } @@ -28927,7 +29112,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd2", 10) == 0) { { -return dev_storage + 1160; +return dev_storage + 1288; } } @@ -28942,7 +29127,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc2", 10) == 0) { { -return dev_storage + 1145; +return dev_storage + 1273; } } @@ -28957,7 +29142,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb2", 10) == 0) { { -return dev_storage + 1130; +return dev_storage + 1258; } } @@ -28972,7 +29157,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba2", 10) == 0) { { -return dev_storage + 1115; +return dev_storage + 1243; } } @@ -28987,7 +29172,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb12", 10) == 0) { { -return dev_storage + 308; +return dev_storage + 436; } } @@ -29011,7 +29196,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz2", 10) == 0) { { -return dev_storage + 1074; +return dev_storage + 1202; } } @@ -29026,7 +29211,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday2", 10) == 0) { { -return dev_storage + 1059; +return dev_storage + 1187; } } @@ -29041,7 +29226,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax2", 10) == 0) { { -return dev_storage + 1044; +return dev_storage + 1172; } } @@ -29056,7 +29241,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw2", 10) == 0) { { -return dev_storage + 1029; +return dev_storage + 1157; } } @@ -29071,7 +29256,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav2", 10) == 0) { { -return dev_storage + 1014; +return dev_storage + 1142; } } @@ -29086,7 +29271,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau2", 10) == 0) { { -return dev_storage + 999; +return dev_storage + 1127; } } @@ -29101,7 +29286,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat2", 10) == 0) { { -return dev_storage + 984; +return dev_storage + 1112; } } @@ -29116,7 +29301,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas2", 10) == 0) { { -return dev_storage + 969; +return dev_storage + 1097; } } @@ -29131,7 +29316,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar2", 10) == 0) { { -return dev_storage + 954; +return dev_storage + 1082; } } @@ -29146,7 +29331,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq2", 10) == 0) { { -return dev_storage + 939; +return dev_storage + 1067; } } @@ -29161,7 +29346,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap2", 10) == 0) { { -return dev_storage + 924; +return dev_storage + 1052; } } @@ -29176,7 +29361,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao2", 10) == 0) { { -return dev_storage + 909; +return dev_storage + 1037; } } @@ -29191,7 +29376,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan2", 10) == 0) { { -return dev_storage + 894; +return dev_storage + 1022; } } @@ -29206,7 +29391,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam2", 10) == 0) { { -return dev_storage + 879; +return dev_storage + 1007; } } @@ -29221,7 +29406,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal2", 10) == 0) { { -return dev_storage + 864; +return dev_storage + 992; } } @@ -29236,7 +29421,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak2", 10) == 0) { { -return dev_storage + 849; +return dev_storage + 977; } } @@ -29251,7 +29436,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj2", 10) == 0) { { -return dev_storage + 834; +return dev_storage + 962; } } @@ -29266,7 +29451,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai2", 10) == 0) { { -return dev_storage + 819; +return dev_storage + 947; } } @@ -29281,7 +29466,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah2", 10) == 0) { { -return dev_storage + 804; +return dev_storage + 932; } } @@ -29296,7 +29481,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag2", 10) == 0) { { -return dev_storage + 789; +return dev_storage + 917; } } @@ -29311,7 +29496,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf2", 10) == 0) { { -return dev_storage + 774; +return dev_storage + 902; } } @@ -29326,7 +29511,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae2", 10) == 0) { { -return dev_storage + 759; +return dev_storage + 887; } } @@ -29341,7 +29526,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad2", 10) == 0) { { -return dev_storage + 744; +return dev_storage + 872; } } @@ -29356,7 +29541,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac2", 10) == 0) { { -return dev_storage + 729; +return dev_storage + 857; } } @@ -29371,7 +29556,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab2", 10) == 0) { { -return dev_storage + 714; +return dev_storage + 842; } } @@ -29386,7 +29571,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa2", 10) == 0) { { -return dev_storage + 699; +return dev_storage + 827; } } @@ -29401,7 +29586,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda12", 10) == 0) { { -return dev_storage + 293; +return dev_storage + 421; } } @@ -29425,7 +29610,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st122", 10) == 0) { { -return dev_storage + 2442; +return dev_storage + 2570; } } @@ -29440,7 +29625,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st112", 10) == 0) { { -return dev_storage + 2432; +return dev_storage + 2560; } } @@ -29455,7 +29640,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st102", 10) == 0) { { -return dev_storage + 2422; +return dev_storage + 2550; } } @@ -29485,7 +29670,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz11", 10) == 0) { { -return dev_storage + 667; +return dev_storage + 795; } } @@ -29499,11 +29684,26 @@ return NULL; case 'y': switch (KR_keyword [8]) { + case 'm': + if (strncmp (KR_keyword, "/dev/ptym1", 10) == 0) + { +{ +return dev_storage + 304; + +} + } + else + { +{ +return NULL; + +} + } case 'S': if (strncmp (KR_keyword, "/dev/ttyS1", 10) == 0) { { -return dev_storage + 2514; +return dev_storage + 2578; } } @@ -29515,10 +29715,10 @@ return NULL; } } case '6': - if (strncmp (KR_keyword, "/dev/tty61", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty61", 10) == 0) { { -return dev_storage + 2510; +return dev_storage + 300; } } @@ -29530,10 +29730,10 @@ return NULL; } } case '5': - if (strncmp (KR_keyword, "/dev/tty51", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty51", 10) == 0) { { -return dev_storage + 2500; +return dev_storage + 290; } } @@ -29545,10 +29745,10 @@ return NULL; } } case '4': - if (strncmp (KR_keyword, "/dev/tty41", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty41", 10) == 0) { { -return dev_storage + 2490; +return dev_storage + 280; } } @@ -29560,10 +29760,10 @@ return NULL; } } case '3': - if (strncmp (KR_keyword, "/dev/tty31", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty31", 10) == 0) { { -return dev_storage + 2480; +return dev_storage + 270; } } @@ -29575,10 +29775,10 @@ return NULL; } } case '2': - if (strncmp (KR_keyword, "/dev/tty21", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty21", 10) == 0) { { -return dev_storage + 2470; +return dev_storage + 260; } } @@ -29592,11 +29792,11 @@ return NULL; case '1': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty11", 10) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/sdy11", 10) == 0) { { -return dev_storage + 2460; +return dev_storage + 780; } } @@ -29607,11 +29807,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/sdy11", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty11", 10) == 0) { { -return dev_storage + 652; +return dev_storage + 250; } } @@ -29638,7 +29838,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx11", 10) == 0) { { -return dev_storage + 637; +return dev_storage + 765; } } @@ -29653,7 +29853,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw11", 10) == 0) { { -return dev_storage + 622; +return dev_storage + 750; } } @@ -29668,7 +29868,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv11", 10) == 0) { { -return dev_storage + 607; +return dev_storage + 735; } } @@ -29683,7 +29883,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu11", 10) == 0) { { -return dev_storage + 592; +return dev_storage + 720; } } @@ -29824,7 +30024,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt11", 10) == 0) { { -return dev_storage + 577; +return dev_storage + 705; } } @@ -29866,7 +30066,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds11", 10) == 0) { { -return dev_storage + 562; +return dev_storage + 690; } } @@ -29881,7 +30081,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr11", 10) == 0) { { -return dev_storage + 547; +return dev_storage + 675; } } @@ -29896,7 +30096,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq11", 10) == 0) { { -return dev_storage + 532; +return dev_storage + 660; } } @@ -29911,7 +30111,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp11", 10) == 0) { { -return dev_storage + 517; +return dev_storage + 645; } } @@ -29926,7 +30126,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo11", 10) == 0) { { -return dev_storage + 502; +return dev_storage + 630; } } @@ -29944,7 +30144,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn11", 10) == 0) { { -return dev_storage + 487; +return dev_storage + 615; } } @@ -29983,7 +30183,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm11", 10) == 0) { { -return dev_storage + 472; +return dev_storage + 600; } } @@ -30019,7 +30219,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl11", 10) == 0) { { -return dev_storage + 457; +return dev_storage + 585; } } @@ -30034,7 +30234,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk11", 10) == 0) { { -return dev_storage + 442; +return dev_storage + 570; } } @@ -30049,7 +30249,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj11", 10) == 0) { { -return dev_storage + 427; +return dev_storage + 555; } } @@ -30064,7 +30264,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi11", 10) == 0) { { -return dev_storage + 412; +return dev_storage + 540; } } @@ -30079,7 +30279,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh11", 10) == 0) { { -return dev_storage + 397; +return dev_storage + 525; } } @@ -30094,7 +30294,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg11", 10) == 0) { { -return dev_storage + 382; +return dev_storage + 510; } } @@ -30109,7 +30309,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf11", 10) == 0) { { -return dev_storage + 367; +return dev_storage + 495; } } @@ -30124,7 +30324,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde11", 10) == 0) { { -return dev_storage + 352; +return dev_storage + 480; } } @@ -30142,7 +30342,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx1", 10) == 0) { { -return dev_storage + 2289; +return dev_storage + 2417; } } @@ -30157,7 +30357,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw1", 10) == 0) { { -return dev_storage + 2274; +return dev_storage + 2402; } } @@ -30172,7 +30372,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv1", 10) == 0) { { -return dev_storage + 2259; +return dev_storage + 2387; } } @@ -30187,7 +30387,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu1", 10) == 0) { { -return dev_storage + 2244; +return dev_storage + 2372; } } @@ -30202,7 +30402,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt1", 10) == 0) { { -return dev_storage + 2229; +return dev_storage + 2357; } } @@ -30217,7 +30417,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds1", 10) == 0) { { -return dev_storage + 2214; +return dev_storage + 2342; } } @@ -30232,7 +30432,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr1", 10) == 0) { { -return dev_storage + 2199; +return dev_storage + 2327; } } @@ -30247,7 +30447,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq1", 10) == 0) { { -return dev_storage + 2184; +return dev_storage + 2312; } } @@ -30262,7 +30462,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp1", 10) == 0) { { -return dev_storage + 2169; +return dev_storage + 2297; } } @@ -30277,7 +30477,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo1", 10) == 0) { { -return dev_storage + 2154; +return dev_storage + 2282; } } @@ -30292,7 +30492,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn1", 10) == 0) { { -return dev_storage + 2139; +return dev_storage + 2267; } } @@ -30307,7 +30507,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm1", 10) == 0) { { -return dev_storage + 2124; +return dev_storage + 2252; } } @@ -30322,7 +30522,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl1", 10) == 0) { { -return dev_storage + 2109; +return dev_storage + 2237; } } @@ -30337,7 +30537,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk1", 10) == 0) { { -return dev_storage + 2094; +return dev_storage + 2222; } } @@ -30352,7 +30552,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj1", 10) == 0) { { -return dev_storage + 2079; +return dev_storage + 2207; } } @@ -30367,7 +30567,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi1", 10) == 0) { { -return dev_storage + 2064; +return dev_storage + 2192; } } @@ -30382,7 +30582,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh1", 10) == 0) { { -return dev_storage + 2049; +return dev_storage + 2177; } } @@ -30397,7 +30597,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg1", 10) == 0) { { -return dev_storage + 2034; +return dev_storage + 2162; } } @@ -30412,7 +30612,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf1", 10) == 0) { { -return dev_storage + 2019; +return dev_storage + 2147; } } @@ -30427,7 +30627,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde1", 10) == 0) { { -return dev_storage + 2004; +return dev_storage + 2132; } } @@ -30442,7 +30642,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd1", 10) == 0) { { -return dev_storage + 1989; +return dev_storage + 2117; } } @@ -30457,7 +30657,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc1", 10) == 0) { { -return dev_storage + 1974; +return dev_storage + 2102; } } @@ -30472,7 +30672,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb1", 10) == 0) { { -return dev_storage + 1959; +return dev_storage + 2087; } } @@ -30487,7 +30687,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda1", 10) == 0) { { -return dev_storage + 1944; +return dev_storage + 2072; } } @@ -30505,7 +30705,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd11", 10) == 0) { { -return dev_storage + 337; +return dev_storage + 465; } } @@ -30520,7 +30720,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd11", 10) == 0) { { -return dev_storage + 251; +return dev_storage + 379; } } @@ -30550,7 +30750,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz1", 10) == 0) { { -return dev_storage + 1905; +return dev_storage + 2033; } } @@ -30565,7 +30765,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy1", 10) == 0) { { -return dev_storage + 1890; +return dev_storage + 2018; } } @@ -30580,7 +30780,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx1", 10) == 0) { { -return dev_storage + 1875; +return dev_storage + 2003; } } @@ -30595,7 +30795,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw1", 10) == 0) { { -return dev_storage + 1860; +return dev_storage + 1988; } } @@ -30610,7 +30810,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv1", 10) == 0) { { -return dev_storage + 1845; +return dev_storage + 1973; } } @@ -30625,7 +30825,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu1", 10) == 0) { { -return dev_storage + 1830; +return dev_storage + 1958; } } @@ -30640,7 +30840,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct1", 10) == 0) { { -return dev_storage + 1815; +return dev_storage + 1943; } } @@ -30655,7 +30855,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs1", 10) == 0) { { -return dev_storage + 1800; +return dev_storage + 1928; } } @@ -30670,7 +30870,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr1", 10) == 0) { { -return dev_storage + 1785; +return dev_storage + 1913; } } @@ -30685,7 +30885,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq1", 10) == 0) { { -return dev_storage + 1770; +return dev_storage + 1898; } } @@ -30700,7 +30900,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp1", 10) == 0) { { -return dev_storage + 1755; +return dev_storage + 1883; } } @@ -30715,7 +30915,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco1", 10) == 0) { { -return dev_storage + 1740; +return dev_storage + 1868; } } @@ -30730,7 +30930,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn1", 10) == 0) { { -return dev_storage + 1725; +return dev_storage + 1853; } } @@ -30745,7 +30945,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm1", 10) == 0) { { -return dev_storage + 1710; +return dev_storage + 1838; } } @@ -30760,7 +30960,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl1", 10) == 0) { { -return dev_storage + 1695; +return dev_storage + 1823; } } @@ -30775,7 +30975,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck1", 10) == 0) { { -return dev_storage + 1680; +return dev_storage + 1808; } } @@ -30790,7 +30990,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj1", 10) == 0) { { -return dev_storage + 1665; +return dev_storage + 1793; } } @@ -30805,7 +31005,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci1", 10) == 0) { { -return dev_storage + 1650; +return dev_storage + 1778; } } @@ -30820,7 +31020,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch1", 10) == 0) { { -return dev_storage + 1635; +return dev_storage + 1763; } } @@ -30835,7 +31035,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg1", 10) == 0) { { -return dev_storage + 1620; +return dev_storage + 1748; } } @@ -30850,7 +31050,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf1", 10) == 0) { { -return dev_storage + 1605; +return dev_storage + 1733; } } @@ -30865,7 +31065,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce1", 10) == 0) { { -return dev_storage + 1590; +return dev_storage + 1718; } } @@ -30880,7 +31080,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd1", 10) == 0) { { -return dev_storage + 1575; +return dev_storage + 1703; } } @@ -30895,7 +31095,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc1", 10) == 0) { { -return dev_storage + 1560; +return dev_storage + 1688; } } @@ -30910,7 +31110,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb1", 10) == 0) { { -return dev_storage + 1545; +return dev_storage + 1673; } } @@ -30925,7 +31125,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca1", 10) == 0) { { -return dev_storage + 1530; +return dev_storage + 1658; } } @@ -30940,7 +31140,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc11", 10) == 0) { { -return dev_storage + 322; +return dev_storage + 450; } } @@ -30964,7 +31164,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz1", 10) == 0) { { -return dev_storage + 1489; +return dev_storage + 1617; } } @@ -30979,7 +31179,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby1", 10) == 0) { { -return dev_storage + 1474; +return dev_storage + 1602; } } @@ -30994,7 +31194,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx1", 10) == 0) { { -return dev_storage + 1459; +return dev_storage + 1587; } } @@ -31009,7 +31209,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw1", 10) == 0) { { -return dev_storage + 1444; +return dev_storage + 1572; } } @@ -31024,7 +31224,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv1", 10) == 0) { { -return dev_storage + 1429; +return dev_storage + 1557; } } @@ -31039,7 +31239,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu1", 10) == 0) { { -return dev_storage + 1414; +return dev_storage + 1542; } } @@ -31054,7 +31254,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt1", 10) == 0) { { -return dev_storage + 1399; +return dev_storage + 1527; } } @@ -31069,7 +31269,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs1", 10) == 0) { { -return dev_storage + 1384; +return dev_storage + 1512; } } @@ -31084,7 +31284,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr1", 10) == 0) { { -return dev_storage + 1369; +return dev_storage + 1497; } } @@ -31099,7 +31299,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq1", 10) == 0) { { -return dev_storage + 1354; +return dev_storage + 1482; } } @@ -31114,7 +31314,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp1", 10) == 0) { { -return dev_storage + 1339; +return dev_storage + 1467; } } @@ -31129,7 +31329,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo1", 10) == 0) { { -return dev_storage + 1324; +return dev_storage + 1452; } } @@ -31144,7 +31344,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn1", 10) == 0) { { -return dev_storage + 1309; +return dev_storage + 1437; } } @@ -31159,7 +31359,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm1", 10) == 0) { { -return dev_storage + 1294; +return dev_storage + 1422; } } @@ -31174,7 +31374,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl1", 10) == 0) { { -return dev_storage + 1279; +return dev_storage + 1407; } } @@ -31189,7 +31389,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk1", 10) == 0) { { -return dev_storage + 1264; +return dev_storage + 1392; } } @@ -31204,7 +31404,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj1", 10) == 0) { { -return dev_storage + 1249; +return dev_storage + 1377; } } @@ -31219,7 +31419,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi1", 10) == 0) { { -return dev_storage + 1234; +return dev_storage + 1362; } } @@ -31234,7 +31434,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh1", 10) == 0) { { -return dev_storage + 1219; +return dev_storage + 1347; } } @@ -31249,7 +31449,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg1", 10) == 0) { { -return dev_storage + 1204; +return dev_storage + 1332; } } @@ -31264,7 +31464,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf1", 10) == 0) { { -return dev_storage + 1189; +return dev_storage + 1317; } } @@ -31279,7 +31479,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe1", 10) == 0) { { -return dev_storage + 1174; +return dev_storage + 1302; } } @@ -31294,7 +31494,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd1", 10) == 0) { { -return dev_storage + 1159; +return dev_storage + 1287; } } @@ -31309,7 +31509,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc1", 10) == 0) { { -return dev_storage + 1144; +return dev_storage + 1272; } } @@ -31324,7 +31524,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb1", 10) == 0) { { -return dev_storage + 1129; +return dev_storage + 1257; } } @@ -31339,7 +31539,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba1", 10) == 0) { { -return dev_storage + 1114; +return dev_storage + 1242; } } @@ -31354,7 +31554,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb11", 10) == 0) { { -return dev_storage + 307; +return dev_storage + 435; } } @@ -31378,7 +31578,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz1", 10) == 0) { { -return dev_storage + 1073; +return dev_storage + 1201; } } @@ -31393,7 +31593,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday1", 10) == 0) { { -return dev_storage + 1058; +return dev_storage + 1186; } } @@ -31408,7 +31608,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax1", 10) == 0) { { -return dev_storage + 1043; +return dev_storage + 1171; } } @@ -31423,7 +31623,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw1", 10) == 0) { { -return dev_storage + 1028; +return dev_storage + 1156; } } @@ -31438,7 +31638,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav1", 10) == 0) { { -return dev_storage + 1013; +return dev_storage + 1141; } } @@ -31453,7 +31653,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau1", 10) == 0) { { -return dev_storage + 998; +return dev_storage + 1126; } } @@ -31468,7 +31668,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat1", 10) == 0) { { -return dev_storage + 983; +return dev_storage + 1111; } } @@ -31483,7 +31683,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas1", 10) == 0) { { -return dev_storage + 968; +return dev_storage + 1096; } } @@ -31498,7 +31698,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar1", 10) == 0) { { -return dev_storage + 953; +return dev_storage + 1081; } } @@ -31513,7 +31713,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq1", 10) == 0) { { -return dev_storage + 938; +return dev_storage + 1066; } } @@ -31528,7 +31728,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap1", 10) == 0) { { -return dev_storage + 923; +return dev_storage + 1051; } } @@ -31543,7 +31743,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao1", 10) == 0) { { -return dev_storage + 908; +return dev_storage + 1036; } } @@ -31558,7 +31758,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan1", 10) == 0) { { -return dev_storage + 893; +return dev_storage + 1021; } } @@ -31573,7 +31773,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam1", 10) == 0) { { -return dev_storage + 878; +return dev_storage + 1006; } } @@ -31588,7 +31788,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal1", 10) == 0) { { -return dev_storage + 863; +return dev_storage + 991; } } @@ -31603,7 +31803,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak1", 10) == 0) { { -return dev_storage + 848; +return dev_storage + 976; } } @@ -31618,7 +31818,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj1", 10) == 0) { { -return dev_storage + 833; +return dev_storage + 961; } } @@ -31633,7 +31833,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai1", 10) == 0) { { -return dev_storage + 818; +return dev_storage + 946; } } @@ -31648,7 +31848,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah1", 10) == 0) { { -return dev_storage + 803; +return dev_storage + 931; } } @@ -31663,7 +31863,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag1", 10) == 0) { { -return dev_storage + 788; +return dev_storage + 916; } } @@ -31678,7 +31878,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf1", 10) == 0) { { -return dev_storage + 773; +return dev_storage + 901; } } @@ -31693,7 +31893,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae1", 10) == 0) { { -return dev_storage + 758; +return dev_storage + 886; } } @@ -31708,7 +31908,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad1", 10) == 0) { { -return dev_storage + 743; +return dev_storage + 871; } } @@ -31723,7 +31923,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac1", 10) == 0) { { -return dev_storage + 728; +return dev_storage + 856; } } @@ -31738,7 +31938,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab1", 10) == 0) { { -return dev_storage + 713; +return dev_storage + 841; } } @@ -31753,7 +31953,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa1", 10) == 0) { { -return dev_storage + 698; +return dev_storage + 826; } } @@ -31768,7 +31968,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda11", 10) == 0) { { -return dev_storage + 292; +return dev_storage + 420; } } @@ -31792,7 +31992,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st121", 10) == 0) { { -return dev_storage + 2441; +return dev_storage + 2569; } } @@ -31807,7 +32007,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st111", 10) == 0) { { -return dev_storage + 2431; +return dev_storage + 2559; } } @@ -31822,7 +32022,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st101", 10) == 0) { { -return dev_storage + 2421; +return dev_storage + 2549; } } @@ -31852,7 +32052,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz10", 10) == 0) { { -return dev_storage + 666; +return dev_storage + 794; } } @@ -31866,11 +32066,26 @@ return NULL; case 'y': switch (KR_keyword [8]) { + case 'm': + if (strncmp (KR_keyword, "/dev/ptym0", 10) == 0) + { +{ +return dev_storage + 303; + +} + } + else + { +{ +return NULL; + +} + } case 'S': if (strncmp (KR_keyword, "/dev/ttyS0", 10) == 0) { { -return dev_storage + 2513; +return dev_storage + 2577; } } @@ -31882,10 +32097,10 @@ return NULL; } } case '6': - if (strncmp (KR_keyword, "/dev/tty60", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty60", 10) == 0) { { -return dev_storage + 2509; +return dev_storage + 299; } } @@ -31897,10 +32112,10 @@ return NULL; } } case '5': - if (strncmp (KR_keyword, "/dev/tty50", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty50", 10) == 0) { { -return dev_storage + 2499; +return dev_storage + 289; } } @@ -31912,10 +32127,10 @@ return NULL; } } case '4': - if (strncmp (KR_keyword, "/dev/tty40", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty40", 10) == 0) { { -return dev_storage + 2489; +return dev_storage + 279; } } @@ -31927,10 +32142,10 @@ return NULL; } } case '3': - if (strncmp (KR_keyword, "/dev/tty30", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty30", 10) == 0) { { -return dev_storage + 2479; +return dev_storage + 269; } } @@ -31942,10 +32157,10 @@ return NULL; } } case '2': - if (strncmp (KR_keyword, "/dev/tty20", 10) == 0) + if (strncmp (KR_keyword, "/dev/pty20", 10) == 0) { { -return dev_storage + 2469; +return dev_storage + 259; } } @@ -31959,11 +32174,11 @@ return NULL; case '1': switch (KR_keyword [5]) { - case 't': - if (strncmp (KR_keyword, "/dev/tty10", 10) == 0) + case 's': + if (strncmp (KR_keyword, "/dev/sdy10", 10) == 0) { { -return dev_storage + 2459; +return dev_storage + 779; } } @@ -31974,11 +32189,11 @@ return NULL; } } - case 's': - if (strncmp (KR_keyword, "/dev/sdy10", 10) == 0) + case 'p': + if (strncmp (KR_keyword, "/dev/pty10", 10) == 0) { { -return dev_storage + 651; +return dev_storage + 249; } } @@ -32005,7 +32220,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx10", 10) == 0) { { -return dev_storage + 636; +return dev_storage + 764; } } @@ -32020,7 +32235,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw10", 10) == 0) { { -return dev_storage + 621; +return dev_storage + 749; } } @@ -32035,7 +32250,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv10", 10) == 0) { { -return dev_storage + 606; +return dev_storage + 734; } } @@ -32050,7 +32265,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu10", 10) == 0) { { -return dev_storage + 591; +return dev_storage + 719; } } @@ -32191,7 +32406,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt10", 10) == 0) { { -return dev_storage + 576; +return dev_storage + 704; } } @@ -32233,7 +32448,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds10", 10) == 0) { { -return dev_storage + 561; +return dev_storage + 689; } } @@ -32248,7 +32463,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr10", 10) == 0) { { -return dev_storage + 546; +return dev_storage + 674; } } @@ -32263,7 +32478,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq10", 10) == 0) { { -return dev_storage + 531; +return dev_storage + 659; } } @@ -32278,7 +32493,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp10", 10) == 0) { { -return dev_storage + 516; +return dev_storage + 644; } } @@ -32293,7 +32508,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo10", 10) == 0) { { -return dev_storage + 501; +return dev_storage + 629; } } @@ -32311,7 +32526,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn10", 10) == 0) { { -return dev_storage + 486; +return dev_storage + 614; } } @@ -32350,7 +32565,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm10", 10) == 0) { { -return dev_storage + 471; +return dev_storage + 599; } } @@ -32386,7 +32601,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl10", 10) == 0) { { -return dev_storage + 456; +return dev_storage + 584; } } @@ -32401,7 +32616,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk10", 10) == 0) { { -return dev_storage + 441; +return dev_storage + 569; } } @@ -32416,7 +32631,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj10", 10) == 0) { { -return dev_storage + 426; +return dev_storage + 554; } } @@ -32431,7 +32646,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi10", 10) == 0) { { -return dev_storage + 411; +return dev_storage + 539; } } @@ -32446,7 +32661,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh10", 10) == 0) { { -return dev_storage + 396; +return dev_storage + 524; } } @@ -32461,7 +32676,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg10", 10) == 0) { { -return dev_storage + 381; +return dev_storage + 509; } } @@ -32476,7 +32691,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf10", 10) == 0) { { -return dev_storage + 366; +return dev_storage + 494; } } @@ -32491,7 +32706,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde10", 10) == 0) { { -return dev_storage + 351; +return dev_storage + 479; } } @@ -32509,7 +32724,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd10", 10) == 0) { { -return dev_storage + 336; +return dev_storage + 464; } } @@ -32524,7 +32739,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd10", 10) == 0) { { -return dev_storage + 250; +return dev_storage + 378; } } @@ -32545,7 +32760,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc10", 10) == 0) { { -return dev_storage + 321; +return dev_storage + 449; } } @@ -32560,7 +32775,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb10", 10) == 0) { { -return dev_storage + 306; +return dev_storage + 434; } } @@ -32575,7 +32790,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda10", 10) == 0) { { -return dev_storage + 291; +return dev_storage + 419; } } @@ -32593,7 +32808,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st120", 10) == 0) { { -return dev_storage + 2440; +return dev_storage + 2568; } } @@ -32608,7 +32823,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st110", 10) == 0) { { -return dev_storage + 2430; +return dev_storage + 2558; } } @@ -32623,7 +32838,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st100", 10) == 0) { { -return dev_storage + 2420; +return dev_storage + 2548; } } @@ -32674,7 +32889,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/random", 11) == 0) { { -return dev_storage + 239; +return dev_storage + 367; } } @@ -32695,7 +32910,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS59", 11) == 0) { { -return dev_storage + 2572; +return dev_storage + 2636; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym59", 11) == 0) + { +{ +return dev_storage + 362; } } @@ -32734,7 +32964,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS49", 11) == 0) { { -return dev_storage + 2562; +return dev_storage + 2626; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym49", 11) == 0) + { +{ +return dev_storage + 352; } } @@ -32773,7 +33018,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS39", 11) == 0) { { -return dev_storage + 2552; +return dev_storage + 2616; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym39", 11) == 0) + { +{ +return dev_storage + 342; } } @@ -32812,7 +33072,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS29", 11) == 0) { { -return dev_storage + 2542; +return dev_storage + 2606; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym29", 11) == 0) + { +{ +return dev_storage + 332; } } @@ -32851,7 +33126,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS19", 11) == 0) { { -return dev_storage + 2532; +return dev_storage + 2596; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym19", 11) == 0) + { +{ +return dev_storage + 322; } } @@ -32929,7 +33219,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS58", 11) == 0) { { -return dev_storage + 2571; +return dev_storage + 2635; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym58", 11) == 0) + { +{ +return dev_storage + 361; } } @@ -32968,7 +33273,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS48", 11) == 0) { { -return dev_storage + 2561; +return dev_storage + 2625; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym48", 11) == 0) + { +{ +return dev_storage + 351; } } @@ -33007,7 +33327,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS38", 11) == 0) { { -return dev_storage + 2551; +return dev_storage + 2615; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym38", 11) == 0) + { +{ +return dev_storage + 341; } } @@ -33046,7 +33381,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS28", 11) == 0) { { -return dev_storage + 2541; +return dev_storage + 2605; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym28", 11) == 0) + { +{ +return dev_storage + 331; } } @@ -33085,7 +33435,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS18", 11) == 0) { { -return dev_storage + 2531; +return dev_storage + 2595; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym18", 11) == 0) + { +{ +return dev_storage + 321; } } @@ -33163,7 +33528,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS57", 11) == 0) { { -return dev_storage + 2570; +return dev_storage + 2634; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym57", 11) == 0) + { +{ +return dev_storage + 360; } } @@ -33202,7 +33582,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS47", 11) == 0) { { -return dev_storage + 2560; +return dev_storage + 2624; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym47", 11) == 0) + { +{ +return dev_storage + 350; } } @@ -33241,7 +33636,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS37", 11) == 0) { { -return dev_storage + 2550; +return dev_storage + 2614; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym37", 11) == 0) + { +{ +return dev_storage + 340; } } @@ -33280,7 +33690,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS27", 11) == 0) { { -return dev_storage + 2540; +return dev_storage + 2604; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym27", 11) == 0) + { +{ +return dev_storage + 330; } } @@ -33334,7 +33759,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS17", 11) == 0) { { -return dev_storage + 2530; +return dev_storage + 2594; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym17", 11) == 0) + { +{ +return dev_storage + 320; } } @@ -33412,7 +33852,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS56", 11) == 0) { { -return dev_storage + 2569; +return dev_storage + 2633; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym56", 11) == 0) + { +{ +return dev_storage + 359; } } @@ -33451,7 +33906,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS46", 11) == 0) { { -return dev_storage + 2559; +return dev_storage + 2623; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym46", 11) == 0) + { +{ +return dev_storage + 349; } } @@ -33490,7 +33960,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS36", 11) == 0) { { -return dev_storage + 2549; +return dev_storage + 2613; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym36", 11) == 0) + { +{ +return dev_storage + 339; } } @@ -33529,7 +34014,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS26", 11) == 0) { { -return dev_storage + 2539; +return dev_storage + 2603; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym26", 11) == 0) + { +{ +return dev_storage + 329; } } @@ -33583,7 +34083,22 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS16", 11) == 0) { { -return dev_storage + 2529; +return dev_storage + 2593; + +} + } + else + { +{ +return NULL; + +} + } + case 'p': + if (strncmp (KR_keyword, "/dev/ptym16", 11) == 0) + { +{ +return dev_storage + 319; } } @@ -33655,78 +34170,171 @@ return NULL; switch (KR_keyword [7]) { case 'y': - switch (KR_keyword [9]) + switch (KR_keyword [5]) { - case '5': - if (strncmp (KR_keyword, "/dev/ttyS55", 11) == 0) + case 't': + switch (KR_keyword [9]) { + case '5': + if (strncmp (KR_keyword, "/dev/ttyS55", 11) == 0) + { { -return dev_storage + 2568; +return dev_storage + 2632; } - } - else - { + } + else + { +{ +return NULL; + +} + } + case '4': + if (strncmp (KR_keyword, "/dev/ttyS45", 11) == 0) + { +{ +return dev_storage + 2622; + +} + } + else + { +{ +return NULL; + +} + } + case '3': + if (strncmp (KR_keyword, "/dev/ttyS35", 11) == 0) + { +{ +return dev_storage + 2612; + +} + } + else + { +{ +return NULL; + +} + } + case '2': + if (strncmp (KR_keyword, "/dev/ttyS25", 11) == 0) + { +{ +return dev_storage + 2602; + +} + } + else + { +{ +return NULL; + +} + } + case '1': + if (strncmp (KR_keyword, "/dev/ttyS15", 11) == 0) + { +{ +return dev_storage + 2592; + +} + } + else + { +{ +return NULL; + +} + } + default: { return NULL; } } - case '4': - if (strncmp (KR_keyword, "/dev/ttyS45", 11) == 0) + case 'p': + switch (KR_keyword [9]) { + case '5': + if (strncmp (KR_keyword, "/dev/ptym55", 11) == 0) + { { -return dev_storage + 2558; +return dev_storage + 358; } - } - else - { + } + else + { { return NULL; } - } - case '3': - if (strncmp (KR_keyword, "/dev/ttyS35", 11) == 0) - { + } + case '4': + if (strncmp (KR_keyword, "/dev/ptym45", 11) == 0) + { { -return dev_storage + 2548; +return dev_storage + 348; } - } - else - { + } + else + { { return NULL; } - } - case '2': - if (strncmp (KR_keyword, "/dev/ttyS25", 11) == 0) - { + } + case '3': + if (strncmp (KR_keyword, "/dev/ptym35", 11) == 0) + { { -return dev_storage + 2538; +return dev_storage + 338; } - } - else - { + } + else + { { return NULL; } - } - case '1': - if (strncmp (KR_keyword, "/dev/ttyS15", 11) == 0) - { + } + case '2': + if (strncmp (KR_keyword, "/dev/ptym25", 11) == 0) + { { -return dev_storage + 2528; +return dev_storage + 328; } - } - else - { + } + else + { +{ +return NULL; + +} + } + case '1': + if (strncmp (KR_keyword, "/dev/ptym15", 11) == 0) + { +{ +return dev_storage + 318; + +} + } + else + { +{ +return NULL; + +} + } + default: { return NULL; @@ -33883,7 +34491,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx15", 11) == 0) { { -return dev_storage + 2303; +return dev_storage + 2431; } } @@ -33898,7 +34506,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw15", 11) == 0) { { -return dev_storage + 2288; +return dev_storage + 2416; } } @@ -33913,7 +34521,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv15", 11) == 0) { { -return dev_storage + 2273; +return dev_storage + 2401; } } @@ -33928,7 +34536,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu15", 11) == 0) { { -return dev_storage + 2258; +return dev_storage + 2386; } } @@ -33943,7 +34551,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt15", 11) == 0) { { -return dev_storage + 2243; +return dev_storage + 2371; } } @@ -33958,7 +34566,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds15", 11) == 0) { { -return dev_storage + 2228; +return dev_storage + 2356; } } @@ -33973,7 +34581,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr15", 11) == 0) { { -return dev_storage + 2213; +return dev_storage + 2341; } } @@ -33988,7 +34596,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq15", 11) == 0) { { -return dev_storage + 2198; +return dev_storage + 2326; } } @@ -34003,7 +34611,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp15", 11) == 0) { { -return dev_storage + 2183; +return dev_storage + 2311; } } @@ -34018,7 +34626,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo15", 11) == 0) { { -return dev_storage + 2168; +return dev_storage + 2296; } } @@ -34033,7 +34641,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn15", 11) == 0) { { -return dev_storage + 2153; +return dev_storage + 2281; } } @@ -34048,7 +34656,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm15", 11) == 0) { { -return dev_storage + 2138; +return dev_storage + 2266; } } @@ -34063,7 +34671,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl15", 11) == 0) { { -return dev_storage + 2123; +return dev_storage + 2251; } } @@ -34078,7 +34686,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk15", 11) == 0) { { -return dev_storage + 2108; +return dev_storage + 2236; } } @@ -34093,7 +34701,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj15", 11) == 0) { { -return dev_storage + 2093; +return dev_storage + 2221; } } @@ -34108,7 +34716,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi15", 11) == 0) { { -return dev_storage + 2078; +return dev_storage + 2206; } } @@ -34123,7 +34731,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh15", 11) == 0) { { -return dev_storage + 2063; +return dev_storage + 2191; } } @@ -34138,7 +34746,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg15", 11) == 0) { { -return dev_storage + 2048; +return dev_storage + 2176; } } @@ -34153,7 +34761,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf15", 11) == 0) { { -return dev_storage + 2033; +return dev_storage + 2161; } } @@ -34168,7 +34776,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde15", 11) == 0) { { -return dev_storage + 2018; +return dev_storage + 2146; } } @@ -34183,7 +34791,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd15", 11) == 0) { { -return dev_storage + 2003; +return dev_storage + 2131; } } @@ -34198,7 +34806,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc15", 11) == 0) { { -return dev_storage + 1988; +return dev_storage + 2116; } } @@ -34213,7 +34821,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb15", 11) == 0) { { -return dev_storage + 1973; +return dev_storage + 2101; } } @@ -34228,7 +34836,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda15", 11) == 0) { { -return dev_storage + 1958; +return dev_storage + 2086; } } @@ -34252,7 +34860,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz15", 11) == 0) { { -return dev_storage + 1919; +return dev_storage + 2047; } } @@ -34267,7 +34875,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy15", 11) == 0) { { -return dev_storage + 1904; +return dev_storage + 2032; } } @@ -34282,7 +34890,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx15", 11) == 0) { { -return dev_storage + 1889; +return dev_storage + 2017; } } @@ -34297,7 +34905,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw15", 11) == 0) { { -return dev_storage + 1874; +return dev_storage + 2002; } } @@ -34312,7 +34920,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv15", 11) == 0) { { -return dev_storage + 1859; +return dev_storage + 1987; } } @@ -34327,7 +34935,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu15", 11) == 0) { { -return dev_storage + 1844; +return dev_storage + 1972; } } @@ -34342,7 +34950,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct15", 11) == 0) { { -return dev_storage + 1829; +return dev_storage + 1957; } } @@ -34357,7 +34965,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs15", 11) == 0) { { -return dev_storage + 1814; +return dev_storage + 1942; } } @@ -34372,7 +34980,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr15", 11) == 0) { { -return dev_storage + 1799; +return dev_storage + 1927; } } @@ -34387,7 +34995,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq15", 11) == 0) { { -return dev_storage + 1784; +return dev_storage + 1912; } } @@ -34402,7 +35010,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp15", 11) == 0) { { -return dev_storage + 1769; +return dev_storage + 1897; } } @@ -34417,7 +35025,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco15", 11) == 0) { { -return dev_storage + 1754; +return dev_storage + 1882; } } @@ -34432,7 +35040,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn15", 11) == 0) { { -return dev_storage + 1739; +return dev_storage + 1867; } } @@ -34447,7 +35055,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm15", 11) == 0) { { -return dev_storage + 1724; +return dev_storage + 1852; } } @@ -34462,7 +35070,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl15", 11) == 0) { { -return dev_storage + 1709; +return dev_storage + 1837; } } @@ -34477,7 +35085,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck15", 11) == 0) { { -return dev_storage + 1694; +return dev_storage + 1822; } } @@ -34492,7 +35100,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj15", 11) == 0) { { -return dev_storage + 1679; +return dev_storage + 1807; } } @@ -34507,7 +35115,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci15", 11) == 0) { { -return dev_storage + 1664; +return dev_storage + 1792; } } @@ -34522,7 +35130,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch15", 11) == 0) { { -return dev_storage + 1649; +return dev_storage + 1777; } } @@ -34537,7 +35145,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg15", 11) == 0) { { -return dev_storage + 1634; +return dev_storage + 1762; } } @@ -34552,7 +35160,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf15", 11) == 0) { { -return dev_storage + 1619; +return dev_storage + 1747; } } @@ -34567,7 +35175,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce15", 11) == 0) { { -return dev_storage + 1604; +return dev_storage + 1732; } } @@ -34582,7 +35190,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd15", 11) == 0) { { -return dev_storage + 1589; +return dev_storage + 1717; } } @@ -34597,7 +35205,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc15", 11) == 0) { { -return dev_storage + 1574; +return dev_storage + 1702; } } @@ -34612,7 +35220,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb15", 11) == 0) { { -return dev_storage + 1559; +return dev_storage + 1687; } } @@ -34627,7 +35235,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca15", 11) == 0) { { -return dev_storage + 1544; +return dev_storage + 1672; } } @@ -34651,7 +35259,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz15", 11) == 0) { { -return dev_storage + 1503; +return dev_storage + 1631; } } @@ -34666,7 +35274,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby15", 11) == 0) { { -return dev_storage + 1488; +return dev_storage + 1616; } } @@ -34681,7 +35289,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx15", 11) == 0) { { -return dev_storage + 1473; +return dev_storage + 1601; } } @@ -34696,7 +35304,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw15", 11) == 0) { { -return dev_storage + 1458; +return dev_storage + 1586; } } @@ -34711,7 +35319,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv15", 11) == 0) { { -return dev_storage + 1443; +return dev_storage + 1571; } } @@ -34726,7 +35334,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu15", 11) == 0) { { -return dev_storage + 1428; +return dev_storage + 1556; } } @@ -34741,7 +35349,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt15", 11) == 0) { { -return dev_storage + 1413; +return dev_storage + 1541; } } @@ -34756,7 +35364,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs15", 11) == 0) { { -return dev_storage + 1398; +return dev_storage + 1526; } } @@ -34771,7 +35379,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr15", 11) == 0) { { -return dev_storage + 1383; +return dev_storage + 1511; } } @@ -34786,7 +35394,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq15", 11) == 0) { { -return dev_storage + 1368; +return dev_storage + 1496; } } @@ -34801,7 +35409,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp15", 11) == 0) { { -return dev_storage + 1353; +return dev_storage + 1481; } } @@ -34816,7 +35424,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo15", 11) == 0) { { -return dev_storage + 1338; +return dev_storage + 1466; } } @@ -34831,7 +35439,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn15", 11) == 0) { { -return dev_storage + 1323; +return dev_storage + 1451; } } @@ -34846,7 +35454,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm15", 11) == 0) { { -return dev_storage + 1308; +return dev_storage + 1436; } } @@ -34861,7 +35469,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl15", 11) == 0) { { -return dev_storage + 1293; +return dev_storage + 1421; } } @@ -34876,7 +35484,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk15", 11) == 0) { { -return dev_storage + 1278; +return dev_storage + 1406; } } @@ -34891,7 +35499,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj15", 11) == 0) { { -return dev_storage + 1263; +return dev_storage + 1391; } } @@ -34906,7 +35514,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi15", 11) == 0) { { -return dev_storage + 1248; +return dev_storage + 1376; } } @@ -34921,7 +35529,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh15", 11) == 0) { { -return dev_storage + 1233; +return dev_storage + 1361; } } @@ -34936,7 +35544,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg15", 11) == 0) { { -return dev_storage + 1218; +return dev_storage + 1346; } } @@ -34951,7 +35559,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf15", 11) == 0) { { -return dev_storage + 1203; +return dev_storage + 1331; } } @@ -34966,7 +35574,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe15", 11) == 0) { { -return dev_storage + 1188; +return dev_storage + 1316; } } @@ -34981,7 +35589,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd15", 11) == 0) { { -return dev_storage + 1173; +return dev_storage + 1301; } } @@ -34996,7 +35604,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc15", 11) == 0) { { -return dev_storage + 1158; +return dev_storage + 1286; } } @@ -35011,7 +35619,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb15", 11) == 0) { { -return dev_storage + 1143; +return dev_storage + 1271; } } @@ -35026,7 +35634,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba15", 11) == 0) { { -return dev_storage + 1128; +return dev_storage + 1256; } } @@ -35050,7 +35658,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz15", 11) == 0) { { -return dev_storage + 1087; +return dev_storage + 1215; } } @@ -35065,7 +35673,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday15", 11) == 0) { { -return dev_storage + 1072; +return dev_storage + 1200; } } @@ -35080,7 +35688,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax15", 11) == 0) { { -return dev_storage + 1057; +return dev_storage + 1185; } } @@ -35095,7 +35703,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw15", 11) == 0) { { -return dev_storage + 1042; +return dev_storage + 1170; } } @@ -35110,7 +35718,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav15", 11) == 0) { { -return dev_storage + 1027; +return dev_storage + 1155; } } @@ -35125,7 +35733,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau15", 11) == 0) { { -return dev_storage + 1012; +return dev_storage + 1140; } } @@ -35140,7 +35748,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat15", 11) == 0) { { -return dev_storage + 997; +return dev_storage + 1125; } } @@ -35155,7 +35763,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas15", 11) == 0) { { -return dev_storage + 982; +return dev_storage + 1110; } } @@ -35170,7 +35778,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar15", 11) == 0) { { -return dev_storage + 967; +return dev_storage + 1095; } } @@ -35185,7 +35793,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq15", 11) == 0) { { -return dev_storage + 952; +return dev_storage + 1080; } } @@ -35200,7 +35808,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap15", 11) == 0) { { -return dev_storage + 937; +return dev_storage + 1065; } } @@ -35215,7 +35823,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao15", 11) == 0) { { -return dev_storage + 922; +return dev_storage + 1050; } } @@ -35230,7 +35838,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan15", 11) == 0) { { -return dev_storage + 907; +return dev_storage + 1035; } } @@ -35245,7 +35853,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam15", 11) == 0) { { -return dev_storage + 892; +return dev_storage + 1020; } } @@ -35260,7 +35868,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal15", 11) == 0) { { -return dev_storage + 877; +return dev_storage + 1005; } } @@ -35275,7 +35883,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak15", 11) == 0) { { -return dev_storage + 862; +return dev_storage + 990; } } @@ -35290,7 +35898,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj15", 11) == 0) { { -return dev_storage + 847; +return dev_storage + 975; } } @@ -35305,7 +35913,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai15", 11) == 0) { { -return dev_storage + 832; +return dev_storage + 960; } } @@ -35320,7 +35928,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah15", 11) == 0) { { -return dev_storage + 817; +return dev_storage + 945; } } @@ -35335,7 +35943,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag15", 11) == 0) { { -return dev_storage + 802; +return dev_storage + 930; } } @@ -35350,7 +35958,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf15", 11) == 0) { { -return dev_storage + 787; +return dev_storage + 915; } } @@ -35365,7 +35973,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae15", 11) == 0) { { -return dev_storage + 772; +return dev_storage + 900; } } @@ -35380,7 +35988,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad15", 11) == 0) { { -return dev_storage + 757; +return dev_storage + 885; } } @@ -35395,7 +36003,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac15", 11) == 0) { { -return dev_storage + 742; +return dev_storage + 870; } } @@ -35410,7 +36018,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab15", 11) == 0) { { -return dev_storage + 727; +return dev_storage + 855; } } @@ -35425,7 +36033,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa15", 11) == 0) { { -return dev_storage + 712; +return dev_storage + 840; } } @@ -35452,78 +36060,171 @@ return NULL; switch (KR_keyword [7]) { case 'y': - switch (KR_keyword [9]) + switch (KR_keyword [5]) { - case '5': - if (strncmp (KR_keyword, "/dev/ttyS54", 11) == 0) + case 't': + switch (KR_keyword [9]) { + case '5': + if (strncmp (KR_keyword, "/dev/ttyS54", 11) == 0) + { { -return dev_storage + 2567; +return dev_storage + 2631; } - } - else - { + } + else + { +{ +return NULL; + +} + } + case '4': + if (strncmp (KR_keyword, "/dev/ttyS44", 11) == 0) + { +{ +return dev_storage + 2621; + +} + } + else + { +{ +return NULL; + +} + } + case '3': + if (strncmp (KR_keyword, "/dev/ttyS34", 11) == 0) + { +{ +return dev_storage + 2611; + +} + } + else + { +{ +return NULL; + +} + } + case '2': + if (strncmp (KR_keyword, "/dev/ttyS24", 11) == 0) + { +{ +return dev_storage + 2601; + +} + } + else + { +{ +return NULL; + +} + } + case '1': + if (strncmp (KR_keyword, "/dev/ttyS14", 11) == 0) + { +{ +return dev_storage + 2591; + +} + } + else + { +{ +return NULL; + +} + } + default: { return NULL; } } - case '4': - if (strncmp (KR_keyword, "/dev/ttyS44", 11) == 0) + case 'p': + switch (KR_keyword [9]) { + case '5': + if (strncmp (KR_keyword, "/dev/ptym54", 11) == 0) + { { -return dev_storage + 2557; +return dev_storage + 357; } - } - else - { + } + else + { { return NULL; } - } - case '3': - if (strncmp (KR_keyword, "/dev/ttyS34", 11) == 0) - { + } + case '4': + if (strncmp (KR_keyword, "/dev/ptym44", 11) == 0) + { { -return dev_storage + 2547; +return dev_storage + 347; } - } - else - { + } + else + { { return NULL; } - } - case '2': - if (strncmp (KR_keyword, "/dev/ttyS24", 11) == 0) - { + } + case '3': + if (strncmp (KR_keyword, "/dev/ptym34", 11) == 0) + { { -return dev_storage + 2537; +return dev_storage + 337; } - } - else - { + } + else + { { return NULL; } - } - case '1': - if (strncmp (KR_keyword, "/dev/ttyS14", 11) == 0) - { + } + case '2': + if (strncmp (KR_keyword, "/dev/ptym24", 11) == 0) + { { -return dev_storage + 2527; +return dev_storage + 327; } - } - else - { + } + else + { +{ +return NULL; + +} + } + case '1': + if (strncmp (KR_keyword, "/dev/ptym14", 11) == 0) + { +{ +return dev_storage + 317; + +} + } + else + { +{ +return NULL; + +} + } + default: { return NULL; @@ -35680,7 +36381,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx14", 11) == 0) { { -return dev_storage + 2302; +return dev_storage + 2430; } } @@ -35695,7 +36396,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw14", 11) == 0) { { -return dev_storage + 2287; +return dev_storage + 2415; } } @@ -35710,7 +36411,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv14", 11) == 0) { { -return dev_storage + 2272; +return dev_storage + 2400; } } @@ -35725,7 +36426,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu14", 11) == 0) { { -return dev_storage + 2257; +return dev_storage + 2385; } } @@ -35740,7 +36441,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt14", 11) == 0) { { -return dev_storage + 2242; +return dev_storage + 2370; } } @@ -35755,7 +36456,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds14", 11) == 0) { { -return dev_storage + 2227; +return dev_storage + 2355; } } @@ -35770,7 +36471,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr14", 11) == 0) { { -return dev_storage + 2212; +return dev_storage + 2340; } } @@ -35785,7 +36486,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq14", 11) == 0) { { -return dev_storage + 2197; +return dev_storage + 2325; } } @@ -35800,7 +36501,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp14", 11) == 0) { { -return dev_storage + 2182; +return dev_storage + 2310; } } @@ -35815,7 +36516,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo14", 11) == 0) { { -return dev_storage + 2167; +return dev_storage + 2295; } } @@ -35830,7 +36531,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn14", 11) == 0) { { -return dev_storage + 2152; +return dev_storage + 2280; } } @@ -35845,7 +36546,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm14", 11) == 0) { { -return dev_storage + 2137; +return dev_storage + 2265; } } @@ -35860,7 +36561,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl14", 11) == 0) { { -return dev_storage + 2122; +return dev_storage + 2250; } } @@ -35875,7 +36576,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk14", 11) == 0) { { -return dev_storage + 2107; +return dev_storage + 2235; } } @@ -35890,7 +36591,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj14", 11) == 0) { { -return dev_storage + 2092; +return dev_storage + 2220; } } @@ -35905,7 +36606,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi14", 11) == 0) { { -return dev_storage + 2077; +return dev_storage + 2205; } } @@ -35920,7 +36621,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh14", 11) == 0) { { -return dev_storage + 2062; +return dev_storage + 2190; } } @@ -35935,7 +36636,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg14", 11) == 0) { { -return dev_storage + 2047; +return dev_storage + 2175; } } @@ -35950,7 +36651,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf14", 11) == 0) { { -return dev_storage + 2032; +return dev_storage + 2160; } } @@ -35965,7 +36666,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde14", 11) == 0) { { -return dev_storage + 2017; +return dev_storage + 2145; } } @@ -35980,7 +36681,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd14", 11) == 0) { { -return dev_storage + 2002; +return dev_storage + 2130; } } @@ -35995,7 +36696,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc14", 11) == 0) { { -return dev_storage + 1987; +return dev_storage + 2115; } } @@ -36010,7 +36711,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb14", 11) == 0) { { -return dev_storage + 1972; +return dev_storage + 2100; } } @@ -36025,7 +36726,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda14", 11) == 0) { { -return dev_storage + 1957; +return dev_storage + 2085; } } @@ -36049,7 +36750,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz14", 11) == 0) { { -return dev_storage + 1918; +return dev_storage + 2046; } } @@ -36064,7 +36765,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy14", 11) == 0) { { -return dev_storage + 1903; +return dev_storage + 2031; } } @@ -36079,7 +36780,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx14", 11) == 0) { { -return dev_storage + 1888; +return dev_storage + 2016; } } @@ -36094,7 +36795,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw14", 11) == 0) { { -return dev_storage + 1873; +return dev_storage + 2001; } } @@ -36109,7 +36810,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv14", 11) == 0) { { -return dev_storage + 1858; +return dev_storage + 1986; } } @@ -36124,7 +36825,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu14", 11) == 0) { { -return dev_storage + 1843; +return dev_storage + 1971; } } @@ -36139,7 +36840,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct14", 11) == 0) { { -return dev_storage + 1828; +return dev_storage + 1956; } } @@ -36154,7 +36855,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs14", 11) == 0) { { -return dev_storage + 1813; +return dev_storage + 1941; } } @@ -36169,7 +36870,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr14", 11) == 0) { { -return dev_storage + 1798; +return dev_storage + 1926; } } @@ -36184,7 +36885,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq14", 11) == 0) { { -return dev_storage + 1783; +return dev_storage + 1911; } } @@ -36199,7 +36900,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp14", 11) == 0) { { -return dev_storage + 1768; +return dev_storage + 1896; } } @@ -36214,7 +36915,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco14", 11) == 0) { { -return dev_storage + 1753; +return dev_storage + 1881; } } @@ -36229,7 +36930,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn14", 11) == 0) { { -return dev_storage + 1738; +return dev_storage + 1866; } } @@ -36244,7 +36945,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm14", 11) == 0) { { -return dev_storage + 1723; +return dev_storage + 1851; } } @@ -36259,7 +36960,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl14", 11) == 0) { { -return dev_storage + 1708; +return dev_storage + 1836; } } @@ -36274,7 +36975,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck14", 11) == 0) { { -return dev_storage + 1693; +return dev_storage + 1821; } } @@ -36289,7 +36990,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj14", 11) == 0) { { -return dev_storage + 1678; +return dev_storage + 1806; } } @@ -36304,7 +37005,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci14", 11) == 0) { { -return dev_storage + 1663; +return dev_storage + 1791; } } @@ -36319,7 +37020,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch14", 11) == 0) { { -return dev_storage + 1648; +return dev_storage + 1776; } } @@ -36334,7 +37035,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg14", 11) == 0) { { -return dev_storage + 1633; +return dev_storage + 1761; } } @@ -36349,7 +37050,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf14", 11) == 0) { { -return dev_storage + 1618; +return dev_storage + 1746; } } @@ -36364,7 +37065,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce14", 11) == 0) { { -return dev_storage + 1603; +return dev_storage + 1731; } } @@ -36379,7 +37080,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd14", 11) == 0) { { -return dev_storage + 1588; +return dev_storage + 1716; } } @@ -36394,7 +37095,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc14", 11) == 0) { { -return dev_storage + 1573; +return dev_storage + 1701; } } @@ -36409,7 +37110,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb14", 11) == 0) { { -return dev_storage + 1558; +return dev_storage + 1686; } } @@ -36424,7 +37125,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca14", 11) == 0) { { -return dev_storage + 1543; +return dev_storage + 1671; } } @@ -36448,7 +37149,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz14", 11) == 0) { { -return dev_storage + 1502; +return dev_storage + 1630; } } @@ -36463,7 +37164,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby14", 11) == 0) { { -return dev_storage + 1487; +return dev_storage + 1615; } } @@ -36478,7 +37179,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx14", 11) == 0) { { -return dev_storage + 1472; +return dev_storage + 1600; } } @@ -36493,7 +37194,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw14", 11) == 0) { { -return dev_storage + 1457; +return dev_storage + 1585; } } @@ -36508,7 +37209,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv14", 11) == 0) { { -return dev_storage + 1442; +return dev_storage + 1570; } } @@ -36523,7 +37224,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu14", 11) == 0) { { -return dev_storage + 1427; +return dev_storage + 1555; } } @@ -36538,7 +37239,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt14", 11) == 0) { { -return dev_storage + 1412; +return dev_storage + 1540; } } @@ -36553,7 +37254,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs14", 11) == 0) { { -return dev_storage + 1397; +return dev_storage + 1525; } } @@ -36568,7 +37269,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr14", 11) == 0) { { -return dev_storage + 1382; +return dev_storage + 1510; } } @@ -36583,7 +37284,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq14", 11) == 0) { { -return dev_storage + 1367; +return dev_storage + 1495; } } @@ -36598,7 +37299,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp14", 11) == 0) { { -return dev_storage + 1352; +return dev_storage + 1480; } } @@ -36613,7 +37314,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo14", 11) == 0) { { -return dev_storage + 1337; +return dev_storage + 1465; } } @@ -36628,7 +37329,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn14", 11) == 0) { { -return dev_storage + 1322; +return dev_storage + 1450; } } @@ -36643,7 +37344,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm14", 11) == 0) { { -return dev_storage + 1307; +return dev_storage + 1435; } } @@ -36658,7 +37359,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl14", 11) == 0) { { -return dev_storage + 1292; +return dev_storage + 1420; } } @@ -36673,7 +37374,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk14", 11) == 0) { { -return dev_storage + 1277; +return dev_storage + 1405; } } @@ -36688,7 +37389,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj14", 11) == 0) { { -return dev_storage + 1262; +return dev_storage + 1390; } } @@ -36703,7 +37404,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi14", 11) == 0) { { -return dev_storage + 1247; +return dev_storage + 1375; } } @@ -36718,7 +37419,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh14", 11) == 0) { { -return dev_storage + 1232; +return dev_storage + 1360; } } @@ -36733,7 +37434,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg14", 11) == 0) { { -return dev_storage + 1217; +return dev_storage + 1345; } } @@ -36748,7 +37449,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf14", 11) == 0) { { -return dev_storage + 1202; +return dev_storage + 1330; } } @@ -36763,7 +37464,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe14", 11) == 0) { { -return dev_storage + 1187; +return dev_storage + 1315; } } @@ -36778,7 +37479,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd14", 11) == 0) { { -return dev_storage + 1172; +return dev_storage + 1300; } } @@ -36793,7 +37494,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc14", 11) == 0) { { -return dev_storage + 1157; +return dev_storage + 1285; } } @@ -36808,7 +37509,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb14", 11) == 0) { { -return dev_storage + 1142; +return dev_storage + 1270; } } @@ -36823,7 +37524,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba14", 11) == 0) { { -return dev_storage + 1127; +return dev_storage + 1255; } } @@ -36847,7 +37548,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz14", 11) == 0) { { -return dev_storage + 1086; +return dev_storage + 1214; } } @@ -36862,7 +37563,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday14", 11) == 0) { { -return dev_storage + 1071; +return dev_storage + 1199; } } @@ -36877,7 +37578,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax14", 11) == 0) { { -return dev_storage + 1056; +return dev_storage + 1184; } } @@ -36892,7 +37593,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw14", 11) == 0) { { -return dev_storage + 1041; +return dev_storage + 1169; } } @@ -36907,7 +37608,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav14", 11) == 0) { { -return dev_storage + 1026; +return dev_storage + 1154; } } @@ -36922,7 +37623,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau14", 11) == 0) { { -return dev_storage + 1011; +return dev_storage + 1139; } } @@ -36937,7 +37638,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat14", 11) == 0) { { -return dev_storage + 996; +return dev_storage + 1124; } } @@ -36952,7 +37653,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas14", 11) == 0) { { -return dev_storage + 981; +return dev_storage + 1109; } } @@ -36967,7 +37668,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar14", 11) == 0) { { -return dev_storage + 966; +return dev_storage + 1094; } } @@ -36982,7 +37683,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq14", 11) == 0) { { -return dev_storage + 951; +return dev_storage + 1079; } } @@ -36997,7 +37698,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap14", 11) == 0) { { -return dev_storage + 936; +return dev_storage + 1064; } } @@ -37012,7 +37713,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao14", 11) == 0) { { -return dev_storage + 921; +return dev_storage + 1049; } } @@ -37027,7 +37728,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan14", 11) == 0) { { -return dev_storage + 906; +return dev_storage + 1034; } } @@ -37042,7 +37743,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam14", 11) == 0) { { -return dev_storage + 891; +return dev_storage + 1019; } } @@ -37057,7 +37758,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal14", 11) == 0) { { -return dev_storage + 876; +return dev_storage + 1004; } } @@ -37072,7 +37773,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak14", 11) == 0) { { -return dev_storage + 861; +return dev_storage + 989; } } @@ -37087,7 +37788,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj14", 11) == 0) { { -return dev_storage + 846; +return dev_storage + 974; } } @@ -37102,7 +37803,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai14", 11) == 0) { { -return dev_storage + 831; +return dev_storage + 959; } } @@ -37117,7 +37818,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah14", 11) == 0) { { -return dev_storage + 816; +return dev_storage + 944; } } @@ -37132,7 +37833,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag14", 11) == 0) { { -return dev_storage + 801; +return dev_storage + 929; } } @@ -37147,7 +37848,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf14", 11) == 0) { { -return dev_storage + 786; +return dev_storage + 914; } } @@ -37162,7 +37863,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae14", 11) == 0) { { -return dev_storage + 771; +return dev_storage + 899; } } @@ -37177,7 +37878,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad14", 11) == 0) { { -return dev_storage + 756; +return dev_storage + 884; } } @@ -37192,7 +37893,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac14", 11) == 0) { { -return dev_storage + 741; +return dev_storage + 869; } } @@ -37207,7 +37908,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab14", 11) == 0) { { -return dev_storage + 726; +return dev_storage + 854; } } @@ -37222,7 +37923,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa14", 11) == 0) { { -return dev_storage + 711; +return dev_storage + 839; } } @@ -37246,16 +37947,16 @@ return NULL; } } case '3': - switch (KR_keyword [7]) + switch (KR_keyword [8]) { - case 'y': - switch (KR_keyword [9]) + case 'z': + switch (KR_keyword [7]) { - case '6': - if (strncmp (KR_keyword, "/dev/ttyS63", 11) == 0) + case 'c': + if (strncmp (KR_keyword, "/dev/sdcz13", 11) == 0) { { -return dev_storage + 2576; +return dev_storage + 2045; } } @@ -37266,11 +37967,11 @@ return NULL; } } - case '5': - if (strncmp (KR_keyword, "/dev/ttyS53", 11) == 0) + case 'b': + if (strncmp (KR_keyword, "/dev/sdbz13", 11) == 0) { { -return dev_storage + 2566; +return dev_storage + 1629; } } @@ -37281,11 +37982,11 @@ return NULL; } } - case '4': - if (strncmp (KR_keyword, "/dev/ttyS43", 11) == 0) + case 'a': + if (strncmp (KR_keyword, "/dev/sdaz13", 11) == 0) { { -return dev_storage + 2556; +return dev_storage + 1213; } } @@ -37296,11 +37997,20 @@ return NULL; } } - case '3': - if (strncmp (KR_keyword, "/dev/ttyS33", 11) == 0) + default: +{ +return NULL; + +} + } + case 'y': + switch (KR_keyword [7]) + { + case 'c': + if (strncmp (KR_keyword, "/dev/sdcy13", 11) == 0) { { -return dev_storage + 2546; +return dev_storage + 2030; } } @@ -37311,11 +38021,11 @@ return NULL; } } - case '2': - if (strncmp (KR_keyword, "/dev/ttyS23", 11) == 0) + case 'b': + if (strncmp (KR_keyword, "/dev/sdby13", 11) == 0) { { -return dev_storage + 2536; +return dev_storage + 1614; } } @@ -37326,11 +38036,287 @@ return NULL; } } - case '1': - if (strncmp (KR_keyword, "/dev/ttyS13", 11) == 0) + case 'a': + if (strncmp (KR_keyword, "/dev/sday13", 11) == 0) { { -return dev_storage + 2526; +return dev_storage + 1198; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'x': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddx13", 11) == 0) + { +{ +return dev_storage + 2429; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcx13", 11) == 0) + { +{ +return dev_storage + 2015; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbx13", 11) == 0) + { +{ +return dev_storage + 1599; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdax13", 11) == 0) + { +{ +return dev_storage + 1183; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'w': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddw13", 11) == 0) + { +{ +return dev_storage + 2414; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcw13", 11) == 0) + { +{ +return dev_storage + 2000; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbw13", 11) == 0) + { +{ +return dev_storage + 1584; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdaw13", 11) == 0) + { +{ +return dev_storage + 1168; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'v': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddv13", 11) == 0) + { +{ +return dev_storage + 2399; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcv13", 11) == 0) + { +{ +return dev_storage + 1985; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbv13", 11) == 0) + { +{ +return dev_storage + 1569; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdav13", 11) == 0) + { +{ +return dev_storage + 1153; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'u': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddu13", 11) == 0) + { +{ +return dev_storage + 2384; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcu13", 11) == 0) + { +{ +return dev_storage + 1970; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbu13", 11) == 0) + { +{ +return dev_storage + 1554; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdau13", 11) == 0) + { +{ +return dev_storage + 1138; } } @@ -37348,13 +38334,13 @@ return NULL; } } case 't': - switch (KR_keyword [9]) + switch (KR_keyword [7]) { - case '2': - if (strncmp (KR_keyword, "/dev/nst123", 11) == 0) + case 'd': + if (strncmp (KR_keyword, "/dev/sddt13", 11) == 0) { { -return dev_storage + 230; +return dev_storage + 2369; } } @@ -37365,11 +38351,11 @@ return NULL; } } - case '1': - if (strncmp (KR_keyword, "/dev/nst113", 11) == 0) + case 'c': + if (strncmp (KR_keyword, "/dev/sdct13", 11) == 0) { { -return dev_storage + 220; +return dev_storage + 1955; } } @@ -37380,11 +38366,26 @@ return NULL; } } - case '0': - if (strncmp (KR_keyword, "/dev/nst103", 11) == 0) + case 'b': + if (strncmp (KR_keyword, "/dev/sdbt13", 11) == 0) { { -return dev_storage + 210; +return dev_storage + 1539; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdat13", 11) == 0) + { +{ +return dev_storage + 1123; } } @@ -37401,7 +38402,7 @@ return NULL; } } - case 'n': + case 's': switch (KR_keyword [9]) { case '6': @@ -37480,11 +38481,1145 @@ return NULL; } } case '1': - if (strncmp (KR_keyword, "/dev/cons13", 11) == 0) + switch (KR_keyword [7]) { + case 'n': + if (strncmp (KR_keyword, "/dev/cons13", 11) == 0) + { { return dev_storage + 33; +} + } + else + { +{ +return NULL; + +} + } + case 'd': + if (strncmp (KR_keyword, "/dev/sdds13", 11) == 0) + { +{ +return dev_storage + 2354; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcs13", 11) == 0) + { +{ +return dev_storage + 1940; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbs13", 11) == 0) + { +{ +return dev_storage + 1524; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdas13", 11) == 0) + { +{ +return dev_storage + 1108; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'r': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddr13", 11) == 0) + { +{ +return dev_storage + 2339; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcr13", 11) == 0) + { +{ +return dev_storage + 1925; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbr13", 11) == 0) + { +{ +return dev_storage + 1509; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdar13", 11) == 0) + { +{ +return dev_storage + 1093; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'q': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddq13", 11) == 0) + { +{ +return dev_storage + 2324; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcq13", 11) == 0) + { +{ +return dev_storage + 1910; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbq13", 11) == 0) + { +{ +return dev_storage + 1494; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdaq13", 11) == 0) + { +{ +return dev_storage + 1078; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'p': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddp13", 11) == 0) + { +{ +return dev_storage + 2309; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcp13", 11) == 0) + { +{ +return dev_storage + 1895; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbp13", 11) == 0) + { +{ +return dev_storage + 1479; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdap13", 11) == 0) + { +{ +return dev_storage + 1063; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'o': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddo13", 11) == 0) + { +{ +return dev_storage + 2294; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdco13", 11) == 0) + { +{ +return dev_storage + 1880; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbo13", 11) == 0) + { +{ +return dev_storage + 1464; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdao13", 11) == 0) + { +{ +return dev_storage + 1048; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'n': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddn13", 11) == 0) + { +{ +return dev_storage + 2279; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcn13", 11) == 0) + { +{ +return dev_storage + 1865; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbn13", 11) == 0) + { +{ +return dev_storage + 1449; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdan13", 11) == 0) + { +{ +return dev_storage + 1033; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'm': + switch (KR_keyword [9]) + { + case '6': + if (strncmp (KR_keyword, "/dev/ptym63", 11) == 0) + { +{ +return dev_storage + 366; + +} + } + else + { +{ +return NULL; + +} + } + case '5': + if (strncmp (KR_keyword, "/dev/ptym53", 11) == 0) + { +{ +return dev_storage + 356; + +} + } + else + { +{ +return NULL; + +} + } + case '4': + if (strncmp (KR_keyword, "/dev/ptym43", 11) == 0) + { +{ +return dev_storage + 346; + +} + } + else + { +{ +return NULL; + +} + } + case '3': + if (strncmp (KR_keyword, "/dev/ptym33", 11) == 0) + { +{ +return dev_storage + 336; + +} + } + else + { +{ +return NULL; + +} + } + case '2': + if (strncmp (KR_keyword, "/dev/ptym23", 11) == 0) + { +{ +return dev_storage + 326; + +} + } + else + { +{ +return NULL; + +} + } + case '1': + switch (KR_keyword [7]) + { + case 'y': + if (strncmp (KR_keyword, "/dev/ptym13", 11) == 0) + { +{ +return dev_storage + 316; + +} + } + else + { +{ +return NULL; + +} + } + case 'd': + if (strncmp (KR_keyword, "/dev/sddm13", 11) == 0) + { +{ +return dev_storage + 2264; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcm13", 11) == 0) + { +{ +return dev_storage + 1850; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbm13", 11) == 0) + { +{ +return dev_storage + 1434; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdam13", 11) == 0) + { +{ +return dev_storage + 1018; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'l': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddl13", 11) == 0) + { +{ +return dev_storage + 2249; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcl13", 11) == 0) + { +{ +return dev_storage + 1835; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbl13", 11) == 0) + { +{ +return dev_storage + 1419; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdal13", 11) == 0) + { +{ +return dev_storage + 1003; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'k': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddk13", 11) == 0) + { +{ +return dev_storage + 2234; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdck13", 11) == 0) + { +{ +return dev_storage + 1820; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbk13", 11) == 0) + { +{ +return dev_storage + 1404; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdak13", 11) == 0) + { +{ +return dev_storage + 988; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'j': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddj13", 11) == 0) + { +{ +return dev_storage + 2219; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcj13", 11) == 0) + { +{ +return dev_storage + 1805; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbj13", 11) == 0) + { +{ +return dev_storage + 1389; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdaj13", 11) == 0) + { +{ +return dev_storage + 973; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'i': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddi13", 11) == 0) + { +{ +return dev_storage + 2204; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdci13", 11) == 0) + { +{ +return dev_storage + 1790; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbi13", 11) == 0) + { +{ +return dev_storage + 1374; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdai13", 11) == 0) + { +{ +return dev_storage + 958; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'h': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddh13", 11) == 0) + { +{ +return dev_storage + 2189; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdch13", 11) == 0) + { +{ +return dev_storage + 1775; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbh13", 11) == 0) + { +{ +return dev_storage + 1359; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdah13", 11) == 0) + { +{ +return dev_storage + 943; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'g': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddg13", 11) == 0) + { +{ +return dev_storage + 2174; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcg13", 11) == 0) + { +{ +return dev_storage + 1760; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbg13", 11) == 0) + { +{ +return dev_storage + 1344; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdag13", 11) == 0) + { +{ +return dev_storage + 928; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'f': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddf13", 11) == 0) + { +{ +return dev_storage + 2159; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcf13", 11) == 0) + { +{ +return dev_storage + 1745; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbf13", 11) == 0) + { +{ +return dev_storage + 1329; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdaf13", 11) == 0) + { +{ +return dev_storage + 913; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'e': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sdde13", 11) == 0) + { +{ +return dev_storage + 2144; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdce13", 11) == 0) + { +{ +return dev_storage + 1730; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbe13", 11) == 0) + { +{ +return dev_storage + 1314; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdae13", 11) == 0) + { +{ +return dev_storage + 898; + } } else @@ -37501,313 +39636,13 @@ return NULL; } } case 'd': - switch (KR_keyword [8]) + switch (KR_keyword [7]) { - case 'x': - if (strncmp (KR_keyword, "/dev/sddx13", 11) == 0) - { -{ -return dev_storage + 2301; - -} - } - else - { -{ -return NULL; - -} - } - case 'w': - if (strncmp (KR_keyword, "/dev/sddw13", 11) == 0) - { -{ -return dev_storage + 2286; - -} - } - else - { -{ -return NULL; - -} - } - case 'v': - if (strncmp (KR_keyword, "/dev/sddv13", 11) == 0) - { -{ -return dev_storage + 2271; - -} - } - else - { -{ -return NULL; - -} - } - case 'u': - if (strncmp (KR_keyword, "/dev/sddu13", 11) == 0) - { -{ -return dev_storage + 2256; - -} - } - else - { -{ -return NULL; - -} - } - case 't': - if (strncmp (KR_keyword, "/dev/sddt13", 11) == 0) - { -{ -return dev_storage + 2241; - -} - } - else - { -{ -return NULL; - -} - } - case 's': - if (strncmp (KR_keyword, "/dev/sdds13", 11) == 0) - { -{ -return dev_storage + 2226; - -} - } - else - { -{ -return NULL; - -} - } - case 'r': - if (strncmp (KR_keyword, "/dev/sddr13", 11) == 0) - { -{ -return dev_storage + 2211; - -} - } - else - { -{ -return NULL; - -} - } - case 'q': - if (strncmp (KR_keyword, "/dev/sddq13", 11) == 0) - { -{ -return dev_storage + 2196; - -} - } - else - { -{ -return NULL; - -} - } - case 'p': - if (strncmp (KR_keyword, "/dev/sddp13", 11) == 0) - { -{ -return dev_storage + 2181; - -} - } - else - { -{ -return NULL; - -} - } - case 'o': - if (strncmp (KR_keyword, "/dev/sddo13", 11) == 0) - { -{ -return dev_storage + 2166; - -} - } - else - { -{ -return NULL; - -} - } - case 'n': - if (strncmp (KR_keyword, "/dev/sddn13", 11) == 0) - { -{ -return dev_storage + 2151; - -} - } - else - { -{ -return NULL; - -} - } - case 'm': - if (strncmp (KR_keyword, "/dev/sddm13", 11) == 0) - { -{ -return dev_storage + 2136; - -} - } - else - { -{ -return NULL; - -} - } - case 'l': - if (strncmp (KR_keyword, "/dev/sddl13", 11) == 0) - { -{ -return dev_storage + 2121; - -} - } - else - { -{ -return NULL; - -} - } - case 'k': - if (strncmp (KR_keyword, "/dev/sddk13", 11) == 0) - { -{ -return dev_storage + 2106; - -} - } - else - { -{ -return NULL; - -} - } - case 'j': - if (strncmp (KR_keyword, "/dev/sddj13", 11) == 0) - { -{ -return dev_storage + 2091; - -} - } - else - { -{ -return NULL; - -} - } - case 'i': - if (strncmp (KR_keyword, "/dev/sddi13", 11) == 0) - { -{ -return dev_storage + 2076; - -} - } - else - { -{ -return NULL; - -} - } - case 'h': - if (strncmp (KR_keyword, "/dev/sddh13", 11) == 0) - { -{ -return dev_storage + 2061; - -} - } - else - { -{ -return NULL; - -} - } - case 'g': - if (strncmp (KR_keyword, "/dev/sddg13", 11) == 0) - { -{ -return dev_storage + 2046; - -} - } - else - { -{ -return NULL; - -} - } - case 'f': - if (strncmp (KR_keyword, "/dev/sddf13", 11) == 0) - { -{ -return dev_storage + 2031; - -} - } - else - { -{ -return NULL; - -} - } - case 'e': - if (strncmp (KR_keyword, "/dev/sdde13", 11) == 0) - { -{ -return dev_storage + 2016; - -} - } - else - { -{ -return NULL; - -} - } case 'd': if (strncmp (KR_keyword, "/dev/sddd13", 11) == 0) { { -return dev_storage + 2001; +return dev_storage + 2129; } } @@ -37819,10 +39654,10 @@ return NULL; } } case 'c': - if (strncmp (KR_keyword, "/dev/sddc13", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdcd13", 11) == 0) { { -return dev_storage + 1986; +return dev_storage + 1715; } } @@ -37834,10 +39669,10 @@ return NULL; } } case 'b': - if (strncmp (KR_keyword, "/dev/sddb13", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdbd13", 11) == 0) { { -return dev_storage + 1971; +return dev_storage + 1299; } } @@ -37849,10 +39684,10 @@ return NULL; } } case 'a': - if (strncmp (KR_keyword, "/dev/sdda13", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdad13", 11) == 0) { { -return dev_storage + 1956; +return dev_storage + 883; } } @@ -37870,343 +39705,13 @@ return NULL; } } case 'c': - switch (KR_keyword [8]) + switch (KR_keyword [7]) { - case 'z': - if (strncmp (KR_keyword, "/dev/sdcz13", 11) == 0) - { -{ -return dev_storage + 1917; - -} - } - else - { -{ -return NULL; - -} - } - case 'y': - if (strncmp (KR_keyword, "/dev/sdcy13", 11) == 0) - { -{ -return dev_storage + 1902; - -} - } - else - { -{ -return NULL; - -} - } - case 'x': - if (strncmp (KR_keyword, "/dev/sdcx13", 11) == 0) - { -{ -return dev_storage + 1887; - -} - } - else - { -{ -return NULL; - -} - } - case 'w': - if (strncmp (KR_keyword, "/dev/sdcw13", 11) == 0) - { -{ -return dev_storage + 1872; - -} - } - else - { -{ -return NULL; - -} - } - case 'v': - if (strncmp (KR_keyword, "/dev/sdcv13", 11) == 0) - { -{ -return dev_storage + 1857; - -} - } - else - { -{ -return NULL; - -} - } - case 'u': - if (strncmp (KR_keyword, "/dev/sdcu13", 11) == 0) - { -{ -return dev_storage + 1842; - -} - } - else - { -{ -return NULL; - -} - } - case 't': - if (strncmp (KR_keyword, "/dev/sdct13", 11) == 0) - { -{ -return dev_storage + 1827; - -} - } - else - { -{ -return NULL; - -} - } - case 's': - if (strncmp (KR_keyword, "/dev/sdcs13", 11) == 0) - { -{ -return dev_storage + 1812; - -} - } - else - { -{ -return NULL; - -} - } - case 'r': - if (strncmp (KR_keyword, "/dev/sdcr13", 11) == 0) - { -{ -return dev_storage + 1797; - -} - } - else - { -{ -return NULL; - -} - } - case 'q': - if (strncmp (KR_keyword, "/dev/sdcq13", 11) == 0) - { -{ -return dev_storage + 1782; - -} - } - else - { -{ -return NULL; - -} - } - case 'p': - if (strncmp (KR_keyword, "/dev/sdcp13", 11) == 0) - { -{ -return dev_storage + 1767; - -} - } - else - { -{ -return NULL; - -} - } - case 'o': - if (strncmp (KR_keyword, "/dev/sdco13", 11) == 0) - { -{ -return dev_storage + 1752; - -} - } - else - { -{ -return NULL; - -} - } - case 'n': - if (strncmp (KR_keyword, "/dev/sdcn13", 11) == 0) - { -{ -return dev_storage + 1737; - -} - } - else - { -{ -return NULL; - -} - } - case 'm': - if (strncmp (KR_keyword, "/dev/sdcm13", 11) == 0) - { -{ -return dev_storage + 1722; - -} - } - else - { -{ -return NULL; - -} - } - case 'l': - if (strncmp (KR_keyword, "/dev/sdcl13", 11) == 0) - { -{ -return dev_storage + 1707; - -} - } - else - { -{ -return NULL; - -} - } - case 'k': - if (strncmp (KR_keyword, "/dev/sdck13", 11) == 0) - { -{ -return dev_storage + 1692; - -} - } - else - { -{ -return NULL; - -} - } - case 'j': - if (strncmp (KR_keyword, "/dev/sdcj13", 11) == 0) - { -{ -return dev_storage + 1677; - -} - } - else - { -{ -return NULL; - -} - } - case 'i': - if (strncmp (KR_keyword, "/dev/sdci13", 11) == 0) - { -{ -return dev_storage + 1662; - -} - } - else - { -{ -return NULL; - -} - } - case 'h': - if (strncmp (KR_keyword, "/dev/sdch13", 11) == 0) - { -{ -return dev_storage + 1647; - -} - } - else - { -{ -return NULL; - -} - } - case 'g': - if (strncmp (KR_keyword, "/dev/sdcg13", 11) == 0) - { -{ -return dev_storage + 1632; - -} - } - else - { -{ -return NULL; - -} - } - case 'f': - if (strncmp (KR_keyword, "/dev/sdcf13", 11) == 0) - { -{ -return dev_storage + 1617; - -} - } - else - { -{ -return NULL; - -} - } - case 'e': - if (strncmp (KR_keyword, "/dev/sdce13", 11) == 0) - { -{ -return dev_storage + 1602; - -} - } - else - { -{ -return NULL; - -} - } case 'd': - if (strncmp (KR_keyword, "/dev/sdcd13", 11) == 0) + if (strncmp (KR_keyword, "/dev/sddc13", 11) == 0) { { -return dev_storage + 1587; +return dev_storage + 2114; } } @@ -38221,7 +39726,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc13", 11) == 0) { { -return dev_storage + 1572; +return dev_storage + 1700; } } @@ -38233,10 +39738,10 @@ return NULL; } } case 'b': - if (strncmp (KR_keyword, "/dev/sdcb13", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdbc13", 11) == 0) { { -return dev_storage + 1557; +return dev_storage + 1284; } } @@ -38248,10 +39753,10 @@ return NULL; } } case 'a': - if (strncmp (KR_keyword, "/dev/sdca13", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdac13", 11) == 0) { { -return dev_storage + 1542; +return dev_storage + 868; } } @@ -38269,343 +39774,13 @@ return NULL; } } case 'b': - switch (KR_keyword [8]) + switch (KR_keyword [7]) { - case 'z': - if (strncmp (KR_keyword, "/dev/sdbz13", 11) == 0) - { -{ -return dev_storage + 1501; - -} - } - else - { -{ -return NULL; - -} - } - case 'y': - if (strncmp (KR_keyword, "/dev/sdby13", 11) == 0) - { -{ -return dev_storage + 1486; - -} - } - else - { -{ -return NULL; - -} - } - case 'x': - if (strncmp (KR_keyword, "/dev/sdbx13", 11) == 0) - { -{ -return dev_storage + 1471; - -} - } - else - { -{ -return NULL; - -} - } - case 'w': - if (strncmp (KR_keyword, "/dev/sdbw13", 11) == 0) - { -{ -return dev_storage + 1456; - -} - } - else - { -{ -return NULL; - -} - } - case 'v': - if (strncmp (KR_keyword, "/dev/sdbv13", 11) == 0) - { -{ -return dev_storage + 1441; - -} - } - else - { -{ -return NULL; - -} - } - case 'u': - if (strncmp (KR_keyword, "/dev/sdbu13", 11) == 0) - { -{ -return dev_storage + 1426; - -} - } - else - { -{ -return NULL; - -} - } - case 't': - if (strncmp (KR_keyword, "/dev/sdbt13", 11) == 0) - { -{ -return dev_storage + 1411; - -} - } - else - { -{ -return NULL; - -} - } - case 's': - if (strncmp (KR_keyword, "/dev/sdbs13", 11) == 0) - { -{ -return dev_storage + 1396; - -} - } - else - { -{ -return NULL; - -} - } - case 'r': - if (strncmp (KR_keyword, "/dev/sdbr13", 11) == 0) - { -{ -return dev_storage + 1381; - -} - } - else - { -{ -return NULL; - -} - } - case 'q': - if (strncmp (KR_keyword, "/dev/sdbq13", 11) == 0) - { -{ -return dev_storage + 1366; - -} - } - else - { -{ -return NULL; - -} - } - case 'p': - if (strncmp (KR_keyword, "/dev/sdbp13", 11) == 0) - { -{ -return dev_storage + 1351; - -} - } - else - { -{ -return NULL; - -} - } - case 'o': - if (strncmp (KR_keyword, "/dev/sdbo13", 11) == 0) - { -{ -return dev_storage + 1336; - -} - } - else - { -{ -return NULL; - -} - } - case 'n': - if (strncmp (KR_keyword, "/dev/sdbn13", 11) == 0) - { -{ -return dev_storage + 1321; - -} - } - else - { -{ -return NULL; - -} - } - case 'm': - if (strncmp (KR_keyword, "/dev/sdbm13", 11) == 0) - { -{ -return dev_storage + 1306; - -} - } - else - { -{ -return NULL; - -} - } - case 'l': - if (strncmp (KR_keyword, "/dev/sdbl13", 11) == 0) - { -{ -return dev_storage + 1291; - -} - } - else - { -{ -return NULL; - -} - } - case 'k': - if (strncmp (KR_keyword, "/dev/sdbk13", 11) == 0) - { -{ -return dev_storage + 1276; - -} - } - else - { -{ -return NULL; - -} - } - case 'j': - if (strncmp (KR_keyword, "/dev/sdbj13", 11) == 0) - { -{ -return dev_storage + 1261; - -} - } - else - { -{ -return NULL; - -} - } - case 'i': - if (strncmp (KR_keyword, "/dev/sdbi13", 11) == 0) - { -{ -return dev_storage + 1246; - -} - } - else - { -{ -return NULL; - -} - } - case 'h': - if (strncmp (KR_keyword, "/dev/sdbh13", 11) == 0) - { -{ -return dev_storage + 1231; - -} - } - else - { -{ -return NULL; - -} - } - case 'g': - if (strncmp (KR_keyword, "/dev/sdbg13", 11) == 0) - { -{ -return dev_storage + 1216; - -} - } - else - { -{ -return NULL; - -} - } - case 'f': - if (strncmp (KR_keyword, "/dev/sdbf13", 11) == 0) - { -{ -return dev_storage + 1201; - -} - } - else - { -{ -return NULL; - -} - } - case 'e': - if (strncmp (KR_keyword, "/dev/sdbe13", 11) == 0) - { -{ -return dev_storage + 1186; - -} - } - else - { -{ -return NULL; - -} - } case 'd': - if (strncmp (KR_keyword, "/dev/sdbd13", 11) == 0) + if (strncmp (KR_keyword, "/dev/sddb13", 11) == 0) { { -return dev_storage + 1171; +return dev_storage + 2099; } } @@ -38617,10 +39792,10 @@ return NULL; } } case 'c': - if (strncmp (KR_keyword, "/dev/sdbc13", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdcb13", 11) == 0) { { -return dev_storage + 1156; +return dev_storage + 1685; } } @@ -38635,7 +39810,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb13", 11) == 0) { { -return dev_storage + 1141; +return dev_storage + 1269; } } @@ -38647,10 +39822,10 @@ return NULL; } } case 'a': - if (strncmp (KR_keyword, "/dev/sdba13", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdab13", 11) == 0) { { -return dev_storage + 1126; +return dev_storage + 853; } } @@ -38668,343 +39843,13 @@ return NULL; } } case 'a': - switch (KR_keyword [8]) + switch (KR_keyword [7]) { - case 'z': - if (strncmp (KR_keyword, "/dev/sdaz13", 11) == 0) - { -{ -return dev_storage + 1085; - -} - } - else - { -{ -return NULL; - -} - } - case 'y': - if (strncmp (KR_keyword, "/dev/sday13", 11) == 0) - { -{ -return dev_storage + 1070; - -} - } - else - { -{ -return NULL; - -} - } - case 'x': - if (strncmp (KR_keyword, "/dev/sdax13", 11) == 0) - { -{ -return dev_storage + 1055; - -} - } - else - { -{ -return NULL; - -} - } - case 'w': - if (strncmp (KR_keyword, "/dev/sdaw13", 11) == 0) - { -{ -return dev_storage + 1040; - -} - } - else - { -{ -return NULL; - -} - } - case 'v': - if (strncmp (KR_keyword, "/dev/sdav13", 11) == 0) - { -{ -return dev_storage + 1025; - -} - } - else - { -{ -return NULL; - -} - } - case 'u': - if (strncmp (KR_keyword, "/dev/sdau13", 11) == 0) - { -{ -return dev_storage + 1010; - -} - } - else - { -{ -return NULL; - -} - } - case 't': - if (strncmp (KR_keyword, "/dev/sdat13", 11) == 0) - { -{ -return dev_storage + 995; - -} - } - else - { -{ -return NULL; - -} - } - case 's': - if (strncmp (KR_keyword, "/dev/sdas13", 11) == 0) - { -{ -return dev_storage + 980; - -} - } - else - { -{ -return NULL; - -} - } - case 'r': - if (strncmp (KR_keyword, "/dev/sdar13", 11) == 0) - { -{ -return dev_storage + 965; - -} - } - else - { -{ -return NULL; - -} - } - case 'q': - if (strncmp (KR_keyword, "/dev/sdaq13", 11) == 0) - { -{ -return dev_storage + 950; - -} - } - else - { -{ -return NULL; - -} - } - case 'p': - if (strncmp (KR_keyword, "/dev/sdap13", 11) == 0) - { -{ -return dev_storage + 935; - -} - } - else - { -{ -return NULL; - -} - } - case 'o': - if (strncmp (KR_keyword, "/dev/sdao13", 11) == 0) - { -{ -return dev_storage + 920; - -} - } - else - { -{ -return NULL; - -} - } - case 'n': - if (strncmp (KR_keyword, "/dev/sdan13", 11) == 0) - { -{ -return dev_storage + 905; - -} - } - else - { -{ -return NULL; - -} - } - case 'm': - if (strncmp (KR_keyword, "/dev/sdam13", 11) == 0) - { -{ -return dev_storage + 890; - -} - } - else - { -{ -return NULL; - -} - } - case 'l': - if (strncmp (KR_keyword, "/dev/sdal13", 11) == 0) - { -{ -return dev_storage + 875; - -} - } - else - { -{ -return NULL; - -} - } - case 'k': - if (strncmp (KR_keyword, "/dev/sdak13", 11) == 0) - { -{ -return dev_storage + 860; - -} - } - else - { -{ -return NULL; - -} - } - case 'j': - if (strncmp (KR_keyword, "/dev/sdaj13", 11) == 0) - { -{ -return dev_storage + 845; - -} - } - else - { -{ -return NULL; - -} - } - case 'i': - if (strncmp (KR_keyword, "/dev/sdai13", 11) == 0) - { -{ -return dev_storage + 830; - -} - } - else - { -{ -return NULL; - -} - } - case 'h': - if (strncmp (KR_keyword, "/dev/sdah13", 11) == 0) - { -{ -return dev_storage + 815; - -} - } - else - { -{ -return NULL; - -} - } - case 'g': - if (strncmp (KR_keyword, "/dev/sdag13", 11) == 0) - { -{ -return dev_storage + 800; - -} - } - else - { -{ -return NULL; - -} - } - case 'f': - if (strncmp (KR_keyword, "/dev/sdaf13", 11) == 0) - { -{ -return dev_storage + 785; - -} - } - else - { -{ -return NULL; - -} - } - case 'e': - if (strncmp (KR_keyword, "/dev/sdae13", 11) == 0) - { -{ -return dev_storage + 770; - -} - } - else - { -{ -return NULL; - -} - } case 'd': - if (strncmp (KR_keyword, "/dev/sdad13", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdda13", 11) == 0) { { -return dev_storage + 755; +return dev_storage + 2084; } } @@ -39016,10 +39861,10 @@ return NULL; } } case 'c': - if (strncmp (KR_keyword, "/dev/sdac13", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdca13", 11) == 0) { { -return dev_storage + 740; +return dev_storage + 1670; } } @@ -39031,10 +39876,10 @@ return NULL; } } case 'b': - if (strncmp (KR_keyword, "/dev/sdab13", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdba13", 11) == 0) { { -return dev_storage + 725; +return dev_storage + 1254; } } @@ -39049,7 +39894,160 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa13", 11) == 0) { { -return dev_storage + 710; +return dev_storage + 838; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'S': + switch (KR_keyword [9]) + { + case '6': + if (strncmp (KR_keyword, "/dev/ttyS63", 11) == 0) + { +{ +return dev_storage + 2640; + +} + } + else + { +{ +return NULL; + +} + } + case '5': + if (strncmp (KR_keyword, "/dev/ttyS53", 11) == 0) + { +{ +return dev_storage + 2630; + +} + } + else + { +{ +return NULL; + +} + } + case '4': + if (strncmp (KR_keyword, "/dev/ttyS43", 11) == 0) + { +{ +return dev_storage + 2620; + +} + } + else + { +{ +return NULL; + +} + } + case '3': + if (strncmp (KR_keyword, "/dev/ttyS33", 11) == 0) + { +{ +return dev_storage + 2610; + +} + } + else + { +{ +return NULL; + +} + } + case '2': + if (strncmp (KR_keyword, "/dev/ttyS23", 11) == 0) + { +{ +return dev_storage + 2600; + +} + } + else + { +{ +return NULL; + +} + } + case '1': + if (strncmp (KR_keyword, "/dev/ttyS13", 11) == 0) + { +{ +return dev_storage + 2590; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case '1': + switch (KR_keyword [9]) + { + case '2': + if (strncmp (KR_keyword, "/dev/nst123", 11) == 0) + { +{ +return dev_storage + 230; + +} + } + else + { +{ +return NULL; + +} + } + case '1': + if (strncmp (KR_keyword, "/dev/nst113", 11) == 0) + { +{ +return dev_storage + 220; + +} + } + else + { +{ +return NULL; + +} + } + case '0': + if (strncmp (KR_keyword, "/dev/nst103", 11) == 0) + { +{ +return dev_storage + 210; } } @@ -39073,16 +40071,16 @@ return NULL; } } case '2': - switch (KR_keyword [7]) + switch (KR_keyword [8]) { - case 'y': - switch (KR_keyword [9]) + case 'z': + switch (KR_keyword [7]) { - case '6': - if (strncmp (KR_keyword, "/dev/ttyS62", 11) == 0) + case 'c': + if (strncmp (KR_keyword, "/dev/sdcz12", 11) == 0) { { -return dev_storage + 2575; +return dev_storage + 2044; } } @@ -39093,11 +40091,11 @@ return NULL; } } - case '5': - if (strncmp (KR_keyword, "/dev/ttyS52", 11) == 0) + case 'b': + if (strncmp (KR_keyword, "/dev/sdbz12", 11) == 0) { { -return dev_storage + 2565; +return dev_storage + 1628; } } @@ -39108,11 +40106,11 @@ return NULL; } } - case '4': - if (strncmp (KR_keyword, "/dev/ttyS42", 11) == 0) + case 'a': + if (strncmp (KR_keyword, "/dev/sdaz12", 11) == 0) { { -return dev_storage + 2555; +return dev_storage + 1212; } } @@ -39123,11 +40121,20 @@ return NULL; } } - case '3': - if (strncmp (KR_keyword, "/dev/ttyS32", 11) == 0) + default: +{ +return NULL; + +} + } + case 'y': + switch (KR_keyword [7]) + { + case 'c': + if (strncmp (KR_keyword, "/dev/sdcy12", 11) == 0) { { -return dev_storage + 2545; +return dev_storage + 2029; } } @@ -39138,11 +40145,11 @@ return NULL; } } - case '2': - if (strncmp (KR_keyword, "/dev/ttyS22", 11) == 0) + case 'b': + if (strncmp (KR_keyword, "/dev/sdby12", 11) == 0) { { -return dev_storage + 2535; +return dev_storage + 1613; } } @@ -39153,11 +40160,287 @@ return NULL; } } - case '1': - if (strncmp (KR_keyword, "/dev/ttyS12", 11) == 0) + case 'a': + if (strncmp (KR_keyword, "/dev/sday12", 11) == 0) { { -return dev_storage + 2525; +return dev_storage + 1197; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'x': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddx12", 11) == 0) + { +{ +return dev_storage + 2428; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcx12", 11) == 0) + { +{ +return dev_storage + 2014; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbx12", 11) == 0) + { +{ +return dev_storage + 1598; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdax12", 11) == 0) + { +{ +return dev_storage + 1182; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'w': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddw12", 11) == 0) + { +{ +return dev_storage + 2413; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcw12", 11) == 0) + { +{ +return dev_storage + 1999; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbw12", 11) == 0) + { +{ +return dev_storage + 1583; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdaw12", 11) == 0) + { +{ +return dev_storage + 1167; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'v': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddv12", 11) == 0) + { +{ +return dev_storage + 2398; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcv12", 11) == 0) + { +{ +return dev_storage + 1984; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbv12", 11) == 0) + { +{ +return dev_storage + 1568; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdav12", 11) == 0) + { +{ +return dev_storage + 1152; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'u': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddu12", 11) == 0) + { +{ +return dev_storage + 2383; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcu12", 11) == 0) + { +{ +return dev_storage + 1969; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbu12", 11) == 0) + { +{ +return dev_storage + 1553; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdau12", 11) == 0) + { +{ +return dev_storage + 1137; } } @@ -39175,13 +40458,13 @@ return NULL; } } case 't': - switch (KR_keyword [9]) + switch (KR_keyword [7]) { - case '2': - if (strncmp (KR_keyword, "/dev/nst122", 11) == 0) + case 'd': + if (strncmp (KR_keyword, "/dev/sddt12", 11) == 0) { { -return dev_storage + 229; +return dev_storage + 2368; } } @@ -39192,11 +40475,11 @@ return NULL; } } - case '1': - if (strncmp (KR_keyword, "/dev/nst112", 11) == 0) + case 'c': + if (strncmp (KR_keyword, "/dev/sdct12", 11) == 0) { { -return dev_storage + 219; +return dev_storage + 1954; } } @@ -39207,11 +40490,26 @@ return NULL; } } - case '0': - if (strncmp (KR_keyword, "/dev/nst102", 11) == 0) + case 'b': + if (strncmp (KR_keyword, "/dev/sdbt12", 11) == 0) { { -return dev_storage + 209; +return dev_storage + 1538; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdat12", 11) == 0) + { +{ +return dev_storage + 1122; } } @@ -39228,7 +40526,7 @@ return NULL; } } - case 'n': + case 's': switch (KR_keyword [9]) { case '6': @@ -39307,11 +40605,1145 @@ return NULL; } } case '1': - if (strncmp (KR_keyword, "/dev/cons12", 11) == 0) + switch (KR_keyword [7]) { + case 'n': + if (strncmp (KR_keyword, "/dev/cons12", 11) == 0) + { { return dev_storage + 32; +} + } + else + { +{ +return NULL; + +} + } + case 'd': + if (strncmp (KR_keyword, "/dev/sdds12", 11) == 0) + { +{ +return dev_storage + 2353; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcs12", 11) == 0) + { +{ +return dev_storage + 1939; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbs12", 11) == 0) + { +{ +return dev_storage + 1523; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdas12", 11) == 0) + { +{ +return dev_storage + 1107; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'r': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddr12", 11) == 0) + { +{ +return dev_storage + 2338; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcr12", 11) == 0) + { +{ +return dev_storage + 1924; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbr12", 11) == 0) + { +{ +return dev_storage + 1508; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdar12", 11) == 0) + { +{ +return dev_storage + 1092; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'q': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddq12", 11) == 0) + { +{ +return dev_storage + 2323; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcq12", 11) == 0) + { +{ +return dev_storage + 1909; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbq12", 11) == 0) + { +{ +return dev_storage + 1493; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdaq12", 11) == 0) + { +{ +return dev_storage + 1077; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'p': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddp12", 11) == 0) + { +{ +return dev_storage + 2308; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcp12", 11) == 0) + { +{ +return dev_storage + 1894; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbp12", 11) == 0) + { +{ +return dev_storage + 1478; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdap12", 11) == 0) + { +{ +return dev_storage + 1062; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'o': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddo12", 11) == 0) + { +{ +return dev_storage + 2293; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdco12", 11) == 0) + { +{ +return dev_storage + 1879; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbo12", 11) == 0) + { +{ +return dev_storage + 1463; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdao12", 11) == 0) + { +{ +return dev_storage + 1047; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'n': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddn12", 11) == 0) + { +{ +return dev_storage + 2278; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcn12", 11) == 0) + { +{ +return dev_storage + 1864; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbn12", 11) == 0) + { +{ +return dev_storage + 1448; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdan12", 11) == 0) + { +{ +return dev_storage + 1032; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'm': + switch (KR_keyword [9]) + { + case '6': + if (strncmp (KR_keyword, "/dev/ptym62", 11) == 0) + { +{ +return dev_storage + 365; + +} + } + else + { +{ +return NULL; + +} + } + case '5': + if (strncmp (KR_keyword, "/dev/ptym52", 11) == 0) + { +{ +return dev_storage + 355; + +} + } + else + { +{ +return NULL; + +} + } + case '4': + if (strncmp (KR_keyword, "/dev/ptym42", 11) == 0) + { +{ +return dev_storage + 345; + +} + } + else + { +{ +return NULL; + +} + } + case '3': + if (strncmp (KR_keyword, "/dev/ptym32", 11) == 0) + { +{ +return dev_storage + 335; + +} + } + else + { +{ +return NULL; + +} + } + case '2': + if (strncmp (KR_keyword, "/dev/ptym22", 11) == 0) + { +{ +return dev_storage + 325; + +} + } + else + { +{ +return NULL; + +} + } + case '1': + switch (KR_keyword [7]) + { + case 'y': + if (strncmp (KR_keyword, "/dev/ptym12", 11) == 0) + { +{ +return dev_storage + 315; + +} + } + else + { +{ +return NULL; + +} + } + case 'd': + if (strncmp (KR_keyword, "/dev/sddm12", 11) == 0) + { +{ +return dev_storage + 2263; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcm12", 11) == 0) + { +{ +return dev_storage + 1849; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbm12", 11) == 0) + { +{ +return dev_storage + 1433; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdam12", 11) == 0) + { +{ +return dev_storage + 1017; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'l': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddl12", 11) == 0) + { +{ +return dev_storage + 2248; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcl12", 11) == 0) + { +{ +return dev_storage + 1834; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbl12", 11) == 0) + { +{ +return dev_storage + 1418; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdal12", 11) == 0) + { +{ +return dev_storage + 1002; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'k': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddk12", 11) == 0) + { +{ +return dev_storage + 2233; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdck12", 11) == 0) + { +{ +return dev_storage + 1819; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbk12", 11) == 0) + { +{ +return dev_storage + 1403; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdak12", 11) == 0) + { +{ +return dev_storage + 987; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'j': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddj12", 11) == 0) + { +{ +return dev_storage + 2218; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcj12", 11) == 0) + { +{ +return dev_storage + 1804; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbj12", 11) == 0) + { +{ +return dev_storage + 1388; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdaj12", 11) == 0) + { +{ +return dev_storage + 972; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'i': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddi12", 11) == 0) + { +{ +return dev_storage + 2203; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdci12", 11) == 0) + { +{ +return dev_storage + 1789; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbi12", 11) == 0) + { +{ +return dev_storage + 1373; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdai12", 11) == 0) + { +{ +return dev_storage + 957; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'h': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddh12", 11) == 0) + { +{ +return dev_storage + 2188; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdch12", 11) == 0) + { +{ +return dev_storage + 1774; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbh12", 11) == 0) + { +{ +return dev_storage + 1358; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdah12", 11) == 0) + { +{ +return dev_storage + 942; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'g': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddg12", 11) == 0) + { +{ +return dev_storage + 2173; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcg12", 11) == 0) + { +{ +return dev_storage + 1759; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbg12", 11) == 0) + { +{ +return dev_storage + 1343; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdag12", 11) == 0) + { +{ +return dev_storage + 927; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'f': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddf12", 11) == 0) + { +{ +return dev_storage + 2158; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcf12", 11) == 0) + { +{ +return dev_storage + 1744; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbf12", 11) == 0) + { +{ +return dev_storage + 1328; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdaf12", 11) == 0) + { +{ +return dev_storage + 912; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'e': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sdde12", 11) == 0) + { +{ +return dev_storage + 2143; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdce12", 11) == 0) + { +{ +return dev_storage + 1729; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbe12", 11) == 0) + { +{ +return dev_storage + 1313; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdae12", 11) == 0) + { +{ +return dev_storage + 897; + } } else @@ -39328,313 +41760,13 @@ return NULL; } } case 'd': - switch (KR_keyword [8]) + switch (KR_keyword [7]) { - case 'x': - if (strncmp (KR_keyword, "/dev/sddx12", 11) == 0) - { -{ -return dev_storage + 2300; - -} - } - else - { -{ -return NULL; - -} - } - case 'w': - if (strncmp (KR_keyword, "/dev/sddw12", 11) == 0) - { -{ -return dev_storage + 2285; - -} - } - else - { -{ -return NULL; - -} - } - case 'v': - if (strncmp (KR_keyword, "/dev/sddv12", 11) == 0) - { -{ -return dev_storage + 2270; - -} - } - else - { -{ -return NULL; - -} - } - case 'u': - if (strncmp (KR_keyword, "/dev/sddu12", 11) == 0) - { -{ -return dev_storage + 2255; - -} - } - else - { -{ -return NULL; - -} - } - case 't': - if (strncmp (KR_keyword, "/dev/sddt12", 11) == 0) - { -{ -return dev_storage + 2240; - -} - } - else - { -{ -return NULL; - -} - } - case 's': - if (strncmp (KR_keyword, "/dev/sdds12", 11) == 0) - { -{ -return dev_storage + 2225; - -} - } - else - { -{ -return NULL; - -} - } - case 'r': - if (strncmp (KR_keyword, "/dev/sddr12", 11) == 0) - { -{ -return dev_storage + 2210; - -} - } - else - { -{ -return NULL; - -} - } - case 'q': - if (strncmp (KR_keyword, "/dev/sddq12", 11) == 0) - { -{ -return dev_storage + 2195; - -} - } - else - { -{ -return NULL; - -} - } - case 'p': - if (strncmp (KR_keyword, "/dev/sddp12", 11) == 0) - { -{ -return dev_storage + 2180; - -} - } - else - { -{ -return NULL; - -} - } - case 'o': - if (strncmp (KR_keyword, "/dev/sddo12", 11) == 0) - { -{ -return dev_storage + 2165; - -} - } - else - { -{ -return NULL; - -} - } - case 'n': - if (strncmp (KR_keyword, "/dev/sddn12", 11) == 0) - { -{ -return dev_storage + 2150; - -} - } - else - { -{ -return NULL; - -} - } - case 'm': - if (strncmp (KR_keyword, "/dev/sddm12", 11) == 0) - { -{ -return dev_storage + 2135; - -} - } - else - { -{ -return NULL; - -} - } - case 'l': - if (strncmp (KR_keyword, "/dev/sddl12", 11) == 0) - { -{ -return dev_storage + 2120; - -} - } - else - { -{ -return NULL; - -} - } - case 'k': - if (strncmp (KR_keyword, "/dev/sddk12", 11) == 0) - { -{ -return dev_storage + 2105; - -} - } - else - { -{ -return NULL; - -} - } - case 'j': - if (strncmp (KR_keyword, "/dev/sddj12", 11) == 0) - { -{ -return dev_storage + 2090; - -} - } - else - { -{ -return NULL; - -} - } - case 'i': - if (strncmp (KR_keyword, "/dev/sddi12", 11) == 0) - { -{ -return dev_storage + 2075; - -} - } - else - { -{ -return NULL; - -} - } - case 'h': - if (strncmp (KR_keyword, "/dev/sddh12", 11) == 0) - { -{ -return dev_storage + 2060; - -} - } - else - { -{ -return NULL; - -} - } - case 'g': - if (strncmp (KR_keyword, "/dev/sddg12", 11) == 0) - { -{ -return dev_storage + 2045; - -} - } - else - { -{ -return NULL; - -} - } - case 'f': - if (strncmp (KR_keyword, "/dev/sddf12", 11) == 0) - { -{ -return dev_storage + 2030; - -} - } - else - { -{ -return NULL; - -} - } - case 'e': - if (strncmp (KR_keyword, "/dev/sdde12", 11) == 0) - { -{ -return dev_storage + 2015; - -} - } - else - { -{ -return NULL; - -} - } case 'd': if (strncmp (KR_keyword, "/dev/sddd12", 11) == 0) { { -return dev_storage + 2000; +return dev_storage + 2128; } } @@ -39646,10 +41778,10 @@ return NULL; } } case 'c': - if (strncmp (KR_keyword, "/dev/sddc12", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdcd12", 11) == 0) { { -return dev_storage + 1985; +return dev_storage + 1714; } } @@ -39661,10 +41793,10 @@ return NULL; } } case 'b': - if (strncmp (KR_keyword, "/dev/sddb12", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdbd12", 11) == 0) { { -return dev_storage + 1970; +return dev_storage + 1298; } } @@ -39676,10 +41808,10 @@ return NULL; } } case 'a': - if (strncmp (KR_keyword, "/dev/sdda12", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdad12", 11) == 0) { { -return dev_storage + 1955; +return dev_storage + 882; } } @@ -39697,343 +41829,13 @@ return NULL; } } case 'c': - switch (KR_keyword [8]) + switch (KR_keyword [7]) { - case 'z': - if (strncmp (KR_keyword, "/dev/sdcz12", 11) == 0) - { -{ -return dev_storage + 1916; - -} - } - else - { -{ -return NULL; - -} - } - case 'y': - if (strncmp (KR_keyword, "/dev/sdcy12", 11) == 0) - { -{ -return dev_storage + 1901; - -} - } - else - { -{ -return NULL; - -} - } - case 'x': - if (strncmp (KR_keyword, "/dev/sdcx12", 11) == 0) - { -{ -return dev_storage + 1886; - -} - } - else - { -{ -return NULL; - -} - } - case 'w': - if (strncmp (KR_keyword, "/dev/sdcw12", 11) == 0) - { -{ -return dev_storage + 1871; - -} - } - else - { -{ -return NULL; - -} - } - case 'v': - if (strncmp (KR_keyword, "/dev/sdcv12", 11) == 0) - { -{ -return dev_storage + 1856; - -} - } - else - { -{ -return NULL; - -} - } - case 'u': - if (strncmp (KR_keyword, "/dev/sdcu12", 11) == 0) - { -{ -return dev_storage + 1841; - -} - } - else - { -{ -return NULL; - -} - } - case 't': - if (strncmp (KR_keyword, "/dev/sdct12", 11) == 0) - { -{ -return dev_storage + 1826; - -} - } - else - { -{ -return NULL; - -} - } - case 's': - if (strncmp (KR_keyword, "/dev/sdcs12", 11) == 0) - { -{ -return dev_storage + 1811; - -} - } - else - { -{ -return NULL; - -} - } - case 'r': - if (strncmp (KR_keyword, "/dev/sdcr12", 11) == 0) - { -{ -return dev_storage + 1796; - -} - } - else - { -{ -return NULL; - -} - } - case 'q': - if (strncmp (KR_keyword, "/dev/sdcq12", 11) == 0) - { -{ -return dev_storage + 1781; - -} - } - else - { -{ -return NULL; - -} - } - case 'p': - if (strncmp (KR_keyword, "/dev/sdcp12", 11) == 0) - { -{ -return dev_storage + 1766; - -} - } - else - { -{ -return NULL; - -} - } - case 'o': - if (strncmp (KR_keyword, "/dev/sdco12", 11) == 0) - { -{ -return dev_storage + 1751; - -} - } - else - { -{ -return NULL; - -} - } - case 'n': - if (strncmp (KR_keyword, "/dev/sdcn12", 11) == 0) - { -{ -return dev_storage + 1736; - -} - } - else - { -{ -return NULL; - -} - } - case 'm': - if (strncmp (KR_keyword, "/dev/sdcm12", 11) == 0) - { -{ -return dev_storage + 1721; - -} - } - else - { -{ -return NULL; - -} - } - case 'l': - if (strncmp (KR_keyword, "/dev/sdcl12", 11) == 0) - { -{ -return dev_storage + 1706; - -} - } - else - { -{ -return NULL; - -} - } - case 'k': - if (strncmp (KR_keyword, "/dev/sdck12", 11) == 0) - { -{ -return dev_storage + 1691; - -} - } - else - { -{ -return NULL; - -} - } - case 'j': - if (strncmp (KR_keyword, "/dev/sdcj12", 11) == 0) - { -{ -return dev_storage + 1676; - -} - } - else - { -{ -return NULL; - -} - } - case 'i': - if (strncmp (KR_keyword, "/dev/sdci12", 11) == 0) - { -{ -return dev_storage + 1661; - -} - } - else - { -{ -return NULL; - -} - } - case 'h': - if (strncmp (KR_keyword, "/dev/sdch12", 11) == 0) - { -{ -return dev_storage + 1646; - -} - } - else - { -{ -return NULL; - -} - } - case 'g': - if (strncmp (KR_keyword, "/dev/sdcg12", 11) == 0) - { -{ -return dev_storage + 1631; - -} - } - else - { -{ -return NULL; - -} - } - case 'f': - if (strncmp (KR_keyword, "/dev/sdcf12", 11) == 0) - { -{ -return dev_storage + 1616; - -} - } - else - { -{ -return NULL; - -} - } - case 'e': - if (strncmp (KR_keyword, "/dev/sdce12", 11) == 0) - { -{ -return dev_storage + 1601; - -} - } - else - { -{ -return NULL; - -} - } case 'd': - if (strncmp (KR_keyword, "/dev/sdcd12", 11) == 0) + if (strncmp (KR_keyword, "/dev/sddc12", 11) == 0) { { -return dev_storage + 1586; +return dev_storage + 2113; } } @@ -40048,7 +41850,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc12", 11) == 0) { { -return dev_storage + 1571; +return dev_storage + 1699; } } @@ -40060,10 +41862,10 @@ return NULL; } } case 'b': - if (strncmp (KR_keyword, "/dev/sdcb12", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdbc12", 11) == 0) { { -return dev_storage + 1556; +return dev_storage + 1283; } } @@ -40075,10 +41877,10 @@ return NULL; } } case 'a': - if (strncmp (KR_keyword, "/dev/sdca12", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdac12", 11) == 0) { { -return dev_storage + 1541; +return dev_storage + 867; } } @@ -40096,343 +41898,13 @@ return NULL; } } case 'b': - switch (KR_keyword [8]) + switch (KR_keyword [7]) { - case 'z': - if (strncmp (KR_keyword, "/dev/sdbz12", 11) == 0) - { -{ -return dev_storage + 1500; - -} - } - else - { -{ -return NULL; - -} - } - case 'y': - if (strncmp (KR_keyword, "/dev/sdby12", 11) == 0) - { -{ -return dev_storage + 1485; - -} - } - else - { -{ -return NULL; - -} - } - case 'x': - if (strncmp (KR_keyword, "/dev/sdbx12", 11) == 0) - { -{ -return dev_storage + 1470; - -} - } - else - { -{ -return NULL; - -} - } - case 'w': - if (strncmp (KR_keyword, "/dev/sdbw12", 11) == 0) - { -{ -return dev_storage + 1455; - -} - } - else - { -{ -return NULL; - -} - } - case 'v': - if (strncmp (KR_keyword, "/dev/sdbv12", 11) == 0) - { -{ -return dev_storage + 1440; - -} - } - else - { -{ -return NULL; - -} - } - case 'u': - if (strncmp (KR_keyword, "/dev/sdbu12", 11) == 0) - { -{ -return dev_storage + 1425; - -} - } - else - { -{ -return NULL; - -} - } - case 't': - if (strncmp (KR_keyword, "/dev/sdbt12", 11) == 0) - { -{ -return dev_storage + 1410; - -} - } - else - { -{ -return NULL; - -} - } - case 's': - if (strncmp (KR_keyword, "/dev/sdbs12", 11) == 0) - { -{ -return dev_storage + 1395; - -} - } - else - { -{ -return NULL; - -} - } - case 'r': - if (strncmp (KR_keyword, "/dev/sdbr12", 11) == 0) - { -{ -return dev_storage + 1380; - -} - } - else - { -{ -return NULL; - -} - } - case 'q': - if (strncmp (KR_keyword, "/dev/sdbq12", 11) == 0) - { -{ -return dev_storage + 1365; - -} - } - else - { -{ -return NULL; - -} - } - case 'p': - if (strncmp (KR_keyword, "/dev/sdbp12", 11) == 0) - { -{ -return dev_storage + 1350; - -} - } - else - { -{ -return NULL; - -} - } - case 'o': - if (strncmp (KR_keyword, "/dev/sdbo12", 11) == 0) - { -{ -return dev_storage + 1335; - -} - } - else - { -{ -return NULL; - -} - } - case 'n': - if (strncmp (KR_keyword, "/dev/sdbn12", 11) == 0) - { -{ -return dev_storage + 1320; - -} - } - else - { -{ -return NULL; - -} - } - case 'm': - if (strncmp (KR_keyword, "/dev/sdbm12", 11) == 0) - { -{ -return dev_storage + 1305; - -} - } - else - { -{ -return NULL; - -} - } - case 'l': - if (strncmp (KR_keyword, "/dev/sdbl12", 11) == 0) - { -{ -return dev_storage + 1290; - -} - } - else - { -{ -return NULL; - -} - } - case 'k': - if (strncmp (KR_keyword, "/dev/sdbk12", 11) == 0) - { -{ -return dev_storage + 1275; - -} - } - else - { -{ -return NULL; - -} - } - case 'j': - if (strncmp (KR_keyword, "/dev/sdbj12", 11) == 0) - { -{ -return dev_storage + 1260; - -} - } - else - { -{ -return NULL; - -} - } - case 'i': - if (strncmp (KR_keyword, "/dev/sdbi12", 11) == 0) - { -{ -return dev_storage + 1245; - -} - } - else - { -{ -return NULL; - -} - } - case 'h': - if (strncmp (KR_keyword, "/dev/sdbh12", 11) == 0) - { -{ -return dev_storage + 1230; - -} - } - else - { -{ -return NULL; - -} - } - case 'g': - if (strncmp (KR_keyword, "/dev/sdbg12", 11) == 0) - { -{ -return dev_storage + 1215; - -} - } - else - { -{ -return NULL; - -} - } - case 'f': - if (strncmp (KR_keyword, "/dev/sdbf12", 11) == 0) - { -{ -return dev_storage + 1200; - -} - } - else - { -{ -return NULL; - -} - } - case 'e': - if (strncmp (KR_keyword, "/dev/sdbe12", 11) == 0) - { -{ -return dev_storage + 1185; - -} - } - else - { -{ -return NULL; - -} - } case 'd': - if (strncmp (KR_keyword, "/dev/sdbd12", 11) == 0) + if (strncmp (KR_keyword, "/dev/sddb12", 11) == 0) { { -return dev_storage + 1170; +return dev_storage + 2098; } } @@ -40444,10 +41916,10 @@ return NULL; } } case 'c': - if (strncmp (KR_keyword, "/dev/sdbc12", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdcb12", 11) == 0) { { -return dev_storage + 1155; +return dev_storage + 1684; } } @@ -40462,7 +41934,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb12", 11) == 0) { { -return dev_storage + 1140; +return dev_storage + 1268; } } @@ -40474,10 +41946,10 @@ return NULL; } } case 'a': - if (strncmp (KR_keyword, "/dev/sdba12", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdab12", 11) == 0) { { -return dev_storage + 1125; +return dev_storage + 852; } } @@ -40495,343 +41967,13 @@ return NULL; } } case 'a': - switch (KR_keyword [8]) + switch (KR_keyword [7]) { - case 'z': - if (strncmp (KR_keyword, "/dev/sdaz12", 11) == 0) - { -{ -return dev_storage + 1084; - -} - } - else - { -{ -return NULL; - -} - } - case 'y': - if (strncmp (KR_keyword, "/dev/sday12", 11) == 0) - { -{ -return dev_storage + 1069; - -} - } - else - { -{ -return NULL; - -} - } - case 'x': - if (strncmp (KR_keyword, "/dev/sdax12", 11) == 0) - { -{ -return dev_storage + 1054; - -} - } - else - { -{ -return NULL; - -} - } - case 'w': - if (strncmp (KR_keyword, "/dev/sdaw12", 11) == 0) - { -{ -return dev_storage + 1039; - -} - } - else - { -{ -return NULL; - -} - } - case 'v': - if (strncmp (KR_keyword, "/dev/sdav12", 11) == 0) - { -{ -return dev_storage + 1024; - -} - } - else - { -{ -return NULL; - -} - } - case 'u': - if (strncmp (KR_keyword, "/dev/sdau12", 11) == 0) - { -{ -return dev_storage + 1009; - -} - } - else - { -{ -return NULL; - -} - } - case 't': - if (strncmp (KR_keyword, "/dev/sdat12", 11) == 0) - { -{ -return dev_storage + 994; - -} - } - else - { -{ -return NULL; - -} - } - case 's': - if (strncmp (KR_keyword, "/dev/sdas12", 11) == 0) - { -{ -return dev_storage + 979; - -} - } - else - { -{ -return NULL; - -} - } - case 'r': - if (strncmp (KR_keyword, "/dev/sdar12", 11) == 0) - { -{ -return dev_storage + 964; - -} - } - else - { -{ -return NULL; - -} - } - case 'q': - if (strncmp (KR_keyword, "/dev/sdaq12", 11) == 0) - { -{ -return dev_storage + 949; - -} - } - else - { -{ -return NULL; - -} - } - case 'p': - if (strncmp (KR_keyword, "/dev/sdap12", 11) == 0) - { -{ -return dev_storage + 934; - -} - } - else - { -{ -return NULL; - -} - } - case 'o': - if (strncmp (KR_keyword, "/dev/sdao12", 11) == 0) - { -{ -return dev_storage + 919; - -} - } - else - { -{ -return NULL; - -} - } - case 'n': - if (strncmp (KR_keyword, "/dev/sdan12", 11) == 0) - { -{ -return dev_storage + 904; - -} - } - else - { -{ -return NULL; - -} - } - case 'm': - if (strncmp (KR_keyword, "/dev/sdam12", 11) == 0) - { -{ -return dev_storage + 889; - -} - } - else - { -{ -return NULL; - -} - } - case 'l': - if (strncmp (KR_keyword, "/dev/sdal12", 11) == 0) - { -{ -return dev_storage + 874; - -} - } - else - { -{ -return NULL; - -} - } - case 'k': - if (strncmp (KR_keyword, "/dev/sdak12", 11) == 0) - { -{ -return dev_storage + 859; - -} - } - else - { -{ -return NULL; - -} - } - case 'j': - if (strncmp (KR_keyword, "/dev/sdaj12", 11) == 0) - { -{ -return dev_storage + 844; - -} - } - else - { -{ -return NULL; - -} - } - case 'i': - if (strncmp (KR_keyword, "/dev/sdai12", 11) == 0) - { -{ -return dev_storage + 829; - -} - } - else - { -{ -return NULL; - -} - } - case 'h': - if (strncmp (KR_keyword, "/dev/sdah12", 11) == 0) - { -{ -return dev_storage + 814; - -} - } - else - { -{ -return NULL; - -} - } - case 'g': - if (strncmp (KR_keyword, "/dev/sdag12", 11) == 0) - { -{ -return dev_storage + 799; - -} - } - else - { -{ -return NULL; - -} - } - case 'f': - if (strncmp (KR_keyword, "/dev/sdaf12", 11) == 0) - { -{ -return dev_storage + 784; - -} - } - else - { -{ -return NULL; - -} - } - case 'e': - if (strncmp (KR_keyword, "/dev/sdae12", 11) == 0) - { -{ -return dev_storage + 769; - -} - } - else - { -{ -return NULL; - -} - } case 'd': - if (strncmp (KR_keyword, "/dev/sdad12", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdda12", 11) == 0) { { -return dev_storage + 754; +return dev_storage + 2083; } } @@ -40843,10 +41985,10 @@ return NULL; } } case 'c': - if (strncmp (KR_keyword, "/dev/sdac12", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdca12", 11) == 0) { { -return dev_storage + 739; +return dev_storage + 1669; } } @@ -40858,10 +42000,10 @@ return NULL; } } case 'b': - if (strncmp (KR_keyword, "/dev/sdab12", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdba12", 11) == 0) { { -return dev_storage + 724; +return dev_storage + 1253; } } @@ -40876,7 +42018,160 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa12", 11) == 0) { { -return dev_storage + 709; +return dev_storage + 837; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'S': + switch (KR_keyword [9]) + { + case '6': + if (strncmp (KR_keyword, "/dev/ttyS62", 11) == 0) + { +{ +return dev_storage + 2639; + +} + } + else + { +{ +return NULL; + +} + } + case '5': + if (strncmp (KR_keyword, "/dev/ttyS52", 11) == 0) + { +{ +return dev_storage + 2629; + +} + } + else + { +{ +return NULL; + +} + } + case '4': + if (strncmp (KR_keyword, "/dev/ttyS42", 11) == 0) + { +{ +return dev_storage + 2619; + +} + } + else + { +{ +return NULL; + +} + } + case '3': + if (strncmp (KR_keyword, "/dev/ttyS32", 11) == 0) + { +{ +return dev_storage + 2609; + +} + } + else + { +{ +return NULL; + +} + } + case '2': + if (strncmp (KR_keyword, "/dev/ttyS22", 11) == 0) + { +{ +return dev_storage + 2599; + +} + } + else + { +{ +return NULL; + +} + } + case '1': + if (strncmp (KR_keyword, "/dev/ttyS12", 11) == 0) + { +{ +return dev_storage + 2589; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case '1': + switch (KR_keyword [9]) + { + case '2': + if (strncmp (KR_keyword, "/dev/nst122", 11) == 0) + { +{ +return dev_storage + 229; + +} + } + else + { +{ +return NULL; + +} + } + case '1': + if (strncmp (KR_keyword, "/dev/nst112", 11) == 0) + { +{ +return dev_storage + 219; + +} + } + else + { +{ +return NULL; + +} + } + case '0': + if (strncmp (KR_keyword, "/dev/nst102", 11) == 0) + { +{ +return dev_storage + 209; } } @@ -40900,16 +42195,16 @@ return NULL; } } case '1': - switch (KR_keyword [7]) + switch (KR_keyword [8]) { - case 'y': - switch (KR_keyword [9]) + case 'z': + switch (KR_keyword [7]) { - case '6': - if (strncmp (KR_keyword, "/dev/ttyS61", 11) == 0) + case 'c': + if (strncmp (KR_keyword, "/dev/sdcz11", 11) == 0) { { -return dev_storage + 2574; +return dev_storage + 2043; } } @@ -40920,11 +42215,11 @@ return NULL; } } - case '5': - if (strncmp (KR_keyword, "/dev/ttyS51", 11) == 0) + case 'b': + if (strncmp (KR_keyword, "/dev/sdbz11", 11) == 0) { { -return dev_storage + 2564; +return dev_storage + 1627; } } @@ -40935,11 +42230,11 @@ return NULL; } } - case '4': - if (strncmp (KR_keyword, "/dev/ttyS41", 11) == 0) + case 'a': + if (strncmp (KR_keyword, "/dev/sdaz11", 11) == 0) { { -return dev_storage + 2554; +return dev_storage + 1211; } } @@ -40950,11 +42245,20 @@ return NULL; } } - case '3': - if (strncmp (KR_keyword, "/dev/ttyS31", 11) == 0) + default: +{ +return NULL; + +} + } + case 'y': + switch (KR_keyword [7]) + { + case 'c': + if (strncmp (KR_keyword, "/dev/sdcy11", 11) == 0) { { -return dev_storage + 2544; +return dev_storage + 2028; } } @@ -40965,11 +42269,11 @@ return NULL; } } - case '2': - if (strncmp (KR_keyword, "/dev/ttyS21", 11) == 0) + case 'b': + if (strncmp (KR_keyword, "/dev/sdby11", 11) == 0) { { -return dev_storage + 2534; +return dev_storage + 1612; } } @@ -40980,11 +42284,287 @@ return NULL; } } - case '1': - if (strncmp (KR_keyword, "/dev/ttyS11", 11) == 0) + case 'a': + if (strncmp (KR_keyword, "/dev/sday11", 11) == 0) { { -return dev_storage + 2524; +return dev_storage + 1196; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'x': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddx11", 11) == 0) + { +{ +return dev_storage + 2427; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcx11", 11) == 0) + { +{ +return dev_storage + 2013; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbx11", 11) == 0) + { +{ +return dev_storage + 1597; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdax11", 11) == 0) + { +{ +return dev_storage + 1181; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'w': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddw11", 11) == 0) + { +{ +return dev_storage + 2412; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcw11", 11) == 0) + { +{ +return dev_storage + 1998; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbw11", 11) == 0) + { +{ +return dev_storage + 1582; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdaw11", 11) == 0) + { +{ +return dev_storage + 1166; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'v': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddv11", 11) == 0) + { +{ +return dev_storage + 2397; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcv11", 11) == 0) + { +{ +return dev_storage + 1983; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbv11", 11) == 0) + { +{ +return dev_storage + 1567; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdav11", 11) == 0) + { +{ +return dev_storage + 1151; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'u': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddu11", 11) == 0) + { +{ +return dev_storage + 2382; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcu11", 11) == 0) + { +{ +return dev_storage + 1968; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbu11", 11) == 0) + { +{ +return dev_storage + 1552; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdau11", 11) == 0) + { +{ +return dev_storage + 1136; } } @@ -41002,13 +42582,13 @@ return NULL; } } case 't': - switch (KR_keyword [9]) + switch (KR_keyword [7]) { - case '2': - if (strncmp (KR_keyword, "/dev/nst121", 11) == 0) + case 'd': + if (strncmp (KR_keyword, "/dev/sddt11", 11) == 0) { { -return dev_storage + 228; +return dev_storage + 2367; } } @@ -41019,11 +42599,11 @@ return NULL; } } - case '1': - if (strncmp (KR_keyword, "/dev/nst111", 11) == 0) + case 'c': + if (strncmp (KR_keyword, "/dev/sdct11", 11) == 0) { { -return dev_storage + 218; +return dev_storage + 1953; } } @@ -41034,11 +42614,26 @@ return NULL; } } - case '0': - if (strncmp (KR_keyword, "/dev/nst101", 11) == 0) + case 'b': + if (strncmp (KR_keyword, "/dev/sdbt11", 11) == 0) { { -return dev_storage + 208; +return dev_storage + 1537; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdat11", 11) == 0) + { +{ +return dev_storage + 1121; } } @@ -41055,7 +42650,7 @@ return NULL; } } - case 'n': + case 's': switch (KR_keyword [9]) { case '6': @@ -41134,11 +42729,1145 @@ return NULL; } } case '1': - if (strncmp (KR_keyword, "/dev/cons11", 11) == 0) + switch (KR_keyword [7]) { + case 'n': + if (strncmp (KR_keyword, "/dev/cons11", 11) == 0) + { { return dev_storage + 31; +} + } + else + { +{ +return NULL; + +} + } + case 'd': + if (strncmp (KR_keyword, "/dev/sdds11", 11) == 0) + { +{ +return dev_storage + 2352; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcs11", 11) == 0) + { +{ +return dev_storage + 1938; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbs11", 11) == 0) + { +{ +return dev_storage + 1522; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdas11", 11) == 0) + { +{ +return dev_storage + 1106; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'r': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddr11", 11) == 0) + { +{ +return dev_storage + 2337; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcr11", 11) == 0) + { +{ +return dev_storage + 1923; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbr11", 11) == 0) + { +{ +return dev_storage + 1507; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdar11", 11) == 0) + { +{ +return dev_storage + 1091; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'q': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddq11", 11) == 0) + { +{ +return dev_storage + 2322; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcq11", 11) == 0) + { +{ +return dev_storage + 1908; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbq11", 11) == 0) + { +{ +return dev_storage + 1492; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdaq11", 11) == 0) + { +{ +return dev_storage + 1076; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'p': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddp11", 11) == 0) + { +{ +return dev_storage + 2307; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcp11", 11) == 0) + { +{ +return dev_storage + 1893; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbp11", 11) == 0) + { +{ +return dev_storage + 1477; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdap11", 11) == 0) + { +{ +return dev_storage + 1061; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'o': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddo11", 11) == 0) + { +{ +return dev_storage + 2292; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdco11", 11) == 0) + { +{ +return dev_storage + 1878; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbo11", 11) == 0) + { +{ +return dev_storage + 1462; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdao11", 11) == 0) + { +{ +return dev_storage + 1046; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'n': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddn11", 11) == 0) + { +{ +return dev_storage + 2277; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcn11", 11) == 0) + { +{ +return dev_storage + 1863; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbn11", 11) == 0) + { +{ +return dev_storage + 1447; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdan11", 11) == 0) + { +{ +return dev_storage + 1031; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'm': + switch (KR_keyword [9]) + { + case '6': + if (strncmp (KR_keyword, "/dev/ptym61", 11) == 0) + { +{ +return dev_storage + 364; + +} + } + else + { +{ +return NULL; + +} + } + case '5': + if (strncmp (KR_keyword, "/dev/ptym51", 11) == 0) + { +{ +return dev_storage + 354; + +} + } + else + { +{ +return NULL; + +} + } + case '4': + if (strncmp (KR_keyword, "/dev/ptym41", 11) == 0) + { +{ +return dev_storage + 344; + +} + } + else + { +{ +return NULL; + +} + } + case '3': + if (strncmp (KR_keyword, "/dev/ptym31", 11) == 0) + { +{ +return dev_storage + 334; + +} + } + else + { +{ +return NULL; + +} + } + case '2': + if (strncmp (KR_keyword, "/dev/ptym21", 11) == 0) + { +{ +return dev_storage + 324; + +} + } + else + { +{ +return NULL; + +} + } + case '1': + switch (KR_keyword [7]) + { + case 'y': + if (strncmp (KR_keyword, "/dev/ptym11", 11) == 0) + { +{ +return dev_storage + 314; + +} + } + else + { +{ +return NULL; + +} + } + case 'd': + if (strncmp (KR_keyword, "/dev/sddm11", 11) == 0) + { +{ +return dev_storage + 2262; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcm11", 11) == 0) + { +{ +return dev_storage + 1848; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbm11", 11) == 0) + { +{ +return dev_storage + 1432; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdam11", 11) == 0) + { +{ +return dev_storage + 1016; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'l': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddl11", 11) == 0) + { +{ +return dev_storage + 2247; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcl11", 11) == 0) + { +{ +return dev_storage + 1833; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbl11", 11) == 0) + { +{ +return dev_storage + 1417; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdal11", 11) == 0) + { +{ +return dev_storage + 1001; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'k': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddk11", 11) == 0) + { +{ +return dev_storage + 2232; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdck11", 11) == 0) + { +{ +return dev_storage + 1818; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbk11", 11) == 0) + { +{ +return dev_storage + 1402; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdak11", 11) == 0) + { +{ +return dev_storage + 986; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'j': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddj11", 11) == 0) + { +{ +return dev_storage + 2217; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcj11", 11) == 0) + { +{ +return dev_storage + 1803; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbj11", 11) == 0) + { +{ +return dev_storage + 1387; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdaj11", 11) == 0) + { +{ +return dev_storage + 971; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'i': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddi11", 11) == 0) + { +{ +return dev_storage + 2202; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdci11", 11) == 0) + { +{ +return dev_storage + 1788; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbi11", 11) == 0) + { +{ +return dev_storage + 1372; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdai11", 11) == 0) + { +{ +return dev_storage + 956; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'h': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddh11", 11) == 0) + { +{ +return dev_storage + 2187; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdch11", 11) == 0) + { +{ +return dev_storage + 1773; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbh11", 11) == 0) + { +{ +return dev_storage + 1357; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdah11", 11) == 0) + { +{ +return dev_storage + 941; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'g': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddg11", 11) == 0) + { +{ +return dev_storage + 2172; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcg11", 11) == 0) + { +{ +return dev_storage + 1758; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbg11", 11) == 0) + { +{ +return dev_storage + 1342; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdag11", 11) == 0) + { +{ +return dev_storage + 926; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'f': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddf11", 11) == 0) + { +{ +return dev_storage + 2157; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcf11", 11) == 0) + { +{ +return dev_storage + 1743; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbf11", 11) == 0) + { +{ +return dev_storage + 1327; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdaf11", 11) == 0) + { +{ +return dev_storage + 911; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'e': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sdde11", 11) == 0) + { +{ +return dev_storage + 2142; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdce11", 11) == 0) + { +{ +return dev_storage + 1728; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbe11", 11) == 0) + { +{ +return dev_storage + 1312; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdae11", 11) == 0) + { +{ +return dev_storage + 896; + } } else @@ -41155,313 +43884,13 @@ return NULL; } } case 'd': - switch (KR_keyword [8]) + switch (KR_keyword [7]) { - case 'x': - if (strncmp (KR_keyword, "/dev/sddx11", 11) == 0) - { -{ -return dev_storage + 2299; - -} - } - else - { -{ -return NULL; - -} - } - case 'w': - if (strncmp (KR_keyword, "/dev/sddw11", 11) == 0) - { -{ -return dev_storage + 2284; - -} - } - else - { -{ -return NULL; - -} - } - case 'v': - if (strncmp (KR_keyword, "/dev/sddv11", 11) == 0) - { -{ -return dev_storage + 2269; - -} - } - else - { -{ -return NULL; - -} - } - case 'u': - if (strncmp (KR_keyword, "/dev/sddu11", 11) == 0) - { -{ -return dev_storage + 2254; - -} - } - else - { -{ -return NULL; - -} - } - case 't': - if (strncmp (KR_keyword, "/dev/sddt11", 11) == 0) - { -{ -return dev_storage + 2239; - -} - } - else - { -{ -return NULL; - -} - } - case 's': - if (strncmp (KR_keyword, "/dev/sdds11", 11) == 0) - { -{ -return dev_storage + 2224; - -} - } - else - { -{ -return NULL; - -} - } - case 'r': - if (strncmp (KR_keyword, "/dev/sddr11", 11) == 0) - { -{ -return dev_storage + 2209; - -} - } - else - { -{ -return NULL; - -} - } - case 'q': - if (strncmp (KR_keyword, "/dev/sddq11", 11) == 0) - { -{ -return dev_storage + 2194; - -} - } - else - { -{ -return NULL; - -} - } - case 'p': - if (strncmp (KR_keyword, "/dev/sddp11", 11) == 0) - { -{ -return dev_storage + 2179; - -} - } - else - { -{ -return NULL; - -} - } - case 'o': - if (strncmp (KR_keyword, "/dev/sddo11", 11) == 0) - { -{ -return dev_storage + 2164; - -} - } - else - { -{ -return NULL; - -} - } - case 'n': - if (strncmp (KR_keyword, "/dev/sddn11", 11) == 0) - { -{ -return dev_storage + 2149; - -} - } - else - { -{ -return NULL; - -} - } - case 'm': - if (strncmp (KR_keyword, "/dev/sddm11", 11) == 0) - { -{ -return dev_storage + 2134; - -} - } - else - { -{ -return NULL; - -} - } - case 'l': - if (strncmp (KR_keyword, "/dev/sddl11", 11) == 0) - { -{ -return dev_storage + 2119; - -} - } - else - { -{ -return NULL; - -} - } - case 'k': - if (strncmp (KR_keyword, "/dev/sddk11", 11) == 0) - { -{ -return dev_storage + 2104; - -} - } - else - { -{ -return NULL; - -} - } - case 'j': - if (strncmp (KR_keyword, "/dev/sddj11", 11) == 0) - { -{ -return dev_storage + 2089; - -} - } - else - { -{ -return NULL; - -} - } - case 'i': - if (strncmp (KR_keyword, "/dev/sddi11", 11) == 0) - { -{ -return dev_storage + 2074; - -} - } - else - { -{ -return NULL; - -} - } - case 'h': - if (strncmp (KR_keyword, "/dev/sddh11", 11) == 0) - { -{ -return dev_storage + 2059; - -} - } - else - { -{ -return NULL; - -} - } - case 'g': - if (strncmp (KR_keyword, "/dev/sddg11", 11) == 0) - { -{ -return dev_storage + 2044; - -} - } - else - { -{ -return NULL; - -} - } - case 'f': - if (strncmp (KR_keyword, "/dev/sddf11", 11) == 0) - { -{ -return dev_storage + 2029; - -} - } - else - { -{ -return NULL; - -} - } - case 'e': - if (strncmp (KR_keyword, "/dev/sdde11", 11) == 0) - { -{ -return dev_storage + 2014; - -} - } - else - { -{ -return NULL; - -} - } case 'd': if (strncmp (KR_keyword, "/dev/sddd11", 11) == 0) { { -return dev_storage + 1999; +return dev_storage + 2127; } } @@ -41473,10 +43902,10 @@ return NULL; } } case 'c': - if (strncmp (KR_keyword, "/dev/sddc11", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdcd11", 11) == 0) { { -return dev_storage + 1984; +return dev_storage + 1713; } } @@ -41488,10 +43917,10 @@ return NULL; } } case 'b': - if (strncmp (KR_keyword, "/dev/sddb11", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdbd11", 11) == 0) { { -return dev_storage + 1969; +return dev_storage + 1297; } } @@ -41503,10 +43932,10 @@ return NULL; } } case 'a': - if (strncmp (KR_keyword, "/dev/sdda11", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdad11", 11) == 0) { { -return dev_storage + 1954; +return dev_storage + 881; } } @@ -41524,343 +43953,13 @@ return NULL; } } case 'c': - switch (KR_keyword [8]) + switch (KR_keyword [7]) { - case 'z': - if (strncmp (KR_keyword, "/dev/sdcz11", 11) == 0) - { -{ -return dev_storage + 1915; - -} - } - else - { -{ -return NULL; - -} - } - case 'y': - if (strncmp (KR_keyword, "/dev/sdcy11", 11) == 0) - { -{ -return dev_storage + 1900; - -} - } - else - { -{ -return NULL; - -} - } - case 'x': - if (strncmp (KR_keyword, "/dev/sdcx11", 11) == 0) - { -{ -return dev_storage + 1885; - -} - } - else - { -{ -return NULL; - -} - } - case 'w': - if (strncmp (KR_keyword, "/dev/sdcw11", 11) == 0) - { -{ -return dev_storage + 1870; - -} - } - else - { -{ -return NULL; - -} - } - case 'v': - if (strncmp (KR_keyword, "/dev/sdcv11", 11) == 0) - { -{ -return dev_storage + 1855; - -} - } - else - { -{ -return NULL; - -} - } - case 'u': - if (strncmp (KR_keyword, "/dev/sdcu11", 11) == 0) - { -{ -return dev_storage + 1840; - -} - } - else - { -{ -return NULL; - -} - } - case 't': - if (strncmp (KR_keyword, "/dev/sdct11", 11) == 0) - { -{ -return dev_storage + 1825; - -} - } - else - { -{ -return NULL; - -} - } - case 's': - if (strncmp (KR_keyword, "/dev/sdcs11", 11) == 0) - { -{ -return dev_storage + 1810; - -} - } - else - { -{ -return NULL; - -} - } - case 'r': - if (strncmp (KR_keyword, "/dev/sdcr11", 11) == 0) - { -{ -return dev_storage + 1795; - -} - } - else - { -{ -return NULL; - -} - } - case 'q': - if (strncmp (KR_keyword, "/dev/sdcq11", 11) == 0) - { -{ -return dev_storage + 1780; - -} - } - else - { -{ -return NULL; - -} - } - case 'p': - if (strncmp (KR_keyword, "/dev/sdcp11", 11) == 0) - { -{ -return dev_storage + 1765; - -} - } - else - { -{ -return NULL; - -} - } - case 'o': - if (strncmp (KR_keyword, "/dev/sdco11", 11) == 0) - { -{ -return dev_storage + 1750; - -} - } - else - { -{ -return NULL; - -} - } - case 'n': - if (strncmp (KR_keyword, "/dev/sdcn11", 11) == 0) - { -{ -return dev_storage + 1735; - -} - } - else - { -{ -return NULL; - -} - } - case 'm': - if (strncmp (KR_keyword, "/dev/sdcm11", 11) == 0) - { -{ -return dev_storage + 1720; - -} - } - else - { -{ -return NULL; - -} - } - case 'l': - if (strncmp (KR_keyword, "/dev/sdcl11", 11) == 0) - { -{ -return dev_storage + 1705; - -} - } - else - { -{ -return NULL; - -} - } - case 'k': - if (strncmp (KR_keyword, "/dev/sdck11", 11) == 0) - { -{ -return dev_storage + 1690; - -} - } - else - { -{ -return NULL; - -} - } - case 'j': - if (strncmp (KR_keyword, "/dev/sdcj11", 11) == 0) - { -{ -return dev_storage + 1675; - -} - } - else - { -{ -return NULL; - -} - } - case 'i': - if (strncmp (KR_keyword, "/dev/sdci11", 11) == 0) - { -{ -return dev_storage + 1660; - -} - } - else - { -{ -return NULL; - -} - } - case 'h': - if (strncmp (KR_keyword, "/dev/sdch11", 11) == 0) - { -{ -return dev_storage + 1645; - -} - } - else - { -{ -return NULL; - -} - } - case 'g': - if (strncmp (KR_keyword, "/dev/sdcg11", 11) == 0) - { -{ -return dev_storage + 1630; - -} - } - else - { -{ -return NULL; - -} - } - case 'f': - if (strncmp (KR_keyword, "/dev/sdcf11", 11) == 0) - { -{ -return dev_storage + 1615; - -} - } - else - { -{ -return NULL; - -} - } - case 'e': - if (strncmp (KR_keyword, "/dev/sdce11", 11) == 0) - { -{ -return dev_storage + 1600; - -} - } - else - { -{ -return NULL; - -} - } case 'd': - if (strncmp (KR_keyword, "/dev/sdcd11", 11) == 0) + if (strncmp (KR_keyword, "/dev/sddc11", 11) == 0) { { -return dev_storage + 1585; +return dev_storage + 2112; } } @@ -41875,7 +43974,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc11", 11) == 0) { { -return dev_storage + 1570; +return dev_storage + 1698; } } @@ -41887,10 +43986,10 @@ return NULL; } } case 'b': - if (strncmp (KR_keyword, "/dev/sdcb11", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdbc11", 11) == 0) { { -return dev_storage + 1555; +return dev_storage + 1282; } } @@ -41902,10 +44001,10 @@ return NULL; } } case 'a': - if (strncmp (KR_keyword, "/dev/sdca11", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdac11", 11) == 0) { { -return dev_storage + 1540; +return dev_storage + 866; } } @@ -41923,343 +44022,13 @@ return NULL; } } case 'b': - switch (KR_keyword [8]) + switch (KR_keyword [7]) { - case 'z': - if (strncmp (KR_keyword, "/dev/sdbz11", 11) == 0) - { -{ -return dev_storage + 1499; - -} - } - else - { -{ -return NULL; - -} - } - case 'y': - if (strncmp (KR_keyword, "/dev/sdby11", 11) == 0) - { -{ -return dev_storage + 1484; - -} - } - else - { -{ -return NULL; - -} - } - case 'x': - if (strncmp (KR_keyword, "/dev/sdbx11", 11) == 0) - { -{ -return dev_storage + 1469; - -} - } - else - { -{ -return NULL; - -} - } - case 'w': - if (strncmp (KR_keyword, "/dev/sdbw11", 11) == 0) - { -{ -return dev_storage + 1454; - -} - } - else - { -{ -return NULL; - -} - } - case 'v': - if (strncmp (KR_keyword, "/dev/sdbv11", 11) == 0) - { -{ -return dev_storage + 1439; - -} - } - else - { -{ -return NULL; - -} - } - case 'u': - if (strncmp (KR_keyword, "/dev/sdbu11", 11) == 0) - { -{ -return dev_storage + 1424; - -} - } - else - { -{ -return NULL; - -} - } - case 't': - if (strncmp (KR_keyword, "/dev/sdbt11", 11) == 0) - { -{ -return dev_storage + 1409; - -} - } - else - { -{ -return NULL; - -} - } - case 's': - if (strncmp (KR_keyword, "/dev/sdbs11", 11) == 0) - { -{ -return dev_storage + 1394; - -} - } - else - { -{ -return NULL; - -} - } - case 'r': - if (strncmp (KR_keyword, "/dev/sdbr11", 11) == 0) - { -{ -return dev_storage + 1379; - -} - } - else - { -{ -return NULL; - -} - } - case 'q': - if (strncmp (KR_keyword, "/dev/sdbq11", 11) == 0) - { -{ -return dev_storage + 1364; - -} - } - else - { -{ -return NULL; - -} - } - case 'p': - if (strncmp (KR_keyword, "/dev/sdbp11", 11) == 0) - { -{ -return dev_storage + 1349; - -} - } - else - { -{ -return NULL; - -} - } - case 'o': - if (strncmp (KR_keyword, "/dev/sdbo11", 11) == 0) - { -{ -return dev_storage + 1334; - -} - } - else - { -{ -return NULL; - -} - } - case 'n': - if (strncmp (KR_keyword, "/dev/sdbn11", 11) == 0) - { -{ -return dev_storage + 1319; - -} - } - else - { -{ -return NULL; - -} - } - case 'm': - if (strncmp (KR_keyword, "/dev/sdbm11", 11) == 0) - { -{ -return dev_storage + 1304; - -} - } - else - { -{ -return NULL; - -} - } - case 'l': - if (strncmp (KR_keyword, "/dev/sdbl11", 11) == 0) - { -{ -return dev_storage + 1289; - -} - } - else - { -{ -return NULL; - -} - } - case 'k': - if (strncmp (KR_keyword, "/dev/sdbk11", 11) == 0) - { -{ -return dev_storage + 1274; - -} - } - else - { -{ -return NULL; - -} - } - case 'j': - if (strncmp (KR_keyword, "/dev/sdbj11", 11) == 0) - { -{ -return dev_storage + 1259; - -} - } - else - { -{ -return NULL; - -} - } - case 'i': - if (strncmp (KR_keyword, "/dev/sdbi11", 11) == 0) - { -{ -return dev_storage + 1244; - -} - } - else - { -{ -return NULL; - -} - } - case 'h': - if (strncmp (KR_keyword, "/dev/sdbh11", 11) == 0) - { -{ -return dev_storage + 1229; - -} - } - else - { -{ -return NULL; - -} - } - case 'g': - if (strncmp (KR_keyword, "/dev/sdbg11", 11) == 0) - { -{ -return dev_storage + 1214; - -} - } - else - { -{ -return NULL; - -} - } - case 'f': - if (strncmp (KR_keyword, "/dev/sdbf11", 11) == 0) - { -{ -return dev_storage + 1199; - -} - } - else - { -{ -return NULL; - -} - } - case 'e': - if (strncmp (KR_keyword, "/dev/sdbe11", 11) == 0) - { -{ -return dev_storage + 1184; - -} - } - else - { -{ -return NULL; - -} - } case 'd': - if (strncmp (KR_keyword, "/dev/sdbd11", 11) == 0) + if (strncmp (KR_keyword, "/dev/sddb11", 11) == 0) { { -return dev_storage + 1169; +return dev_storage + 2097; } } @@ -42271,10 +44040,10 @@ return NULL; } } case 'c': - if (strncmp (KR_keyword, "/dev/sdbc11", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdcb11", 11) == 0) { { -return dev_storage + 1154; +return dev_storage + 1683; } } @@ -42289,7 +44058,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb11", 11) == 0) { { -return dev_storage + 1139; +return dev_storage + 1267; } } @@ -42301,10 +44070,10 @@ return NULL; } } case 'a': - if (strncmp (KR_keyword, "/dev/sdba11", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdab11", 11) == 0) { { -return dev_storage + 1124; +return dev_storage + 851; } } @@ -42322,343 +44091,13 @@ return NULL; } } case 'a': - switch (KR_keyword [8]) + switch (KR_keyword [7]) { - case 'z': - if (strncmp (KR_keyword, "/dev/sdaz11", 11) == 0) - { -{ -return dev_storage + 1083; - -} - } - else - { -{ -return NULL; - -} - } - case 'y': - if (strncmp (KR_keyword, "/dev/sday11", 11) == 0) - { -{ -return dev_storage + 1068; - -} - } - else - { -{ -return NULL; - -} - } - case 'x': - if (strncmp (KR_keyword, "/dev/sdax11", 11) == 0) - { -{ -return dev_storage + 1053; - -} - } - else - { -{ -return NULL; - -} - } - case 'w': - if (strncmp (KR_keyword, "/dev/sdaw11", 11) == 0) - { -{ -return dev_storage + 1038; - -} - } - else - { -{ -return NULL; - -} - } - case 'v': - if (strncmp (KR_keyword, "/dev/sdav11", 11) == 0) - { -{ -return dev_storage + 1023; - -} - } - else - { -{ -return NULL; - -} - } - case 'u': - if (strncmp (KR_keyword, "/dev/sdau11", 11) == 0) - { -{ -return dev_storage + 1008; - -} - } - else - { -{ -return NULL; - -} - } - case 't': - if (strncmp (KR_keyword, "/dev/sdat11", 11) == 0) - { -{ -return dev_storage + 993; - -} - } - else - { -{ -return NULL; - -} - } - case 's': - if (strncmp (KR_keyword, "/dev/sdas11", 11) == 0) - { -{ -return dev_storage + 978; - -} - } - else - { -{ -return NULL; - -} - } - case 'r': - if (strncmp (KR_keyword, "/dev/sdar11", 11) == 0) - { -{ -return dev_storage + 963; - -} - } - else - { -{ -return NULL; - -} - } - case 'q': - if (strncmp (KR_keyword, "/dev/sdaq11", 11) == 0) - { -{ -return dev_storage + 948; - -} - } - else - { -{ -return NULL; - -} - } - case 'p': - if (strncmp (KR_keyword, "/dev/sdap11", 11) == 0) - { -{ -return dev_storage + 933; - -} - } - else - { -{ -return NULL; - -} - } - case 'o': - if (strncmp (KR_keyword, "/dev/sdao11", 11) == 0) - { -{ -return dev_storage + 918; - -} - } - else - { -{ -return NULL; - -} - } - case 'n': - if (strncmp (KR_keyword, "/dev/sdan11", 11) == 0) - { -{ -return dev_storage + 903; - -} - } - else - { -{ -return NULL; - -} - } - case 'm': - if (strncmp (KR_keyword, "/dev/sdam11", 11) == 0) - { -{ -return dev_storage + 888; - -} - } - else - { -{ -return NULL; - -} - } - case 'l': - if (strncmp (KR_keyword, "/dev/sdal11", 11) == 0) - { -{ -return dev_storage + 873; - -} - } - else - { -{ -return NULL; - -} - } - case 'k': - if (strncmp (KR_keyword, "/dev/sdak11", 11) == 0) - { -{ -return dev_storage + 858; - -} - } - else - { -{ -return NULL; - -} - } - case 'j': - if (strncmp (KR_keyword, "/dev/sdaj11", 11) == 0) - { -{ -return dev_storage + 843; - -} - } - else - { -{ -return NULL; - -} - } - case 'i': - if (strncmp (KR_keyword, "/dev/sdai11", 11) == 0) - { -{ -return dev_storage + 828; - -} - } - else - { -{ -return NULL; - -} - } - case 'h': - if (strncmp (KR_keyword, "/dev/sdah11", 11) == 0) - { -{ -return dev_storage + 813; - -} - } - else - { -{ -return NULL; - -} - } - case 'g': - if (strncmp (KR_keyword, "/dev/sdag11", 11) == 0) - { -{ -return dev_storage + 798; - -} - } - else - { -{ -return NULL; - -} - } - case 'f': - if (strncmp (KR_keyword, "/dev/sdaf11", 11) == 0) - { -{ -return dev_storage + 783; - -} - } - else - { -{ -return NULL; - -} - } - case 'e': - if (strncmp (KR_keyword, "/dev/sdae11", 11) == 0) - { -{ -return dev_storage + 768; - -} - } - else - { -{ -return NULL; - -} - } case 'd': - if (strncmp (KR_keyword, "/dev/sdad11", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdda11", 11) == 0) { { -return dev_storage + 753; +return dev_storage + 2082; } } @@ -42670,10 +44109,10 @@ return NULL; } } case 'c': - if (strncmp (KR_keyword, "/dev/sdac11", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdca11", 11) == 0) { { -return dev_storage + 738; +return dev_storage + 1668; } } @@ -42685,10 +44124,10 @@ return NULL; } } case 'b': - if (strncmp (KR_keyword, "/dev/sdab11", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdba11", 11) == 0) { { -return dev_storage + 723; +return dev_storage + 1252; } } @@ -42703,7 +44142,160 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa11", 11) == 0) { { -return dev_storage + 708; +return dev_storage + 836; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'S': + switch (KR_keyword [9]) + { + case '6': + if (strncmp (KR_keyword, "/dev/ttyS61", 11) == 0) + { +{ +return dev_storage + 2638; + +} + } + else + { +{ +return NULL; + +} + } + case '5': + if (strncmp (KR_keyword, "/dev/ttyS51", 11) == 0) + { +{ +return dev_storage + 2628; + +} + } + else + { +{ +return NULL; + +} + } + case '4': + if (strncmp (KR_keyword, "/dev/ttyS41", 11) == 0) + { +{ +return dev_storage + 2618; + +} + } + else + { +{ +return NULL; + +} + } + case '3': + if (strncmp (KR_keyword, "/dev/ttyS31", 11) == 0) + { +{ +return dev_storage + 2608; + +} + } + else + { +{ +return NULL; + +} + } + case '2': + if (strncmp (KR_keyword, "/dev/ttyS21", 11) == 0) + { +{ +return dev_storage + 2598; + +} + } + else + { +{ +return NULL; + +} + } + case '1': + if (strncmp (KR_keyword, "/dev/ttyS11", 11) == 0) + { +{ +return dev_storage + 2588; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case '1': + switch (KR_keyword [9]) + { + case '2': + if (strncmp (KR_keyword, "/dev/nst121", 11) == 0) + { +{ +return dev_storage + 228; + +} + } + else + { +{ +return NULL; + +} + } + case '1': + if (strncmp (KR_keyword, "/dev/nst111", 11) == 0) + { +{ +return dev_storage + 218; + +} + } + else + { +{ +return NULL; + +} + } + case '0': + if (strncmp (KR_keyword, "/dev/nst101", 11) == 0) + { +{ +return dev_storage + 208; } } @@ -42727,16 +44319,16 @@ return NULL; } } case '0': - switch (KR_keyword [7]) + switch (KR_keyword [8]) { - case 'y': - switch (KR_keyword [9]) + case 'z': + switch (KR_keyword [7]) { - case '6': - if (strncmp (KR_keyword, "/dev/ttyS60", 11) == 0) + case 'c': + if (strncmp (KR_keyword, "/dev/sdcz10", 11) == 0) { { -return dev_storage + 2573; +return dev_storage + 2042; } } @@ -42747,11 +44339,11 @@ return NULL; } } - case '5': - if (strncmp (KR_keyword, "/dev/ttyS50", 11) == 0) + case 'b': + if (strncmp (KR_keyword, "/dev/sdbz10", 11) == 0) { { -return dev_storage + 2563; +return dev_storage + 1626; } } @@ -42762,11 +44354,11 @@ return NULL; } } - case '4': - if (strncmp (KR_keyword, "/dev/ttyS40", 11) == 0) + case 'a': + if (strncmp (KR_keyword, "/dev/sdaz10", 11) == 0) { { -return dev_storage + 2553; +return dev_storage + 1210; } } @@ -42777,11 +44369,20 @@ return NULL; } } - case '3': - if (strncmp (KR_keyword, "/dev/ttyS30", 11) == 0) + default: +{ +return NULL; + +} + } + case 'y': + switch (KR_keyword [7]) + { + case 'c': + if (strncmp (KR_keyword, "/dev/sdcy10", 11) == 0) { { -return dev_storage + 2543; +return dev_storage + 2027; } } @@ -42792,11 +44393,11 @@ return NULL; } } - case '2': - if (strncmp (KR_keyword, "/dev/ttyS20", 11) == 0) + case 'b': + if (strncmp (KR_keyword, "/dev/sdby10", 11) == 0) { { -return dev_storage + 2533; +return dev_storage + 1611; } } @@ -42807,11 +44408,287 @@ return NULL; } } - case '1': - if (strncmp (KR_keyword, "/dev/ttyS10", 11) == 0) + case 'a': + if (strncmp (KR_keyword, "/dev/sday10", 11) == 0) { { -return dev_storage + 2523; +return dev_storage + 1195; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'x': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddx10", 11) == 0) + { +{ +return dev_storage + 2426; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcx10", 11) == 0) + { +{ +return dev_storage + 2012; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbx10", 11) == 0) + { +{ +return dev_storage + 1596; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdax10", 11) == 0) + { +{ +return dev_storage + 1180; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'w': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddw10", 11) == 0) + { +{ +return dev_storage + 2411; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcw10", 11) == 0) + { +{ +return dev_storage + 1997; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbw10", 11) == 0) + { +{ +return dev_storage + 1581; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdaw10", 11) == 0) + { +{ +return dev_storage + 1165; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'v': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddv10", 11) == 0) + { +{ +return dev_storage + 2396; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcv10", 11) == 0) + { +{ +return dev_storage + 1982; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbv10", 11) == 0) + { +{ +return dev_storage + 1566; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdav10", 11) == 0) + { +{ +return dev_storage + 1150; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'u': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddu10", 11) == 0) + { +{ +return dev_storage + 2381; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcu10", 11) == 0) + { +{ +return dev_storage + 1967; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbu10", 11) == 0) + { +{ +return dev_storage + 1551; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdau10", 11) == 0) + { +{ +return dev_storage + 1135; } } @@ -42829,13 +44706,13 @@ return NULL; } } case 't': - switch (KR_keyword [9]) + switch (KR_keyword [7]) { - case '2': - if (strncmp (KR_keyword, "/dev/nst120", 11) == 0) + case 'd': + if (strncmp (KR_keyword, "/dev/sddt10", 11) == 0) { { -return dev_storage + 227; +return dev_storage + 2366; } } @@ -42846,11 +44723,11 @@ return NULL; } } - case '1': - if (strncmp (KR_keyword, "/dev/nst110", 11) == 0) + case 'c': + if (strncmp (KR_keyword, "/dev/sdct10", 11) == 0) { { -return dev_storage + 217; +return dev_storage + 1952; } } @@ -42861,11 +44738,26 @@ return NULL; } } - case '0': - if (strncmp (KR_keyword, "/dev/nst100", 11) == 0) + case 'b': + if (strncmp (KR_keyword, "/dev/sdbt10", 11) == 0) { { -return dev_storage + 207; +return dev_storage + 1536; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdat10", 11) == 0) + { +{ +return dev_storage + 1120; } } @@ -42882,7 +44774,7 @@ return NULL; } } - case 'n': + case 's': switch (KR_keyword [9]) { case '6': @@ -42961,11 +44853,1145 @@ return NULL; } } case '1': - if (strncmp (KR_keyword, "/dev/cons10", 11) == 0) + switch (KR_keyword [7]) { + case 'n': + if (strncmp (KR_keyword, "/dev/cons10", 11) == 0) + { { return dev_storage + 30; +} + } + else + { +{ +return NULL; + +} + } + case 'd': + if (strncmp (KR_keyword, "/dev/sdds10", 11) == 0) + { +{ +return dev_storage + 2351; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcs10", 11) == 0) + { +{ +return dev_storage + 1937; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbs10", 11) == 0) + { +{ +return dev_storage + 1521; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdas10", 11) == 0) + { +{ +return dev_storage + 1105; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'r': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddr10", 11) == 0) + { +{ +return dev_storage + 2336; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcr10", 11) == 0) + { +{ +return dev_storage + 1922; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbr10", 11) == 0) + { +{ +return dev_storage + 1506; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdar10", 11) == 0) + { +{ +return dev_storage + 1090; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'q': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddq10", 11) == 0) + { +{ +return dev_storage + 2321; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcq10", 11) == 0) + { +{ +return dev_storage + 1907; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbq10", 11) == 0) + { +{ +return dev_storage + 1491; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdaq10", 11) == 0) + { +{ +return dev_storage + 1075; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'p': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddp10", 11) == 0) + { +{ +return dev_storage + 2306; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcp10", 11) == 0) + { +{ +return dev_storage + 1892; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbp10", 11) == 0) + { +{ +return dev_storage + 1476; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdap10", 11) == 0) + { +{ +return dev_storage + 1060; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'o': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddo10", 11) == 0) + { +{ +return dev_storage + 2291; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdco10", 11) == 0) + { +{ +return dev_storage + 1877; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbo10", 11) == 0) + { +{ +return dev_storage + 1461; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdao10", 11) == 0) + { +{ +return dev_storage + 1045; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'n': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddn10", 11) == 0) + { +{ +return dev_storage + 2276; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcn10", 11) == 0) + { +{ +return dev_storage + 1862; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbn10", 11) == 0) + { +{ +return dev_storage + 1446; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdan10", 11) == 0) + { +{ +return dev_storage + 1030; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'm': + switch (KR_keyword [9]) + { + case '6': + if (strncmp (KR_keyword, "/dev/ptym60", 11) == 0) + { +{ +return dev_storage + 363; + +} + } + else + { +{ +return NULL; + +} + } + case '5': + if (strncmp (KR_keyword, "/dev/ptym50", 11) == 0) + { +{ +return dev_storage + 353; + +} + } + else + { +{ +return NULL; + +} + } + case '4': + if (strncmp (KR_keyword, "/dev/ptym40", 11) == 0) + { +{ +return dev_storage + 343; + +} + } + else + { +{ +return NULL; + +} + } + case '3': + if (strncmp (KR_keyword, "/dev/ptym30", 11) == 0) + { +{ +return dev_storage + 333; + +} + } + else + { +{ +return NULL; + +} + } + case '2': + if (strncmp (KR_keyword, "/dev/ptym20", 11) == 0) + { +{ +return dev_storage + 323; + +} + } + else + { +{ +return NULL; + +} + } + case '1': + switch (KR_keyword [7]) + { + case 'y': + if (strncmp (KR_keyword, "/dev/ptym10", 11) == 0) + { +{ +return dev_storage + 313; + +} + } + else + { +{ +return NULL; + +} + } + case 'd': + if (strncmp (KR_keyword, "/dev/sddm10", 11) == 0) + { +{ +return dev_storage + 2261; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcm10", 11) == 0) + { +{ +return dev_storage + 1847; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbm10", 11) == 0) + { +{ +return dev_storage + 1431; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdam10", 11) == 0) + { +{ +return dev_storage + 1015; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'l': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddl10", 11) == 0) + { +{ +return dev_storage + 2246; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcl10", 11) == 0) + { +{ +return dev_storage + 1832; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbl10", 11) == 0) + { +{ +return dev_storage + 1416; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdal10", 11) == 0) + { +{ +return dev_storage + 1000; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'k': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddk10", 11) == 0) + { +{ +return dev_storage + 2231; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdck10", 11) == 0) + { +{ +return dev_storage + 1817; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbk10", 11) == 0) + { +{ +return dev_storage + 1401; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdak10", 11) == 0) + { +{ +return dev_storage + 985; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'j': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddj10", 11) == 0) + { +{ +return dev_storage + 2216; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcj10", 11) == 0) + { +{ +return dev_storage + 1802; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbj10", 11) == 0) + { +{ +return dev_storage + 1386; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdaj10", 11) == 0) + { +{ +return dev_storage + 970; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'i': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddi10", 11) == 0) + { +{ +return dev_storage + 2201; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdci10", 11) == 0) + { +{ +return dev_storage + 1787; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbi10", 11) == 0) + { +{ +return dev_storage + 1371; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdai10", 11) == 0) + { +{ +return dev_storage + 955; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'h': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddh10", 11) == 0) + { +{ +return dev_storage + 2186; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdch10", 11) == 0) + { +{ +return dev_storage + 1772; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbh10", 11) == 0) + { +{ +return dev_storage + 1356; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdah10", 11) == 0) + { +{ +return dev_storage + 940; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'g': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddg10", 11) == 0) + { +{ +return dev_storage + 2171; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcg10", 11) == 0) + { +{ +return dev_storage + 1757; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbg10", 11) == 0) + { +{ +return dev_storage + 1341; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdag10", 11) == 0) + { +{ +return dev_storage + 925; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'f': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sddf10", 11) == 0) + { +{ +return dev_storage + 2156; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdcf10", 11) == 0) + { +{ +return dev_storage + 1742; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbf10", 11) == 0) + { +{ +return dev_storage + 1326; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdaf10", 11) == 0) + { +{ +return dev_storage + 910; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'e': + switch (KR_keyword [7]) + { + case 'd': + if (strncmp (KR_keyword, "/dev/sdde10", 11) == 0) + { +{ +return dev_storage + 2141; + +} + } + else + { +{ +return NULL; + +} + } + case 'c': + if (strncmp (KR_keyword, "/dev/sdce10", 11) == 0) + { +{ +return dev_storage + 1727; + +} + } + else + { +{ +return NULL; + +} + } + case 'b': + if (strncmp (KR_keyword, "/dev/sdbe10", 11) == 0) + { +{ +return dev_storage + 1311; + +} + } + else + { +{ +return NULL; + +} + } + case 'a': + if (strncmp (KR_keyword, "/dev/sdae10", 11) == 0) + { +{ +return dev_storage + 895; + } } else @@ -42982,313 +46008,13 @@ return NULL; } } case 'd': - switch (KR_keyword [8]) + switch (KR_keyword [7]) { - case 'x': - if (strncmp (KR_keyword, "/dev/sddx10", 11) == 0) - { -{ -return dev_storage + 2298; - -} - } - else - { -{ -return NULL; - -} - } - case 'w': - if (strncmp (KR_keyword, "/dev/sddw10", 11) == 0) - { -{ -return dev_storage + 2283; - -} - } - else - { -{ -return NULL; - -} - } - case 'v': - if (strncmp (KR_keyword, "/dev/sddv10", 11) == 0) - { -{ -return dev_storage + 2268; - -} - } - else - { -{ -return NULL; - -} - } - case 'u': - if (strncmp (KR_keyword, "/dev/sddu10", 11) == 0) - { -{ -return dev_storage + 2253; - -} - } - else - { -{ -return NULL; - -} - } - case 't': - if (strncmp (KR_keyword, "/dev/sddt10", 11) == 0) - { -{ -return dev_storage + 2238; - -} - } - else - { -{ -return NULL; - -} - } - case 's': - if (strncmp (KR_keyword, "/dev/sdds10", 11) == 0) - { -{ -return dev_storage + 2223; - -} - } - else - { -{ -return NULL; - -} - } - case 'r': - if (strncmp (KR_keyword, "/dev/sddr10", 11) == 0) - { -{ -return dev_storage + 2208; - -} - } - else - { -{ -return NULL; - -} - } - case 'q': - if (strncmp (KR_keyword, "/dev/sddq10", 11) == 0) - { -{ -return dev_storage + 2193; - -} - } - else - { -{ -return NULL; - -} - } - case 'p': - if (strncmp (KR_keyword, "/dev/sddp10", 11) == 0) - { -{ -return dev_storage + 2178; - -} - } - else - { -{ -return NULL; - -} - } - case 'o': - if (strncmp (KR_keyword, "/dev/sddo10", 11) == 0) - { -{ -return dev_storage + 2163; - -} - } - else - { -{ -return NULL; - -} - } - case 'n': - if (strncmp (KR_keyword, "/dev/sddn10", 11) == 0) - { -{ -return dev_storage + 2148; - -} - } - else - { -{ -return NULL; - -} - } - case 'm': - if (strncmp (KR_keyword, "/dev/sddm10", 11) == 0) - { -{ -return dev_storage + 2133; - -} - } - else - { -{ -return NULL; - -} - } - case 'l': - if (strncmp (KR_keyword, "/dev/sddl10", 11) == 0) - { -{ -return dev_storage + 2118; - -} - } - else - { -{ -return NULL; - -} - } - case 'k': - if (strncmp (KR_keyword, "/dev/sddk10", 11) == 0) - { -{ -return dev_storage + 2103; - -} - } - else - { -{ -return NULL; - -} - } - case 'j': - if (strncmp (KR_keyword, "/dev/sddj10", 11) == 0) - { -{ -return dev_storage + 2088; - -} - } - else - { -{ -return NULL; - -} - } - case 'i': - if (strncmp (KR_keyword, "/dev/sddi10", 11) == 0) - { -{ -return dev_storage + 2073; - -} - } - else - { -{ -return NULL; - -} - } - case 'h': - if (strncmp (KR_keyword, "/dev/sddh10", 11) == 0) - { -{ -return dev_storage + 2058; - -} - } - else - { -{ -return NULL; - -} - } - case 'g': - if (strncmp (KR_keyword, "/dev/sddg10", 11) == 0) - { -{ -return dev_storage + 2043; - -} - } - else - { -{ -return NULL; - -} - } - case 'f': - if (strncmp (KR_keyword, "/dev/sddf10", 11) == 0) - { -{ -return dev_storage + 2028; - -} - } - else - { -{ -return NULL; - -} - } - case 'e': - if (strncmp (KR_keyword, "/dev/sdde10", 11) == 0) - { -{ -return dev_storage + 2013; - -} - } - else - { -{ -return NULL; - -} - } case 'd': if (strncmp (KR_keyword, "/dev/sddd10", 11) == 0) { { -return dev_storage + 1998; +return dev_storage + 2126; } } @@ -43300,10 +46026,10 @@ return NULL; } } case 'c': - if (strncmp (KR_keyword, "/dev/sddc10", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdcd10", 11) == 0) { { -return dev_storage + 1983; +return dev_storage + 1712; } } @@ -43315,10 +46041,10 @@ return NULL; } } case 'b': - if (strncmp (KR_keyword, "/dev/sddb10", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdbd10", 11) == 0) { { -return dev_storage + 1968; +return dev_storage + 1296; } } @@ -43330,10 +46056,10 @@ return NULL; } } case 'a': - if (strncmp (KR_keyword, "/dev/sdda10", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdad10", 11) == 0) { { -return dev_storage + 1953; +return dev_storage + 880; } } @@ -43351,343 +46077,13 @@ return NULL; } } case 'c': - switch (KR_keyword [8]) + switch (KR_keyword [7]) { - case 'z': - if (strncmp (KR_keyword, "/dev/sdcz10", 11) == 0) - { -{ -return dev_storage + 1914; - -} - } - else - { -{ -return NULL; - -} - } - case 'y': - if (strncmp (KR_keyword, "/dev/sdcy10", 11) == 0) - { -{ -return dev_storage + 1899; - -} - } - else - { -{ -return NULL; - -} - } - case 'x': - if (strncmp (KR_keyword, "/dev/sdcx10", 11) == 0) - { -{ -return dev_storage + 1884; - -} - } - else - { -{ -return NULL; - -} - } - case 'w': - if (strncmp (KR_keyword, "/dev/sdcw10", 11) == 0) - { -{ -return dev_storage + 1869; - -} - } - else - { -{ -return NULL; - -} - } - case 'v': - if (strncmp (KR_keyword, "/dev/sdcv10", 11) == 0) - { -{ -return dev_storage + 1854; - -} - } - else - { -{ -return NULL; - -} - } - case 'u': - if (strncmp (KR_keyword, "/dev/sdcu10", 11) == 0) - { -{ -return dev_storage + 1839; - -} - } - else - { -{ -return NULL; - -} - } - case 't': - if (strncmp (KR_keyword, "/dev/sdct10", 11) == 0) - { -{ -return dev_storage + 1824; - -} - } - else - { -{ -return NULL; - -} - } - case 's': - if (strncmp (KR_keyword, "/dev/sdcs10", 11) == 0) - { -{ -return dev_storage + 1809; - -} - } - else - { -{ -return NULL; - -} - } - case 'r': - if (strncmp (KR_keyword, "/dev/sdcr10", 11) == 0) - { -{ -return dev_storage + 1794; - -} - } - else - { -{ -return NULL; - -} - } - case 'q': - if (strncmp (KR_keyword, "/dev/sdcq10", 11) == 0) - { -{ -return dev_storage + 1779; - -} - } - else - { -{ -return NULL; - -} - } - case 'p': - if (strncmp (KR_keyword, "/dev/sdcp10", 11) == 0) - { -{ -return dev_storage + 1764; - -} - } - else - { -{ -return NULL; - -} - } - case 'o': - if (strncmp (KR_keyword, "/dev/sdco10", 11) == 0) - { -{ -return dev_storage + 1749; - -} - } - else - { -{ -return NULL; - -} - } - case 'n': - if (strncmp (KR_keyword, "/dev/sdcn10", 11) == 0) - { -{ -return dev_storage + 1734; - -} - } - else - { -{ -return NULL; - -} - } - case 'm': - if (strncmp (KR_keyword, "/dev/sdcm10", 11) == 0) - { -{ -return dev_storage + 1719; - -} - } - else - { -{ -return NULL; - -} - } - case 'l': - if (strncmp (KR_keyword, "/dev/sdcl10", 11) == 0) - { -{ -return dev_storage + 1704; - -} - } - else - { -{ -return NULL; - -} - } - case 'k': - if (strncmp (KR_keyword, "/dev/sdck10", 11) == 0) - { -{ -return dev_storage + 1689; - -} - } - else - { -{ -return NULL; - -} - } - case 'j': - if (strncmp (KR_keyword, "/dev/sdcj10", 11) == 0) - { -{ -return dev_storage + 1674; - -} - } - else - { -{ -return NULL; - -} - } - case 'i': - if (strncmp (KR_keyword, "/dev/sdci10", 11) == 0) - { -{ -return dev_storage + 1659; - -} - } - else - { -{ -return NULL; - -} - } - case 'h': - if (strncmp (KR_keyword, "/dev/sdch10", 11) == 0) - { -{ -return dev_storage + 1644; - -} - } - else - { -{ -return NULL; - -} - } - case 'g': - if (strncmp (KR_keyword, "/dev/sdcg10", 11) == 0) - { -{ -return dev_storage + 1629; - -} - } - else - { -{ -return NULL; - -} - } - case 'f': - if (strncmp (KR_keyword, "/dev/sdcf10", 11) == 0) - { -{ -return dev_storage + 1614; - -} - } - else - { -{ -return NULL; - -} - } - case 'e': - if (strncmp (KR_keyword, "/dev/sdce10", 11) == 0) - { -{ -return dev_storage + 1599; - -} - } - else - { -{ -return NULL; - -} - } case 'd': - if (strncmp (KR_keyword, "/dev/sdcd10", 11) == 0) + if (strncmp (KR_keyword, "/dev/sddc10", 11) == 0) { { -return dev_storage + 1584; +return dev_storage + 2111; } } @@ -43702,7 +46098,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc10", 11) == 0) { { -return dev_storage + 1569; +return dev_storage + 1697; } } @@ -43714,10 +46110,10 @@ return NULL; } } case 'b': - if (strncmp (KR_keyword, "/dev/sdcb10", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdbc10", 11) == 0) { { -return dev_storage + 1554; +return dev_storage + 1281; } } @@ -43729,10 +46125,10 @@ return NULL; } } case 'a': - if (strncmp (KR_keyword, "/dev/sdca10", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdac10", 11) == 0) { { -return dev_storage + 1539; +return dev_storage + 865; } } @@ -43750,343 +46146,13 @@ return NULL; } } case 'b': - switch (KR_keyword [8]) + switch (KR_keyword [7]) { - case 'z': - if (strncmp (KR_keyword, "/dev/sdbz10", 11) == 0) - { -{ -return dev_storage + 1498; - -} - } - else - { -{ -return NULL; - -} - } - case 'y': - if (strncmp (KR_keyword, "/dev/sdby10", 11) == 0) - { -{ -return dev_storage + 1483; - -} - } - else - { -{ -return NULL; - -} - } - case 'x': - if (strncmp (KR_keyword, "/dev/sdbx10", 11) == 0) - { -{ -return dev_storage + 1468; - -} - } - else - { -{ -return NULL; - -} - } - case 'w': - if (strncmp (KR_keyword, "/dev/sdbw10", 11) == 0) - { -{ -return dev_storage + 1453; - -} - } - else - { -{ -return NULL; - -} - } - case 'v': - if (strncmp (KR_keyword, "/dev/sdbv10", 11) == 0) - { -{ -return dev_storage + 1438; - -} - } - else - { -{ -return NULL; - -} - } - case 'u': - if (strncmp (KR_keyword, "/dev/sdbu10", 11) == 0) - { -{ -return dev_storage + 1423; - -} - } - else - { -{ -return NULL; - -} - } - case 't': - if (strncmp (KR_keyword, "/dev/sdbt10", 11) == 0) - { -{ -return dev_storage + 1408; - -} - } - else - { -{ -return NULL; - -} - } - case 's': - if (strncmp (KR_keyword, "/dev/sdbs10", 11) == 0) - { -{ -return dev_storage + 1393; - -} - } - else - { -{ -return NULL; - -} - } - case 'r': - if (strncmp (KR_keyword, "/dev/sdbr10", 11) == 0) - { -{ -return dev_storage + 1378; - -} - } - else - { -{ -return NULL; - -} - } - case 'q': - if (strncmp (KR_keyword, "/dev/sdbq10", 11) == 0) - { -{ -return dev_storage + 1363; - -} - } - else - { -{ -return NULL; - -} - } - case 'p': - if (strncmp (KR_keyword, "/dev/sdbp10", 11) == 0) - { -{ -return dev_storage + 1348; - -} - } - else - { -{ -return NULL; - -} - } - case 'o': - if (strncmp (KR_keyword, "/dev/sdbo10", 11) == 0) - { -{ -return dev_storage + 1333; - -} - } - else - { -{ -return NULL; - -} - } - case 'n': - if (strncmp (KR_keyword, "/dev/sdbn10", 11) == 0) - { -{ -return dev_storage + 1318; - -} - } - else - { -{ -return NULL; - -} - } - case 'm': - if (strncmp (KR_keyword, "/dev/sdbm10", 11) == 0) - { -{ -return dev_storage + 1303; - -} - } - else - { -{ -return NULL; - -} - } - case 'l': - if (strncmp (KR_keyword, "/dev/sdbl10", 11) == 0) - { -{ -return dev_storage + 1288; - -} - } - else - { -{ -return NULL; - -} - } - case 'k': - if (strncmp (KR_keyword, "/dev/sdbk10", 11) == 0) - { -{ -return dev_storage + 1273; - -} - } - else - { -{ -return NULL; - -} - } - case 'j': - if (strncmp (KR_keyword, "/dev/sdbj10", 11) == 0) - { -{ -return dev_storage + 1258; - -} - } - else - { -{ -return NULL; - -} - } - case 'i': - if (strncmp (KR_keyword, "/dev/sdbi10", 11) == 0) - { -{ -return dev_storage + 1243; - -} - } - else - { -{ -return NULL; - -} - } - case 'h': - if (strncmp (KR_keyword, "/dev/sdbh10", 11) == 0) - { -{ -return dev_storage + 1228; - -} - } - else - { -{ -return NULL; - -} - } - case 'g': - if (strncmp (KR_keyword, "/dev/sdbg10", 11) == 0) - { -{ -return dev_storage + 1213; - -} - } - else - { -{ -return NULL; - -} - } - case 'f': - if (strncmp (KR_keyword, "/dev/sdbf10", 11) == 0) - { -{ -return dev_storage + 1198; - -} - } - else - { -{ -return NULL; - -} - } - case 'e': - if (strncmp (KR_keyword, "/dev/sdbe10", 11) == 0) - { -{ -return dev_storage + 1183; - -} - } - else - { -{ -return NULL; - -} - } case 'd': - if (strncmp (KR_keyword, "/dev/sdbd10", 11) == 0) + if (strncmp (KR_keyword, "/dev/sddb10", 11) == 0) { { -return dev_storage + 1168; +return dev_storage + 2096; } } @@ -44098,10 +46164,10 @@ return NULL; } } case 'c': - if (strncmp (KR_keyword, "/dev/sdbc10", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdcb10", 11) == 0) { { -return dev_storage + 1153; +return dev_storage + 1682; } } @@ -44116,7 +46182,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb10", 11) == 0) { { -return dev_storage + 1138; +return dev_storage + 1266; } } @@ -44128,10 +46194,10 @@ return NULL; } } case 'a': - if (strncmp (KR_keyword, "/dev/sdba10", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdab10", 11) == 0) { { -return dev_storage + 1123; +return dev_storage + 850; } } @@ -44149,343 +46215,13 @@ return NULL; } } case 'a': - switch (KR_keyword [8]) + switch (KR_keyword [7]) { - case 'z': - if (strncmp (KR_keyword, "/dev/sdaz10", 11) == 0) - { -{ -return dev_storage + 1082; - -} - } - else - { -{ -return NULL; - -} - } - case 'y': - if (strncmp (KR_keyword, "/dev/sday10", 11) == 0) - { -{ -return dev_storage + 1067; - -} - } - else - { -{ -return NULL; - -} - } - case 'x': - if (strncmp (KR_keyword, "/dev/sdax10", 11) == 0) - { -{ -return dev_storage + 1052; - -} - } - else - { -{ -return NULL; - -} - } - case 'w': - if (strncmp (KR_keyword, "/dev/sdaw10", 11) == 0) - { -{ -return dev_storage + 1037; - -} - } - else - { -{ -return NULL; - -} - } - case 'v': - if (strncmp (KR_keyword, "/dev/sdav10", 11) == 0) - { -{ -return dev_storage + 1022; - -} - } - else - { -{ -return NULL; - -} - } - case 'u': - if (strncmp (KR_keyword, "/dev/sdau10", 11) == 0) - { -{ -return dev_storage + 1007; - -} - } - else - { -{ -return NULL; - -} - } - case 't': - if (strncmp (KR_keyword, "/dev/sdat10", 11) == 0) - { -{ -return dev_storage + 992; - -} - } - else - { -{ -return NULL; - -} - } - case 's': - if (strncmp (KR_keyword, "/dev/sdas10", 11) == 0) - { -{ -return dev_storage + 977; - -} - } - else - { -{ -return NULL; - -} - } - case 'r': - if (strncmp (KR_keyword, "/dev/sdar10", 11) == 0) - { -{ -return dev_storage + 962; - -} - } - else - { -{ -return NULL; - -} - } - case 'q': - if (strncmp (KR_keyword, "/dev/sdaq10", 11) == 0) - { -{ -return dev_storage + 947; - -} - } - else - { -{ -return NULL; - -} - } - case 'p': - if (strncmp (KR_keyword, "/dev/sdap10", 11) == 0) - { -{ -return dev_storage + 932; - -} - } - else - { -{ -return NULL; - -} - } - case 'o': - if (strncmp (KR_keyword, "/dev/sdao10", 11) == 0) - { -{ -return dev_storage + 917; - -} - } - else - { -{ -return NULL; - -} - } - case 'n': - if (strncmp (KR_keyword, "/dev/sdan10", 11) == 0) - { -{ -return dev_storage + 902; - -} - } - else - { -{ -return NULL; - -} - } - case 'm': - if (strncmp (KR_keyword, "/dev/sdam10", 11) == 0) - { -{ -return dev_storage + 887; - -} - } - else - { -{ -return NULL; - -} - } - case 'l': - if (strncmp (KR_keyword, "/dev/sdal10", 11) == 0) - { -{ -return dev_storage + 872; - -} - } - else - { -{ -return NULL; - -} - } - case 'k': - if (strncmp (KR_keyword, "/dev/sdak10", 11) == 0) - { -{ -return dev_storage + 857; - -} - } - else - { -{ -return NULL; - -} - } - case 'j': - if (strncmp (KR_keyword, "/dev/sdaj10", 11) == 0) - { -{ -return dev_storage + 842; - -} - } - else - { -{ -return NULL; - -} - } - case 'i': - if (strncmp (KR_keyword, "/dev/sdai10", 11) == 0) - { -{ -return dev_storage + 827; - -} - } - else - { -{ -return NULL; - -} - } - case 'h': - if (strncmp (KR_keyword, "/dev/sdah10", 11) == 0) - { -{ -return dev_storage + 812; - -} - } - else - { -{ -return NULL; - -} - } - case 'g': - if (strncmp (KR_keyword, "/dev/sdag10", 11) == 0) - { -{ -return dev_storage + 797; - -} - } - else - { -{ -return NULL; - -} - } - case 'f': - if (strncmp (KR_keyword, "/dev/sdaf10", 11) == 0) - { -{ -return dev_storage + 782; - -} - } - else - { -{ -return NULL; - -} - } - case 'e': - if (strncmp (KR_keyword, "/dev/sdae10", 11) == 0) - { -{ -return dev_storage + 767; - -} - } - else - { -{ -return NULL; - -} - } case 'd': - if (strncmp (KR_keyword, "/dev/sdad10", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdda10", 11) == 0) { { -return dev_storage + 752; +return dev_storage + 2081; } } @@ -44497,10 +46233,10 @@ return NULL; } } case 'c': - if (strncmp (KR_keyword, "/dev/sdac10", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdca10", 11) == 0) { { -return dev_storage + 737; +return dev_storage + 1667; } } @@ -44512,10 +46248,10 @@ return NULL; } } case 'b': - if (strncmp (KR_keyword, "/dev/sdab10", 11) == 0) + if (strncmp (KR_keyword, "/dev/sdba10", 11) == 0) { { -return dev_storage + 722; +return dev_storage + 1251; } } @@ -44530,7 +46266,160 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa10", 11) == 0) { { -return dev_storage + 707; +return dev_storage + 835; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case 'S': + switch (KR_keyword [9]) + { + case '6': + if (strncmp (KR_keyword, "/dev/ttyS60", 11) == 0) + { +{ +return dev_storage + 2637; + +} + } + else + { +{ +return NULL; + +} + } + case '5': + if (strncmp (KR_keyword, "/dev/ttyS50", 11) == 0) + { +{ +return dev_storage + 2627; + +} + } + else + { +{ +return NULL; + +} + } + case '4': + if (strncmp (KR_keyword, "/dev/ttyS40", 11) == 0) + { +{ +return dev_storage + 2617; + +} + } + else + { +{ +return NULL; + +} + } + case '3': + if (strncmp (KR_keyword, "/dev/ttyS30", 11) == 0) + { +{ +return dev_storage + 2607; + +} + } + else + { +{ +return NULL; + +} + } + case '2': + if (strncmp (KR_keyword, "/dev/ttyS20", 11) == 0) + { +{ +return dev_storage + 2597; + +} + } + else + { +{ +return NULL; + +} + } + case '1': + if (strncmp (KR_keyword, "/dev/ttyS10", 11) == 0) + { +{ +return dev_storage + 2587; + +} + } + else + { +{ +return NULL; + +} + } + default: +{ +return NULL; + +} + } + case '1': + switch (KR_keyword [9]) + { + case '2': + if (strncmp (KR_keyword, "/dev/nst120", 11) == 0) + { +{ +return dev_storage + 227; + +} + } + else + { +{ +return NULL; + +} + } + case '1': + if (strncmp (KR_keyword, "/dev/nst110", 11) == 0) + { +{ +return dev_storage + 217; + +} + } + else + { +{ +return NULL; + +} + } + case '0': + if (strncmp (KR_keyword, "/dev/nst100", 11) == 0) + { +{ +return dev_storage + 207; } } @@ -44566,7 +46455,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/windows", 12) == 0) { { -return dev_storage + 2578; +return dev_storage + 2642; } } @@ -44581,7 +46470,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/urandom", 12) == 0) { { -return dev_storage + 2577; +return dev_storage + 2641; } } diff --git a/winsup/cygwin/devices.h b/winsup/cygwin/devices.h index ddf0f2121..542c122b4 100644 --- a/winsup/cygwin/devices.h +++ b/winsup/cygwin/devices.h @@ -20,12 +20,12 @@ typedef __dev32_t _dev_t; #define _minor(dev) ((dev) & ((1 << (sizeof (_minor_t) * 8)) - 1)) #define _major(dev) ((dev) >> (sizeof (_major_t) * 8)) -#define MAX_CONSOLES 31 +#define MAX_CONSOLES 63 enum fh_devices { FH_TTY = FHDEV (5, 0), FH_CONSOLE = FHDEV (5, 1), - FH_PTYM = FHDEV (5, 2), /* /dev/ptmx */ + FH_PTMX = FHDEV (5, 2), FH_CONIN = FHDEV (5, 255), FH_CONOUT = FHDEV (5, 254), @@ -306,7 +306,7 @@ struct device _minor_t get_minor () const {return d.minor;} _minor_t get_major () const {return d.major;} - inline operator int () {return d.devn_int;} + inline operator int& () {return d.devn_int;} inline operator fh_devices () {return d.devn_fh_devices;} inline operator bool () {return !!d.devn_int;} inline operator DWORD& () {return d.devn_dword;} diff --git a/winsup/cygwin/devices.in b/winsup/cygwin/devices.in index 3e4c394ac..203ab4379 100644 --- a/winsup/cygwin/devices.in +++ b/winsup/cygwin/devices.in @@ -66,10 +66,11 @@ const device dev_error_storage = } %% "/dev/tty", BRACK(FH_TTY), "/dev/tty" -"/dev/tty%(0-63)d", BRACK(FHDEV(DEV_TTYS_MAJOR, {$1})), "/dev/tty{$1}", ttys_dev +"/dev/pty%(0-63)d", BRACK(FHDEV(DEV_TTYS_MAJOR, {$1})), "/dev/pty{$1}", ttys_dev +"/dev/ptym%(0-63)d", BRACK(FHDEV(DEV_TTYM_MAJOR, {$1})), "/dev/ptym{$1}", ttym_dev "/dev/cons%(0-63)d", BRACK(FHDEV(DEV_CONS_MAJOR, {$1})), "/dev/cons{$1}", cons_dev "/dev/console", BRACK(FH_CONSOLE), "/dev/console", console_dev -"/dev/ptmx", BRACK(FH_PTYM), "/dev/ptmx" +"/dev/ptmx", BRACK(FH_PTMX), "/dev/ptmx" "/dev/windows", BRACK(FH_WINDOWS), "/dev/windows" "/dev/dsp", BRACK(FH_OSS_DSP), "/dev/dsp" "/dev/conin", BRACK(FH_CONIN), "/dev/conin" diff --git a/winsup/cygwin/dtable.cc b/winsup/cygwin/dtable.cc index f1175e3ac..ff42b744d 100644 --- a/winsup/cygwin/dtable.cc +++ b/winsup/cygwin/dtable.cc @@ -113,7 +113,7 @@ dtable::get_debugger_info () extern bool jit_debug; if (!jit_debug && being_debugged ()) { - char std[3][sizeof ("/dev/ttyNNNN")]; + char std[3][sizeof ("/dev/ptyNNNN")]; std[0][0] = std[1][0] = std [2][0] = '\0'; char buf[sizeof ("cYgstd %x") + 32]; sprintf (buf, "cYgstd %x %x %x", (unsigned) &std, sizeof (std[0]), 3); @@ -401,6 +401,12 @@ dtable::init_std_file_from_handle (int fd, HANDLE handle) ptr ? new (ptr) name (__VA_ARGS__) : NULL; \ }) +#define cnew_no_ctor(name, ...) \ + ({ \ + void* ptr = (void*) ccalloc (HEAP_FHANDLER, 1, sizeof (name)); \ + ptr ? new (ptr) name (ptr) : NULL; \ + }) + fhandler_base * build_fh_name (const char *name, unsigned opt, suffix_info *si) { @@ -429,15 +435,20 @@ build_fh_dev (const device& dev, const char *unix_name) } #define fh_unset ((fhandler_base *) 1) + static fhandler_base * -fh_alloc (device dev) +fh_alloc (path_conv& pc) { fhandler_base *fh = fh_unset; + fhandler_base *fhraw = NULL; - switch (dev.get_major ()) + switch (pc.dev.get_major ()) { case DEV_TTYS_MAJOR: - fh = cnew (fhandler_pty_slave, dev.get_minor ()); + fh = cnew (fhandler_pty_slave, pc.dev.get_minor ()); + break; + case DEV_TTYM_MAJOR: + fh = cnew (fhandler_pty_master, pc.dev.get_minor ()); break; case DEV_CYGDRIVE_MAJOR: fh = cnew (fhandler_cygdrive); @@ -461,18 +472,21 @@ fh_alloc (device dev) fh = cnew (fhandler_serial); break; case DEV_CONS_MAJOR: - fh = cnew (fhandler_console, dev); + fh = cnew (fhandler_console, pc.dev); break; default: - switch ((int) dev) + switch ((int) pc.dev) { case FH_CONSOLE: case FH_CONIN: case FH_CONOUT: - fh = cnew (fhandler_console, dev); + fh = cnew (fhandler_console, pc.dev); break; - case FH_PTYM: - fh = cnew (fhandler_pty_master); + case FH_PTMX: + if (pc.isopen ()) + fh = cnew (fhandler_pty_master, -1); + else + fhraw = cnew_no_ctor (fhandler_pty_master, -1); break; case FH_WINDOWS: fh = cnew (fhandler_windows); @@ -540,40 +554,52 @@ fh_alloc (device dev) fh = cnew (fhandler_netdrive); break; case FH_TTY: - { - if (myself->ctty > 0) - { - if (iscons_dev (myself->ctty)) - fh = cnew (fhandler_console, dev); - else - fh = cnew (fhandler_pty_slave, myself->ctty); - } - ((fhandler_termios *) fh)->is_dev_tty (true); - break; - } + if (!pc.isopen ()) + fhraw = cnew_no_ctor (fhandler_console, -1); + else if (myself->ctty <= 0 + && !myself->set_ctty (fhandler_termios::last, 0)) + /* no tty assigned */; + else if (iscons_dev (myself->ctty)) + fh = cnew (fhandler_console, pc.dev); + else + fh = cnew (fhandler_pty_slave, myself->ctty); + break; case FH_KMSG: fh = cnew (fhandler_mailslot); break; } } + /* If `fhraw' is set that means that this fhandler is just a dummy + set up for stat(). Mock it up for use by stat without actually + trying to do any real initialization. */ + if (fhraw) + { + fh = fhraw; + fh->set_name (pc); + if (fh->use_archetype ()) + fh->archetype = fh; + } if (fh == fh_unset) fh = cnew (fhandler_nodevice); + else if (fh->dev () == FH_ERROR) + { + delete fh; + fh = NULL; + } return fh; } fhandler_base * build_fh_pc (path_conv& pc, bool set_name) { - fhandler_base *fh = fh_alloc (pc.dev); + fhandler_base *fh = fh_alloc (pc); if (!fh) { - set_errno (EMFILE); + set_errno (ENXIO); goto out; } - else if (fh->dev () == FH_ERROR) - goto out; else if (fh->dev () != FH_NADA) fh->set_name (fh->dev ().name); else if (set_name) @@ -582,18 +608,25 @@ build_fh_pc (path_conv& pc, bool set_name) if (!fh->use_archetype ()) /* doesn't use archetypes */; else if ((fh->archetype = cygheap->fdtab.find_archetype (fh->dev ()))) - debug_printf ("found an archetype for %s(%d/%d)", fh->get_name (), fh->dev ().get_major (), fh->dev ().get_minor ()); + debug_printf ("found an archetype for %s(%d/%d) io_handle %p", fh->get_name (), fh->dev ().get_major (), fh->dev ().get_minor (), + fh->archetype->get_io_handle ()); else { - debug_printf ("creating an archetype for %s(%d/%d)", fh->get_name (), fh->dev ().get_major (), fh->dev ().get_minor ()); - fh->archetype = fh_alloc (fh->pc.dev); - *fh->archetype = *fh; + fh->archetype = fh->clone (); + debug_printf ("created an archetype (%p) for %s(%d/%d)", fh->archetype, fh->get_name (), fh->dev ().get_major (), fh->dev ().get_minor ()); fh->archetype->archetype = NULL; *cygheap->fdtab.add_archetype () = fh->archetype; } + /* The fhandler_termios constructor keeps track of the last tty-like thing + opened but we're only interested in this if we don't have a controlling + terminal since we could potentially want to open it if /dev/tty is + referenced. */ + if (myself->ctty > 0 || !fh->is_tty () || !pc.isctty_capable ()) + fhandler_termios::last = NULL; + out: - debug_printf ("fh %p", fh); + debug_printf ("fh %p, dev %p", fh, (DWORD) fh->dev ()); return fh; } @@ -603,16 +636,16 @@ dtable::dup_worker (fhandler_base *oldfh, int flags) /* Don't call set_name in build_fh_pc. It will be called in fhandler_base::operator= below. Calling it twice will result in double allocation. */ - fhandler_base *newfh = build_fh_pc (oldfh->pc, false); + fhandler_base *newfh = oldfh->clone (); if (!newfh) debug_printf ("build_fh_pc failed"); else { - *newfh = *oldfh; if (!oldfh->archetype) newfh->set_io_handle (NULL); + newfh->pc.reset_conv_handle (); - if (oldfh->dup (newfh)) + if (oldfh->dup (newfh, flags)) { delete newfh; newfh = NULL; @@ -625,6 +658,14 @@ dtable::dup_worker (fhandler_base *oldfh, int flags) /* The O_CLOEXEC flag enforces close-on-exec behaviour. */ newfh->set_close_on_exec (!!(flags & O_CLOEXEC)); debug_printf ("duped '%s' old %p, new %p", oldfh->get_name (), oldfh->get_io_handle (), newfh->get_io_handle ()); +#ifdef DEBUGGING + debug_printf ("duped output_handles old %p, new %p", + oldfh->get_output_handle (), + newfh->get_output_handle ()); + debug_printf ("duped output_handles archetype old %p, archetype new %p", + oldfh->archetype->get_output_handle (), + newfh->archetype->get_output_handle ()); +#endif /*DEBUGGING*/ } } return newfh; @@ -659,6 +700,13 @@ dtable::dup3 (int oldfd, int newfd, int flags) return -1; } + /* This is a temporary kludge until all utilities can catch up with + a change in behavior that implements linux functionality: opening + a tty should not automatically cause it to become the controlling + tty for the process. */ + if (newfd > 2) + flags |= O_NOCTTY; + if ((newfh = dup_worker (fds[oldfd], flags)) == NULL) { res = -1; @@ -817,7 +865,7 @@ static void decode_tty (char *buf, WCHAR *w32) { int ttyn = wcstol (w32, NULL, 10); - __small_sprintf (buf, "/dev/tty%d", ttyn); + __small_sprintf (buf, "/dev/pty%d", ttyn); } /* Try to derive posix filename from given handle. Return true if diff --git a/winsup/cygwin/fhandler.cc b/winsup/cygwin/fhandler.cc index f53a12419..83a4e1b75 100644 --- a/winsup/cygwin/fhandler.cc +++ b/winsup/cygwin/fhandler.cc @@ -37,17 +37,15 @@ static NO_COPY const int CHUNK_SIZE = 1024; /* Used for crlf conversions */ struct __cygwin_perfile *perfile_table; -inline fhandler_base& -fhandler_base::operator =(fhandler_base& x) +void +fhandler_base::reset (const fhandler_base *from) { - memcpy (this, &x, size ()); - pc = x.pc; + pc = from->pc; rabuf = NULL; ralen = 0; raixget = 0; raixput = 0; rabuflen = 0; - return *this; } int @@ -462,17 +460,17 @@ fhandler_base::open_with_arch (int flags, mode_t mode) } else if (archetype) { - if (!archetype->io_handle) + if (!archetype->get_io_handle ()) { - usecount = 0; - *archetype = *this; + copyto (archetype); archetype_usecount (1); archetype->archetype = NULL; + usecount = 0; } else { fhandler_base *arch = archetype; - *this = *archetype; + archetype->copyto (this); archetype = arch; archetype_usecount (1); usecount = 0; @@ -1259,7 +1257,7 @@ fhandler_base::init (HANDLE f, DWORD a, mode_t bin) } int -fhandler_base::dup (fhandler_base *child) +fhandler_base::dup (fhandler_base *child, int) { debug_printf ("in fhandler_base dup"); @@ -1283,9 +1281,9 @@ fhandler_base::dup (fhandler_base *child) } int -fhandler_base_overlapped::dup (fhandler_base *child) +fhandler_base_overlapped::dup (fhandler_base *child, int flags) { - int res = fhandler_base::dup (child) || + int res = fhandler_base::dup (child, flags) || ((fhandler_base_overlapped *) child)->setup_overlapped (); return res; } diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h index c11d8c834..58ca7b1e1 100644 --- a/winsup/cygwin/fhandler.h +++ b/winsup/cygwin/fhandler.h @@ -181,6 +181,7 @@ class fhandler_base path_conv pc; + void reset (const fhandler_base *); virtual bool use_archetype () const {return false;} virtual void set_name (path_conv &pc); virtual void set_name (const char *s) @@ -194,9 +195,6 @@ class fhandler_base int pc_binmode () const {return pc.binmode ();} device& dev () {return pc.dev;} operator DWORD& () {return (DWORD&) pc;} - virtual size_t size () const {return sizeof (*this);} - - virtual fhandler_base& operator =(fhandler_base &x); fhandler_base (); virtual ~fhandler_base (); @@ -354,7 +352,7 @@ public: virtual ssize_t __stdcall pwrite (void *, size_t, _off64_t) __attribute__ ((regparm (3))); virtual _off64_t lseek (_off64_t offset, int whence); virtual int lock (int, struct __flock64 *); - virtual int dup (fhandler_base *child); + virtual int dup (fhandler_base *child, int flags); virtual int fpathconf (int); virtual HANDLE mmap (caddr_t *addr, size_t len, int prot, @@ -427,7 +425,22 @@ public: bool device_access_denied (int) __attribute__ ((regparm (2))); int fhaccess (int flags, bool) __attribute__ ((regparm (3))); virtual bool __stdcall has_ongoing_io () __attribute__ ((regparm (1))) {return false;} - virtual bool is_dev_tty () const { return false; } + + fhandler_base (void *) {} + + virtual void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + virtual fhandler_base *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_base)); + fhandler_base *fh = new (ptr) fhandler_base (ptr); + copyto (fh); + return fh; + } }; struct wsa_event @@ -552,7 +565,7 @@ class fhandler_socket: public fhandler_base int shutdown (int how); int close (); void hclose (HANDLE) {close ();} - int dup (fhandler_base *child); + int dup (fhandler_base *child, int); void set_close_on_exec (bool val); int fixup_before_fork_exec (DWORD); @@ -578,7 +591,22 @@ class fhandler_socket: public fhandler_base int __stdcall fchown (__uid32_t uid, __gid32_t gid) __attribute__ ((regparm (2))); int __stdcall facl (int, int, __acl32 *) __attribute__ ((regparm (3))); int __stdcall link (const char *) __attribute__ ((regparm (2))); - size_t size () const { return sizeof (*this);} + + fhandler_socket (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_socket *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_socket)); + fhandler_socket *fh = new (ptr) fhandler_socket (ptr); + copyto (fh); + return fh; + } }; class fhandler_base_overlapped: public fhandler_base @@ -615,8 +643,23 @@ public: void fixup_after_exec (); int close (); - int dup (fhandler_base *child); - virtual size_t size () const { return sizeof (*this);} /* probably not needed */ + int dup (fhandler_base *child, int); + + fhandler_base_overlapped (void *) {} + + virtual void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + virtual fhandler_base_overlapped *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_base_overlapped)); + fhandler_base_overlapped *fh = new (ptr) fhandler_base_overlapped (ptr); + copyto (fh); + return fh; + } }; class fhandler_pipe: public fhandler_base_overlapped @@ -637,7 +680,7 @@ public: select_record *select_except (select_stuff *); char *get_proc_fd_name (char *buf); int open (int flags, mode_t mode = 0); - int dup (fhandler_base *child); + int dup (fhandler_base *child, int); int ioctl (unsigned int cmd, void *); int __stdcall fstatvfs (struct statvfs *buf) __attribute__ ((regparm (2))); int __stdcall fadvise (_off64_t, _off64_t, int) __attribute__ ((regparm (3))); @@ -646,7 +689,22 @@ public: static int create (fhandler_pipe *[2], unsigned, int); static int create_selectable (LPSECURITY_ATTRIBUTES, HANDLE&, HANDLE&, DWORD, const char * = NULL); friend class fhandler_fifo; - size_t size () const { return sizeof (*this);} + + fhandler_pipe (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_pipe *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_pipe)); + fhandler_pipe *fh = new (ptr) fhandler_pipe (ptr); + copyto (fh); + return fh; + } }; class fhandler_fifo: public fhandler_base_overlapped @@ -673,14 +731,29 @@ public: ssize_t __stdcall raw_write (const void *, size_t) __attribute__ ((regparm (3))); int open (int, mode_t); int close (); - int dup (fhandler_base *child); + int dup (fhandler_base *child, int); bool isfifo () const { return true; } void set_close_on_exec (bool val); int __stdcall fstatvfs (struct statvfs *buf) __attribute__ ((regparm (2))); select_record *select_read (select_stuff *); select_record *select_write (select_stuff *); select_record *select_except (select_stuff *); - size_t size () const { return sizeof (*this);} + + fhandler_fifo (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_fifo *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_fifo)); + fhandler_fifo *fh = new (ptr) fhandler_fifo (ptr); + copyto (fh); + return fh; + } }; class fhandler_mailslot : public fhandler_base_overlapped @@ -693,7 +766,22 @@ class fhandler_mailslot : public fhandler_base_overlapped ssize_t __stdcall raw_write (const void *, size_t) __attribute__ ((regparm (3))); int ioctl (unsigned int cmd, void *); select_record *select_read (select_stuff *); - size_t size () const { return sizeof (*this);} + + fhandler_mailslot (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_mailslot *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_mailslot)); + fhandler_mailslot *fh = new (ptr) fhandler_mailslot (ptr); + copyto (fh); + return fh; + } }; class fhandler_dev_raw: public fhandler_base @@ -721,12 +809,27 @@ class fhandler_dev_raw: public fhandler_base int __stdcall fstat (struct __stat64 *buf) __attribute__ ((regparm (2))); - int dup (fhandler_base *child); + int dup (fhandler_base *child, int); int ioctl (unsigned int cmd, void *buf); void fixup_after_fork (HANDLE); void fixup_after_exec (); - size_t size () const { return sizeof (*this);} + + fhandler_dev_raw (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_dev_raw *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_dev_raw)); + fhandler_dev_raw *fh = new (ptr) fhandler_dev_raw (ptr); + copyto (fh); + return fh; + } }; #define MAX_PARTITIONS 15 @@ -765,12 +868,27 @@ class fhandler_dev_floppy: public fhandler_dev_raw int open (int flags, mode_t mode = 0); int close (); - int dup (fhandler_base *child); + int dup (fhandler_base *child, int); void __stdcall raw_read (void *ptr, size_t& ulen) __attribute__ ((regparm (3))); ssize_t __stdcall raw_write (const void *ptr, size_t ulen) __attribute__ ((regparm (3))); _off64_t lseek (_off64_t offset, int whence); int ioctl (unsigned int cmd, void *buf); - size_t size () const { return sizeof (*this);} + + fhandler_dev_floppy (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_dev_floppy *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_dev_floppy)); + fhandler_dev_floppy *fh = new (ptr) fhandler_dev_floppy (ptr); + copyto (fh); + return fh; + } }; class fhandler_dev_tape: public fhandler_dev_raw @@ -798,11 +916,26 @@ class fhandler_dev_tape: public fhandler_dev_raw virtual int __stdcall fstat (struct __stat64 *buf) __attribute__ ((regparm (2))); - virtual int dup (fhandler_base *child); + virtual int dup (fhandler_base *child, int); virtual void fixup_after_fork (HANDLE parent); virtual void set_close_on_exec (bool val); virtual int ioctl (unsigned int cmd, void *buf); - size_t size () const { return sizeof (*this);} + + fhandler_dev_tape (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_dev_tape *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_dev_tape)); + fhandler_dev_tape *fh = new (ptr) fhandler_dev_tape (ptr); + copyto (fh); + return fh; + } }; /* Standard disk file */ @@ -820,7 +953,7 @@ class fhandler_disk_file: public fhandler_base int open (int flags, mode_t mode); int close (); - int dup (fhandler_base *child); + int dup (fhandler_base *child, int); void fixup_after_fork (HANDLE parent); int lock (int, struct __flock64 *); bool isdevice () const { return false; } @@ -852,7 +985,22 @@ class fhandler_disk_file: public fhandler_base ssize_t __stdcall pread (void *, size_t, _off64_t) __attribute__ ((regparm (3))); ssize_t __stdcall pwrite (void *, size_t, _off64_t) __attribute__ ((regparm (3))); - size_t size () const { return sizeof (*this);} + + fhandler_disk_file (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_disk_file *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_disk_file)); + fhandler_disk_file *fh = new (ptr) fhandler_disk_file (ptr); + copyto (fh); + return fh; + } }; class fhandler_cygdrive: public fhandler_disk_file @@ -874,7 +1022,22 @@ class fhandler_cygdrive: public fhandler_disk_file void rewinddir (DIR *); int closedir (DIR *); int __stdcall fstat (struct __stat64 *buf) __attribute__ ((regparm (2))); - size_t size () const { return sizeof (*this);} + + fhandler_cygdrive (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_cygdrive *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_cygdrive)); + fhandler_cygdrive *fh = new (ptr) fhandler_cygdrive (ptr); + copyto (fh); + return fh; + } }; class fhandler_serial: public fhandler_base @@ -898,7 +1061,7 @@ class fhandler_serial: public fhandler_base int close (); int init (HANDLE h, DWORD a, mode_t flags); void overlapped_setup (); - int dup (fhandler_base *child); + int dup (fhandler_base *child, int); void __stdcall raw_read (void *ptr, size_t& ulen) __attribute__ ((regparm (3))); ssize_t __stdcall raw_write (const void *ptr, size_t ulen) __attribute__ ((regparm (3))); int tcsendbreak (int); @@ -922,7 +1085,22 @@ class fhandler_serial: public fhandler_base select_record *select_read (select_stuff *); select_record *select_write (select_stuff *); select_record *select_except (select_stuff *); - size_t size () const { return sizeof (*this);} + + fhandler_serial (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_serial *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_serial)); + fhandler_serial *fh = new (ptr) fhandler_serial (ptr); + copyto (fh); + return fh; + } }; #define acquire_output_mutex(ms) \ @@ -935,29 +1113,33 @@ class tty; class tty_min; class fhandler_termios: public fhandler_base { - protected: - bool opened_as_dev_tty; + private: HANDLE output_handle; + protected: virtual void doecho (const void *, DWORD) {}; virtual int accept_input () {return 1;}; - int ioctl_termios (int, int); - public: - bool is_dev_tty () const { return opened_as_dev_tty; } - bool is_dev_tty (bool val) { return opened_as_dev_tty = val; } + int ioctl (int, void *); tty_min *_tc; - virtual tty_min *tc () const {return _tc; } + tty *get_ttyp () {return (tty *) tc ();} + public: + static fhandler_termios *last; + tty_min*& tc () {return _tc;} fhandler_termios () : fhandler_base () { - opened_as_dev_tty = false; need_fork_fixup (true); + last = this; + } + ~fhandler_termios () + { + if (this == last) + last = NULL; } HANDLE& get_output_handle () { return output_handle; } line_edit_status line_edit (const char *rptr, int nread, termios&); void set_output_handle (HANDLE h) { output_handle = h; } void tcinit (bool force); bool is_tty () const { return true; } - tty *get_ttyp () { return (tty *) tc (); } void sigflush (); int tcgetpgrp (); int tcsetpgrp (int pid); @@ -967,7 +1149,22 @@ class fhandler_termios: public fhandler_base void echo_erase (int force = 0); virtual _off64_t lseek (_off64_t, int); int tcgetsid (); - virtual size_t size () const { return sizeof (*this);} /* probably not needed */ + + fhandler_termios (void *) {} + + virtual void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + virtual fhandler_termios *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_termios)); + fhandler_termios *fh = new (ptr) fhandler_termios (ptr); + copyto (fh); + return fh; + } }; enum ansi_intensity @@ -1105,7 +1302,6 @@ private: static bool create_invisible_console (HWINSTA); static bool create_invisible_console_workaround (); static console_state *open_shared_console (HWND, HANDLE&, bool&); - tty_min *tc () const {return &(shared_console_info->tty_min_state);} public: static pid_t tc_getpgid () {return shared_console_info->tty_min_state.getpgid ();} @@ -1122,6 +1318,7 @@ private: int open (int flags, mode_t mode); void open_setup (int flags); + int dup (fhandler_base *, int); void __stdcall read (void *ptr, size_t& len) __attribute__ ((regparm (3))); ssize_t __stdcall write (const void *ptr, size_t len); @@ -1146,11 +1343,26 @@ private: void set_close_on_exec (bool val); void set_input_state (); void send_winch_maybe (); - void get_tty_stuff (); + void setup (); bool set_unit (); static bool need_invisible (); static bool has_a () {return !invisible_console;} - size_t size () const { return sizeof (*this);} + + fhandler_console (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_console *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_console)); + fhandler_console *fh = new (ptr) fhandler_console (ptr); + copyto (fh); + return fh; + } friend tty_min * tty_list::get_cttyp (); }; @@ -1177,7 +1389,22 @@ class fhandler_pty_common: public fhandler_termios select_record *select_read (select_stuff *); select_record *select_write (select_stuff *); select_record *select_except (select_stuff *); - virtual size_t size () const { return sizeof (*this);} /* probably not needed */ + + fhandler_pty_common (void *) {} + + virtual void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + virtual fhandler_pty_common *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_pty_common)); + fhandler_pty_common *fh = new (ptr) fhandler_pty_common (ptr); + copyto (fh); + return fh; + } }; class fhandler_pty_slave: public fhandler_pty_common @@ -1205,7 +1432,7 @@ class fhandler_pty_slave: public fhandler_pty_common int ioctl (unsigned int cmd, void *); int close (); void cleanup (); - int dup (fhandler_base *child); + int dup (fhandler_base *child, int); void fixup_after_fork (HANDLE parent); void fixup_after_exec (); @@ -1215,7 +1442,22 @@ class fhandler_pty_slave: public fhandler_pty_common int __stdcall fstat (struct __stat64 *buf) __attribute__ ((regparm (2))); int __stdcall fchmod (mode_t mode) __attribute__ ((regparm (1))); int __stdcall fchown (__uid32_t uid, __gid32_t gid) __attribute__ ((regparm (2))); - size_t size () const { return sizeof (*this);} + + fhandler_pty_slave (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_pty_slave *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_pty_slave)); + fhandler_pty_slave *fh = new (ptr) fhandler_pty_slave (ptr); + copyto (fh); + return fh; + } }; class fhandler_pty_master: public fhandler_pty_common @@ -1223,20 +1465,21 @@ class fhandler_pty_master: public fhandler_pty_common int pktmode; // non-zero if pty in a packet mode. HANDLE master_ctl; // Control socket for handle duplication cygthread *master_thread; // Master control thread + HANDLE from_master, to_master; + DWORD dwProcessId; // Owner of master handles public: int need_nl; // Next read should start with \n - DWORD dwProcessId; // Owner of master handles - HANDLE from_master, to_master; /* Constructor */ - fhandler_pty_master (); + fhandler_pty_master (int); DWORD pty_master_thread (); int process_slave_output (char *buf, size_t len, int pktmode_on); void doecho (const void *str, DWORD len); int accept_input (); int open (int flags, mode_t mode = 0); + void open_setup (int flags); ssize_t __stdcall write (const void *ptr, size_t len); void __stdcall read (void *ptr, size_t& len) __attribute__ ((regparm (3))); int close (); @@ -1251,11 +1494,27 @@ public: bool hit_eof (); bool setup (); - int dup (fhandler_base *); + int dup (fhandler_base *, int); void fixup_after_fork (HANDLE parent); void fixup_after_exec (); int tcgetpgrp (); - size_t size () const { return sizeof (*this);} + + fhandler_pty_master (void *) {} + ~fhandler_pty_master (); + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_pty_master *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_pty_master)); + fhandler_pty_master *fh = new (ptr) fhandler_pty_master (ptr); + copyto (fh); + return fh; + } }; class fhandler_dev_null: public fhandler_base @@ -1266,7 +1525,22 @@ class fhandler_dev_null: public fhandler_base select_record *select_read (select_stuff *); select_record *select_write (select_stuff *); select_record *select_except (select_stuff *); - size_t size () const { return sizeof (*this);} + + fhandler_dev_null (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_dev_null *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_dev_null)); + fhandler_dev_null *fh = new (ptr) fhandler_dev_null (ptr); + copyto (fh); + return fh; + } }; class fhandler_dev_zero: public fhandler_base @@ -1285,7 +1559,22 @@ class fhandler_dev_zero: public fhandler_base virtual bool fixup_mmap_after_fork (HANDLE h, int prot, int flags, _off64_t offset, DWORD size, void *address); - size_t size () const { return sizeof (*this);} + + fhandler_dev_zero (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_dev_zero *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_dev_zero)); + fhandler_dev_zero *fh = new (ptr) fhandler_dev_zero (ptr); + copyto (fh); + return fh; + } }; class fhandler_dev_random: public fhandler_base @@ -1306,8 +1595,23 @@ class fhandler_dev_random: public fhandler_base void __stdcall read (void *ptr, size_t& len) __attribute__ ((regparm (3))); _off64_t lseek (_off64_t offset, int whence); int close (); - int dup (fhandler_base *child); - size_t size () const { return sizeof (*this);} + int dup (fhandler_base *child, int); + + fhandler_dev_random (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_dev_random *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_dev_random)); + fhandler_dev_random *fh = new (ptr) fhandler_dev_random (ptr); + copyto (fh); + return fh; + } }; class fhandler_dev_mem: public fhandler_base @@ -1331,7 +1635,22 @@ class fhandler_dev_mem: public fhandler_base int msync (HANDLE h, caddr_t addr, size_t len, int flags); bool fixup_mmap_after_fork (HANDLE h, int prot, int flags, _off64_t offset, DWORD size, void *address); - size_t size () const { return sizeof (*this);} + + fhandler_dev_mem (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_dev_mem *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_dev_mem)); + fhandler_dev_mem *fh = new (ptr) fhandler_dev_mem (ptr); + copyto (fh); + return fh; + } }; class fhandler_dev_clipboard: public fhandler_base @@ -1349,9 +1668,24 @@ class fhandler_dev_clipboard: public fhandler_base _off64_t lseek (_off64_t offset, int whence); int close (); - int dup (fhandler_base *child); + int dup (fhandler_base *child, int); void fixup_after_exec (); - size_t size () const { return sizeof (*this);} + + fhandler_dev_clipboard (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_dev_clipboard *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_dev_clipboard)); + fhandler_dev_clipboard *fh = new (ptr) fhandler_dev_clipboard (ptr); + copyto (fh); + return fh; + } }; class fhandler_windows: public fhandler_base @@ -1374,7 +1708,22 @@ class fhandler_windows: public fhandler_base select_record *select_read (select_stuff *); select_record *select_write (select_stuff *); select_record *select_except (select_stuff *); - size_t size () const { return sizeof (*this);} + + fhandler_windows (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_windows *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_windows)); + fhandler_windows *fh = new (ptr) fhandler_windows (ptr); + copyto (fh); + return fh; + } }; class fhandler_dev_dsp: public fhandler_base @@ -1405,7 +1754,22 @@ class fhandler_dev_dsp: public fhandler_base void close_audio_in (); void close_audio_out (bool immediately = false); bool use_archetype () const {return true;} - size_t size () const { return sizeof (*this);} + + fhandler_dev_dsp (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_dev_dsp *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_dev_dsp)); + fhandler_dev_dsp *fh = new (ptr) fhandler_dev_dsp (ptr); + copyto (fh); + return fh; + } }; class fhandler_virtual : public fhandler_base @@ -1429,7 +1793,7 @@ class fhandler_virtual : public fhandler_base ssize_t __stdcall write (const void *ptr, size_t len); void __stdcall read (void *ptr, size_t& len) __attribute__ ((regparm (3))); _off64_t lseek (_off64_t, int); - int dup (fhandler_base *child); + int dup (fhandler_base *child, int); int open (int flags, mode_t mode = 0); int close (); int __stdcall fstat (struct stat *buf) __attribute__ ((regparm (2))); @@ -1440,7 +1804,22 @@ class fhandler_virtual : public fhandler_base virtual bool fill_filebuf (); char *get_filebuf () { return filebuf; } void fixup_after_exec (); - virtual size_t size () const { return sizeof (*this);} + + fhandler_virtual (void *) {} + + virtual void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + virtual fhandler_virtual *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_virtual)); + fhandler_virtual *fh = new (ptr) fhandler_virtual (ptr); + copyto (fh); + return fh; + } }; class fhandler_proc: public fhandler_virtual @@ -1456,7 +1835,22 @@ class fhandler_proc: public fhandler_virtual int open (int flags, mode_t mode = 0); int __stdcall fstat (struct __stat64 *buf) __attribute__ ((regparm (2))); bool fill_filebuf (); - virtual size_t size () const { return sizeof (*this);} + + fhandler_proc (void *) {} + + virtual void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + virtual fhandler_proc *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_proc)); + fhandler_proc *fh = new (ptr) fhandler_proc (ptr); + copyto (fh); + return fh; + } }; class fhandler_procsys: public fhandler_virtual @@ -1476,7 +1870,22 @@ class fhandler_procsys: public fhandler_virtual ssize_t __stdcall write (const void *ptr, size_t len); int __stdcall fstat (struct __stat64 *buf) __attribute__ ((regparm (2))); bool fill_filebuf (); - size_t size () const { return sizeof (*this);} + + fhandler_procsys (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_procsys *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_procsys)); + fhandler_procsys *fh = new (ptr) fhandler_procsys (ptr); + copyto (fh); + return fh; + } }; class fhandler_procsysvipc: public fhandler_proc @@ -1489,7 +1898,22 @@ class fhandler_procsysvipc: public fhandler_proc int open (int flags, mode_t mode = 0); int __stdcall fstat (struct __stat64 *buf) __attribute__ ((regparm (2))); bool fill_filebuf (); - size_t size () const { return sizeof (*this);} + + fhandler_procsysvipc (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_procsysvipc *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_procsysvipc)); + fhandler_procsysvipc *fh = new (ptr) fhandler_procsysvipc (ptr); + copyto (fh); + return fh; + } }; class fhandler_netdrive: public fhandler_virtual @@ -1503,7 +1927,22 @@ class fhandler_netdrive: public fhandler_virtual int closedir (DIR *); int open (int flags, mode_t mode = 0); int __stdcall fstat (struct __stat64 *buf) __attribute__ ((regparm (2))); - size_t size () const { return sizeof (*this);} + + fhandler_netdrive (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_netdrive *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_netdrive)); + fhandler_netdrive *fh = new (ptr) fhandler_netdrive (ptr); + copyto (fh); + return fh; + } }; class fhandler_registry: public fhandler_proc @@ -1526,8 +1965,23 @@ class fhandler_registry: public fhandler_proc int __stdcall fstat (struct __stat64 *buf) __attribute__ ((regparm (2))); bool fill_filebuf (); int close (); - int dup (fhandler_base *child); - size_t size () const { return sizeof (*this);} + int dup (fhandler_base *child, int); + + fhandler_registry (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_registry *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_registry)); + fhandler_registry *fh = new (ptr) fhandler_registry (ptr); + copyto (fh); + return fh; + } }; class pinfo; @@ -1543,7 +1997,22 @@ class fhandler_process: public fhandler_proc int open (int flags, mode_t mode = 0); int __stdcall fstat (struct __stat64 *buf) __attribute__ ((regparm (2))); bool fill_filebuf (); - size_t size () const { return sizeof (*this);} + + fhandler_process (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_process *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_process)); + fhandler_process *fh = new (ptr) fhandler_process (ptr); + copyto (fh); + return fh; + } }; class fhandler_procnet: public fhandler_proc @@ -1556,14 +2025,28 @@ class fhandler_procnet: public fhandler_proc int open (int flags, mode_t mode = 0); int __stdcall fstat (struct __stat64 *buf) __attribute__ ((regparm (2))); bool fill_filebuf (); - size_t size () const { return sizeof (*this);} + + fhandler_procnet (void *) {} + + void copyto (fhandler_base *x) + { + *reinterpret_cast (x) = *this; + x->reset (this); + } + + fhandler_procnet *clone () + { + void *ptr = (void *) cmalloc (HEAP_FHANDLER, sizeof (fhandler_procnet)); + fhandler_procnet *fh = new (ptr) fhandler_procnet (ptr); + copyto (fh); + return fh; + } }; struct fhandler_nodevice: public fhandler_base { fhandler_nodevice (); int open (int flags, mode_t mode = 0); - // int __stdcall fstat (struct __stat64 *buf, path_conv *); }; #define report_tty_counts(fh, call, use_op) \ diff --git a/winsup/cygwin/fhandler_clipboard.cc b/winsup/cygwin/fhandler_clipboard.cc index 5defe6a3c..ec2b90e7a 100644 --- a/winsup/cygwin/fhandler_clipboard.cc +++ b/winsup/cygwin/fhandler_clipboard.cc @@ -44,7 +44,7 @@ fhandler_dev_clipboard::fhandler_dev_clipboard () */ int -fhandler_dev_clipboard::dup (fhandler_base * child) +fhandler_dev_clipboard::dup (fhandler_base * child, int) { fhandler_dev_clipboard *fhc = (fhandler_dev_clipboard *) child; diff --git a/winsup/cygwin/fhandler_console.cc b/winsup/cygwin/fhandler_console.cc index c975fc479..cf97c5fc9 100644 --- a/winsup/cygwin/fhandler_console.cc +++ b/winsup/cygwin/fhandler_console.cc @@ -164,7 +164,7 @@ fhandler_console::set_unit () /* Allocate and initialize the shared record for the current console. */ void -fhandler_console::get_tty_stuff () +fhandler_console::setup () { if (set_unit ()) { @@ -268,7 +268,7 @@ fhandler_console::send_winch_maybe () { dev_state.scroll_region.Top = 0; dev_state.scroll_region.Bottom = -1; - tc ()->kill_pgrp (SIGWINCH); + get_ttyp ()->kill_pgrp (SIGWINCH); } } @@ -336,7 +336,7 @@ fhandler_console::read (void *pv, size_t& buflen) DWORD timeout = is_nonblocking () ? 0 : INFINITE; char tmp[60]; - termios ti = tc ()->ti; + termios ti = get_ttyp ()->ti; for (;;) { int bgres; @@ -684,8 +684,8 @@ sig_exit: void fhandler_console::set_input_state () { - if (tc ()->rstcons ()) - input_tcsetattr (0, &tc ()->ti); + if (get_ttyp ()->rstcons ()) + input_tcsetattr (0, &get_ttyp ()->ti); } bool @@ -759,6 +759,13 @@ fhandler_console::scroll_screen (int x1, int y1, int x2, int y2, int xn, int yn) clear_screen (0, sr1.Top, sr2.Right, dest.Y - 1); } +int +fhandler_console::dup (fhandler_base *child, int flags) +{ + myself->set_ctty (this, flags); + return 0; +} + int fhandler_console::open (int flags, mode_t) { @@ -806,7 +813,7 @@ fhandler_console::open (int flags, mode_t) dev_state.set_default_attr (); } - tc ()->rstcons (false); + get_ttyp ()->rstcons (false); set_open_status (); DWORD cflags; @@ -825,7 +832,7 @@ fhandler_console::open_setup (int flags) { cygheap->manage_console_count ("fhandler_console::open", 1); set_flags ((flags & ~O_TEXT) | O_BINARY); - myself->set_ctty (&shared_console_info->tty_min_state, flags, this); + myself->set_ctty (this, flags); } int @@ -841,7 +848,7 @@ fhandler_console::close () int fhandler_console::ioctl (unsigned int cmd, void *arg) { - int res = ioctl_termios (cmd, (int) arg); + int res = fhandler_termios::ioctl (cmd, arg); if (res <= 0) return res; switch (cmd) @@ -970,8 +977,8 @@ fhandler_console::input_tcsetattr (int, struct termios const *t) available. We've got ECHO and ICANON, they've got ENABLE_ECHO_INPUT and ENABLE_LINE_INPUT. */ - termios_printf ("this %p, tc () %p, t %p", this, tc (), t); - tc ()->ti = *t; + termios_printf ("this %p, get_ttyp () %p, t %p", this, get_ttyp (), t); + get_ttyp ()->ti = *t; if (t->c_lflag & ECHO) { @@ -1010,7 +1017,7 @@ fhandler_console::input_tcsetattr (int, struct termios const *t) res, t, flags, t->c_lflag, t->c_iflag); } - tc ()->rstcons (false); + get_ttyp ()->rstcons (false); return res; } @@ -1027,7 +1034,7 @@ int fhandler_console::tcgetattr (struct termios *t) { int res; - *t = tc ()->ti; + *t = get_ttyp ()->ti; t->c_cflag |= CS8; @@ -1067,8 +1074,9 @@ fhandler_console::fhandler_console (fh_devices unit) : { if (unit > 0) dev ().parse (unit); - get_tty_stuff (); + setup (); trunc_buf.len = 0; + _tc = &(shared_console_info->tty_min_state); } void @@ -1866,7 +1874,7 @@ do_print: y--; } } - cursor_set (false, ((tc ()->ti.c_oflag & ONLCR) ? 0 : x), y + 1); + cursor_set (false, ((get_ttyp ()->ti.c_oflag & ONLCR) ? 0 : x), y + 1); break; case BAK: cursor_rel (-1, 0); @@ -2192,13 +2200,13 @@ fhandler_console::init (HANDLE h, DWORD a, mode_t bin) if (h && h != INVALID_HANDLE_VALUE) CloseHandle (h); /* Reopened by open */ - return !tcsetattr (0, &tc ()->ti); + return !tcsetattr (0, &get_ttyp ()->ti); } int fhandler_console::igncr_enabled () { - return tc ()->ti.c_iflag & IGNCR; + return get_ttyp ()->ti.c_iflag & IGNCR; } void diff --git a/winsup/cygwin/fhandler_disk_file.cc b/winsup/cygwin/fhandler_disk_file.cc index 624815533..d07cc93fb 100644 --- a/winsup/cygwin/fhandler_disk_file.cc +++ b/winsup/cygwin/fhandler_disk_file.cc @@ -1390,11 +1390,11 @@ fhandler_disk_file::close () } int -fhandler_disk_file::dup (fhandler_base *child) +fhandler_disk_file::dup (fhandler_base *child, int flags) { fhandler_disk_file *fhc = (fhandler_disk_file *) child; - int ret = fhandler_base::dup (child); + int ret = fhandler_base::dup (child, flags); if (!ret && prw_handle && !DuplicateHandle (GetCurrentProcess (), prw_handle, GetCurrentProcess (), &fhc->prw_handle, diff --git a/winsup/cygwin/fhandler_fifo.cc b/winsup/cygwin/fhandler_fifo.cc index 8c0fbc9b0..c08f54699 100644 --- a/winsup/cygwin/fhandler_fifo.cc +++ b/winsup/cygwin/fhandler_fifo.cc @@ -303,9 +303,9 @@ fhandler_fifo::close () } int -fhandler_fifo::dup (fhandler_base *child) +fhandler_fifo::dup (fhandler_base *child, int flags) { - int res = fhandler_base_overlapped::dup (child); + int res = fhandler_base_overlapped::dup (child, flags); fhandler_fifo *fifo_child = (fhandler_fifo *) child; if (res == 0 && dummy_client) { diff --git a/winsup/cygwin/fhandler_floppy.cc b/winsup/cygwin/fhandler_floppy.cc index bfa9bcb77..070a30ab5 100644 --- a/winsup/cygwin/fhandler_floppy.cc +++ b/winsup/cygwin/fhandler_floppy.cc @@ -405,9 +405,9 @@ fhandler_dev_floppy::close () } int -fhandler_dev_floppy::dup (fhandler_base *child) +fhandler_dev_floppy::dup (fhandler_base *child, int flags) { - int ret = fhandler_dev_raw::dup (child); + int ret = fhandler_dev_raw::dup (child, flags); if (!ret && partitions) InterlockedIncrement (&partitions->refcnt); diff --git a/winsup/cygwin/fhandler_proc.cc b/winsup/cygwin/fhandler_proc.cc index 58b467d33..88d13fe17 100644 --- a/winsup/cygwin/fhandler_proc.cc +++ b/winsup/cygwin/fhandler_proc.cc @@ -1371,7 +1371,7 @@ format_proc_devices (void *, char *&destbuf) "%3d sd\n" "%3d sd\n", DEV_MEM_MAJOR, DEV_CONS_MAJOR, _major (FH_TTY), - _major (FH_CONSOLE), _major (FH_PTYM), + _major (FH_CONSOLE), _major (FH_PTMX), DEV_TAPE_MAJOR, DEV_MISC_MAJOR, DEV_SOUND_MAJOR, DEV_SERIAL_MAJOR, DEV_TTYS_MAJOR, DEV_FLOPPY_MAJOR, DEV_SD_MAJOR, DEV_CDROM_MAJOR, DEV_SD1_MAJOR, diff --git a/winsup/cygwin/fhandler_random.cc b/winsup/cygwin/fhandler_random.cc index 587a6375d..0f3cfe4e2 100644 --- a/winsup/cygwin/fhandler_random.cc +++ b/winsup/cygwin/fhandler_random.cc @@ -178,7 +178,7 @@ fhandler_dev_random::close () } int -fhandler_dev_random::dup (fhandler_base *child) +fhandler_dev_random::dup (fhandler_base *child, int) { fhandler_dev_random *fhr = (fhandler_dev_random *) child; fhr->crypt_prov = (HCRYPTPROV)NULL; diff --git a/winsup/cygwin/fhandler_raw.cc b/winsup/cygwin/fhandler_raw.cc index 3c67e0a43..9d19b83ea 100644 --- a/winsup/cygwin/fhandler_raw.cc +++ b/winsup/cygwin/fhandler_raw.cc @@ -81,9 +81,9 @@ fhandler_dev_raw::open (int flags, mode_t) } int -fhandler_dev_raw::dup (fhandler_base *child) +fhandler_dev_raw::dup (fhandler_base *child, int flags) { - int ret = fhandler_base::dup (child); + int ret = fhandler_base::dup (child, flags); if (!ret) { diff --git a/winsup/cygwin/fhandler_registry.cc b/winsup/cygwin/fhandler_registry.cc index 500fb3a84..c8d1cd5f5 100644 --- a/winsup/cygwin/fhandler_registry.cc +++ b/winsup/cygwin/fhandler_registry.cc @@ -1026,12 +1026,12 @@ open_key (const char *name, REGSAM access, DWORD wow64, bool isValue) } int -fhandler_registry::dup (fhandler_base *child) +fhandler_registry::dup (fhandler_base *child, int flags) { debug_printf ("here"); fhandler_registry *fhs = (fhandler_registry *) child; - int ret = fhandler_virtual::dup (fhs); + int ret = fhandler_virtual::dup (fhs, flags); /* Pseudo registry handles can't be duplicated using DuplicateHandle. Therefore those fhandlers are marked with the nohandle flag. This allows fhandler_base::dup to succeed as usual for nohandle fhandlers. diff --git a/winsup/cygwin/fhandler_serial.cc b/winsup/cygwin/fhandler_serial.cc index b8b5c2158..f4be47985 100644 --- a/winsup/cygwin/fhandler_serial.cc +++ b/winsup/cygwin/fhandler_serial.cc @@ -1172,9 +1172,9 @@ fhandler_serial::fixup_after_exec () } int -fhandler_serial::dup (fhandler_base *child) +fhandler_serial::dup (fhandler_base *child, int flags) { fhandler_serial *fhc = (fhandler_serial *) child; fhc->overlapped_setup (); - return fhandler_base::dup (child); + return fhandler_base::dup (child, flags); } diff --git a/winsup/cygwin/fhandler_socket.cc b/winsup/cygwin/fhandler_socket.cc index 30c7237ad..4d8673a4a 100644 --- a/winsup/cygwin/fhandler_socket.cc +++ b/winsup/cygwin/fhandler_socket.cc @@ -750,7 +750,7 @@ fhandler_socket::fixup_after_exec () } int -fhandler_socket::dup (fhandler_base *child) +fhandler_socket::dup (fhandler_base *child, int flags) { debug_printf ("here"); fhandler_socket *fhs = (fhandler_socket *) child; @@ -777,7 +777,7 @@ fhandler_socket::dup (fhandler_base *child) } if (!need_fixup_before ()) { - int ret = fhandler_base::dup (child); + int ret = fhandler_base::dup (child, flags); if (ret) { NtClose (fhs->wsock_evt); diff --git a/winsup/cygwin/fhandler_tape.cc b/winsup/cygwin/fhandler_tape.cc index 3f35ade52..4bb2ec772 100644 --- a/winsup/cygwin/fhandler_tape.cc +++ b/winsup/cygwin/fhandler_tape.cc @@ -1444,7 +1444,7 @@ fhandler_dev_tape::fstat (struct __stat64 *buf) } int -fhandler_dev_tape::dup (fhandler_base *child) +fhandler_dev_tape::dup (fhandler_base *child, int flags) { lock (-1); fhandler_dev_tape *fh = (fhandler_dev_tape *) child; @@ -1468,7 +1468,7 @@ fhandler_dev_tape::dup (fhandler_base *child) __seterrno (); return unlock (-1); } - return unlock (fhandler_dev_raw::dup (child)); + return unlock (fhandler_dev_raw::dup (child, flags)); } void diff --git a/winsup/cygwin/fhandler_termios.cc b/winsup/cygwin/fhandler_termios.cc index 4575ede94..41e4ff7f9 100644 --- a/winsup/cygwin/fhandler_termios.cc +++ b/winsup/cygwin/fhandler_termios.cc @@ -21,6 +21,8 @@ details. */ #include "cygtls.h" #include "ntdll.h" +fhandler_termios *fhandler_termios::last; + /* Common functions shared by tty/console */ void @@ -411,11 +413,13 @@ fhandler_termios::tcgetsid () } int -fhandler_termios::ioctl_termios (int cmd, int arg) +fhandler_termios::ioctl (int cmd, void *varg) { if (cmd != TIOCSCTTY) return 1; /* Not handled by this function */ + int arg = (int) varg; + if (arg != 0 && arg != 1) { set_errno (EINVAL); @@ -431,6 +435,6 @@ fhandler_termios::ioctl_termios (int cmd, int arg) } myself->ctty = -1; - myself->set_ctty (tc (), 0, this); + myself->set_ctty (this, 0); return 0; } diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc index d5ebec94a..aee5b806f 100644 --- a/winsup/cygwin/fhandler_tty.cc +++ b/winsup/cygwin/fhandler_tty.cc @@ -539,7 +539,7 @@ void fhandler_pty_slave::open_setup (int flags) { set_flags ((flags & ~O_TEXT) | O_BINARY); - myself->set_ctty (get_ttyp (), flags, this); + myself->set_ctty (this, flags); cygheap->manage_console_count ("fhandler_pty_slave::open_setup", 1); report_tty_counts (this, "opened", ""); } @@ -614,7 +614,7 @@ fhandler_pty_slave::write (const void *ptr, size_t len) if (bg <= bg_eof) return (ssize_t) bg; - termios_printf ("tty%d, write(%x, %d)", get_unit (), ptr, len); + termios_printf ("pty%d, write(%x, %d)", get_unit (), ptr, len); push_process_state process_state (PID_TTYOU); @@ -891,15 +891,16 @@ out: } int -fhandler_pty_slave::dup (fhandler_base *child) +fhandler_pty_slave::dup (fhandler_base *child, int flags) { + myself->set_ctty (this, flags); cygheap->manage_console_count ("fhandler_pty_slave::dup", 1); report_tty_counts (child, "duped slave", ""); return 0; } int -fhandler_pty_master::dup (fhandler_base *child) +fhandler_pty_master::dup (fhandler_base *child, int) { report_tty_counts (child, "duped master", ""); return 0; @@ -947,7 +948,7 @@ int fhandler_pty_slave::ioctl (unsigned int cmd, void *arg) { termios_printf ("ioctl (%x)", cmd); - int res = ioctl_termios (cmd, (int) arg); + int res = fhandler_termios::ioctl (cmd, arg); if (res <= 0) return res; @@ -1184,37 +1185,34 @@ errout: /******************************************************* fhandler_pty_master */ -fhandler_pty_master::fhandler_pty_master () - : fhandler_pty_common (), pktmode (0), need_nl (0), dwProcessId (0) +fhandler_pty_master::fhandler_pty_master (int unit) + : fhandler_pty_common (), pktmode (0), master_ctl (NULL), + master_thread (NULL), from_master (NULL), to_master (NULL), + dwProcessId (0), need_nl (0) { + if (unit >= 0) + dev ().parse (DEV_TTYM_MAJOR, unit); + else if (!setup ()) + dev ().parse (FH_ERROR); } int fhandler_pty_master::open (int flags, mode_t) { - /* Note that allocate returns with the tty lock set if it was successful. */ - int unit = cygwin_shared->tty.allocate (); - if (unit < 0) - return 0; - - dev().parse (DEV_TTYM_MAJOR, unit); - if (!setup ()) - { - lock_ttys::release (); - return 0; - } - lock_ttys::release (); - set_flags ((flags & ~O_TEXT) | O_BINARY); set_open_status (); - dwProcessId = GetCurrentProcessId (); - - char buf[sizeof ("opened pty master for ttyNNNNNNNNNNN")]; - __small_sprintf (buf, "opened pty master for tty%d", get_unit ()); - report_tty_counts (this, buf, ""); return 1; } +void +fhandler_pty_master::open_setup (int flags) +{ + set_flags ((flags & ~O_TEXT) | O_BINARY); + char buf[sizeof ("opened pty master for ptyNNNNNNNNNNN")]; + __small_sprintf (buf, "opened pty master for pty%d", get_unit ()); + report_tty_counts (this, buf, ""); +} + _off64_t fhandler_pty_common::lseek (_off64_t, int) { @@ -1225,7 +1223,7 @@ fhandler_pty_common::lseek (_off64_t, int) int fhandler_pty_common::close () { - termios_printf ("tty%d <%p,%p> closing", get_unit (), get_handle (), get_output_handle ()); + termios_printf ("pty%d <%p,%p> closing", get_unit (), get_handle (), get_output_handle ()); if (!ForceCloseHandle (input_mutex)) termios_printf ("CloseHandle (input_mutex<%p>), %E", input_mutex); if (!ForceCloseHandle (output_mutex)) @@ -1245,6 +1243,8 @@ void fhandler_pty_master::cleanup () { report_tty_counts (this, "closing master", ""); + if (archetype) + from_master = to_master = NULL; } int @@ -1272,11 +1272,14 @@ fhandler_pty_master::close () CloseHandle (master_ctl); master_thread->detach (); } - if (!ForceCloseHandle (from_master)) - termios_printf ("error closing from_master %p, %E", from_master); - if (!ForceCloseHandle (to_master)) - termios_printf ("error closing from_master %p, %E", to_master); } + + if (!ForceCloseHandle (from_master)) + termios_printf ("error closing from_master %p, %E", from_master); + if (!ForceCloseHandle (to_master)) + termios_printf ("error closing from_master %p, %E", to_master); + from_master = to_master = NULL; + fhandler_pty_common::close (); if (hExeced || get_ttyp ()->master_pid != myself->pid) @@ -1287,6 +1290,15 @@ fhandler_pty_master::close () return 0; } +/* This is just to catch error conditions. Since the constructor + ctually opens some handles, and stat() does not open an fd, they need + to be closed when the fhandler goes away. */ +fhandler_pty_master::~fhandler_pty_master () +{ + if (from_master && to_master) + close_with_arch (); +} + ssize_t __stdcall fhandler_pty_master::write (const void *ptr, size_t len) { @@ -1361,7 +1373,7 @@ fhandler_pty_master::tcflush (int queue) int fhandler_pty_master::ioctl (unsigned int cmd, void *arg) { - int res = ioctl_termios (cmd, (int) arg); + int res = fhandler_termios::ioctl (cmd, arg); if (res <= 0) return res; @@ -1408,7 +1420,7 @@ fhandler_pty_master::ptsname () { static char buf[TTY_NAME_MAX]; - __small_sprintf (buf, "/dev/tty%d", get_unit ()); + __small_sprintf (buf, "/dev/pty%d", get_unit ()); return buf; } @@ -1587,32 +1599,27 @@ fhandler_pty_master::setup () security_descriptor sd; SECURITY_ATTRIBUTES sa = { sizeof (SECURITY_ATTRIBUTES), NULL, TRUE }; - tty& t = *cygwin_shared->tty[get_unit ()]; - _tc = (tty_min *)&t; + /* Find an unallocated pty to use. */ + int unit = cygwin_shared->tty.allocate (from_master, get_output_handle ()); + if (unit < 0) + return false; + + ProtectHandle1 (get_output_handle (), to_pty); + + tty& t = *cygwin_shared->tty[unit]; + _tc = (tty_min *) &t; tcinit (true); /* Set termios information. Force initialization. */ const char *errstr = NULL; DWORD pipe_mode = PIPE_NOWAIT; - /* Create communication pipes */ - char pipename[sizeof("ptyNNNN-from-master")]; - __small_sprintf (pipename, "pty%d-from-master", get_unit ()); - res = fhandler_pipe::create_selectable (&sec_none, from_master, - get_output_handle (), 128 * 1024, - pipename); - if (res) - { - errstr = "input pipe"; - goto err; - } - - ProtectHandle1 (get_output_handle (), to_pty); if (!SetNamedPipeHandleState (get_output_handle (), &pipe_mode, NULL, NULL)) termios_printf ("can't set output_handle(%p) to non-blocking mode", get_output_handle ()); - __small_sprintf (pipename, "pty%d-to-master", get_unit ()); + char pipename[sizeof("ptyNNNN-from-master")]; + __small_sprintf (pipename, "pty%d-to-master", unit); res = fhandler_pipe::create_selectable (&sec_none, get_io_handle (), to_master, 128 * 1024, pipename); if (res) @@ -1622,7 +1629,6 @@ fhandler_pty_master::setup () } ProtectHandle1 (get_io_handle (), from_pty); - need_nl = 0; /* Create security attribute. Default permissions are 0620. */ sd.malloc (sizeof (SECURITY_DESCRIPTOR)); @@ -1642,18 +1648,18 @@ fhandler_pty_master::setup () goto err; char buf[MAX_PATH]; - errstr = shared_name (buf, OUTPUT_MUTEX, t.get_unit ()); + errstr = shared_name (buf, OUTPUT_MUTEX, unit); if (!(output_mutex = CreateMutex (&sa, FALSE, buf))) goto err; - errstr = shared_name (buf, INPUT_MUTEX, t.get_unit ()); + errstr = shared_name (buf, INPUT_MUTEX, unit); if (!(input_mutex = CreateMutex (&sa, FALSE, buf))) goto err; /* Create master control pipe which allows the master to duplicate the pty pipe handles to processes which deserve it. */ __small_sprintf (buf, "\\\\.\\pipe\\cygwin-%S-pty%d-master-ctl", - &installation_key, get_unit ()); + &installation_key, unit); master_ctl = CreateNamedPipe (buf, PIPE_ACCESS_DUPLEX, PIPE_WAIT | PIPE_TYPE_MESSAGE | PIPE_READMODE_MESSAGE, 1, 4096, 4096, @@ -1676,7 +1682,9 @@ fhandler_pty_master::setup () t.winsize.ws_row = 25; t.master_pid = myself->pid; - termios_printf ("tty%d opened - from_pty %p, to_pty %p", t.get_unit (), + dev ().parse (DEV_TTYM_MAJOR, unit); + + termios_printf ("this %p, pty%d opened - from_pty %p, to_pty %p", this, unit, get_io_handle (), get_output_handle ()); return true; @@ -1690,8 +1698,7 @@ err: close_maybe (from_master); close_maybe (to_master); close_maybe (master_ctl); - termios_printf ("tty%d open failed - failed to create %s", t.get_unit (), - errstr); + termios_printf ("pty%d open failed - failed to create %s", unit, errstr); return false; } diff --git a/winsup/cygwin/fhandler_virtual.cc b/winsup/cygwin/fhandler_virtual.cc index f767d5dbd..6bc13b51e 100644 --- a/winsup/cygwin/fhandler_virtual.cc +++ b/winsup/cygwin/fhandler_virtual.cc @@ -152,9 +152,9 @@ fhandler_virtual::lseek (_off64_t offset, int whence) } int -fhandler_virtual::dup (fhandler_base * child) +fhandler_virtual::dup (fhandler_base * child, int flags) { - int ret = fhandler_base::dup (child); + int ret = fhandler_base::dup (child, flags); if (!ret) { diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc index 45583fb76..7d05445f9 100644 --- a/winsup/cygwin/path.cc +++ b/winsup/cygwin/path.cc @@ -1118,6 +1118,12 @@ out: if (saw_symlinks) set_has_symlinks (); + if (opt & PC_OPEN) + path_flags |= PATH_OPEN; + + if (opt & PC_CTTY) + path_flags |= PATH_CTTY; + if ((opt & PC_POSIX)) { if (tail < path_end && tail > path_copy + 1) diff --git a/winsup/cygwin/path.h b/winsup/cygwin/path.h index 439bfd264..6b6dc5d3b 100644 --- a/winsup/cygwin/path.h +++ b/winsup/cygwin/path.h @@ -51,6 +51,8 @@ enum pathconv_arg PC_NULLEMPTY = 0x0020, PC_POSIX = 0x0080, PC_NOWARN = 0x0100, + PC_OPEN = 0x0200, /* use open semantics */ + PC_CTTY = 0x0400, /* could later be used as ctty */ PC_KEEP_HANDLE = 0x00400000, PC_NO_ACCESS_CHECK = 0x00800000 }; @@ -74,6 +76,8 @@ enum path_types PATH_IHASH = MOUNT_IHASH, PATH_ALL_EXEC = (PATH_CYGWIN_EXEC | PATH_EXEC), PATH_NO_ACCESS_CHECK = PC_NO_ACCESS_CHECK, + PATH_CTTY = 0x00400000, /* could later be used as ctty */ + PATH_OPEN = 0x00800000, /* use open semantics */ PATH_LNK = 0x01000000, PATH_TEXT = 0x02000000, PATH_REP = 0x04000000, @@ -111,7 +115,7 @@ public: CloseHandle (hdl); set (NULL); } - inline void dup (path_conv_handle &pch) + inline void dup (const path_conv_handle &pch) { if (!DuplicateHandle (GetCurrentProcess (), pch.handle (), GetCurrentProcess (), &hdl, @@ -175,6 +179,8 @@ class path_conv int is_lnk_special () const {return is_fs_device () || isfifo () || is_lnk_symlink ();} int issocket () const {return dev.is_device (FH_UNIX);} int iscygexec () const {return path_flags & PATH_CYGWIN_EXEC;} + int isopen () const {return path_flags & PATH_OPEN;} + int isctty_capable () const {return path_flags & PATH_CTTY;} void set_cygexec (bool isset) { if (isset) @@ -276,7 +282,7 @@ class path_conv PWCHAR get_wide_win32_path (PWCHAR wc); operator DWORD &() {return fileattr;} operator int () {return fileattr; } - path_conv &operator =(path_conv& pc) + path_conv &operator =(const path_conv& pc) { memcpy (this, &pc, sizeof pc); path = cstrdup (pc.path); diff --git a/winsup/cygwin/pinfo.cc b/winsup/cygwin/pinfo.cc index 4e63e238d..dd7bb817c 100644 --- a/winsup/cygwin/pinfo.cc +++ b/winsup/cygwin/pinfo.cc @@ -372,13 +372,14 @@ _pinfo::_ctty (char *buf) return buf; } -void -_pinfo::set_ctty (tty_min *tc, int flags, fhandler_termios *fh) +bool +_pinfo::set_ctty (fhandler_termios *fh, int flags) { - debug_printf ("old %s, ctty device number %p, tc->ntty device number %p flags & O_NOCTTY %p", __ctty (), ctty, tc->ntty, flags & O_NOCTTY); - if ((ctty <= 0 || ctty == tc->ntty) && !(flags & O_NOCTTY)) + tty_min& tc = *fh->tc (); + debug_printf ("old %s, ctty device number %p, tc.ntty device number %p flags & O_NOCTTY %p", __ctty (), ctty, tc.ntty, flags & O_NOCTTY); + if (fh && &tc && (ctty <= 0 || ctty == tc.ntty) && !(flags & O_NOCTTY)) { - ctty = tc->ntty; + ctty = tc.ntty; if (cygheap->ctty != fh->archetype) { debug_printf ("cygheap->ctty %p, archetype %p", cygheap->ctty, fh->archetype); @@ -402,34 +403,35 @@ _pinfo::set_ctty (tty_min *tc, int flags, fhandler_termios *fh) lock_ttys here; syscall_printf ("attaching %s sid %d, pid %d, pgid %d, tty->pgid %d, tty->sid %d", - __ctty (), sid, pid, pgid, tc->getpgid (), tc->getsid ()); + __ctty (), sid, pid, pgid, tc.getpgid (), tc.getsid ()); if (!cygwin_finished_initializing && !myself->cygstarted - && myself->pgid == myself->pid && tc->getpgid () && tc->getsid ()) + && myself->pgid == myself->pid && tc.getpgid () && tc.getsid ()) { - myself->pgid = tc->getpgid (); - myself->sid = tc->getsid (); + myself->pgid = tc.getpgid (); + myself->sid = tc.getsid (); } - pinfo p (tc->getsid ()); + pinfo p (tc.getsid ()); if (sid == pid && (!p || p->pid == pid || !p->exists ())) { #ifdef DEBUGGING debug_printf ("resetting %s sid. Was %d, now %d. pgid was %d, now %d.", - __ctty (), tc->getsid (), sid, tc->getpgid (), pgid); + __ctty (), tc.getsid (), sid, tc.getpgid (), pgid); #else paranoid_printf ("resetting %s sid. Was %d, now %d. pgid was %d, now %d.", - __ctty (), tc->getsid (), sid, tc->getpgid (), pgid); + __ctty (), tc.getsid (), sid, tc.getpgid (), pgid); #endif /* We are the session leader */ - tc->setsid (sid); - tc->setpgid (pgid); + tc.setsid (sid); + tc.setpgid (pgid); } else - sid = tc->getsid (); - if (tc->getpgid () == 0) - tc->setpgid (pgid); + sid = tc.getsid (); + if (tc.getpgid () == 0) + tc.setpgid (pgid); } - debug_printf ("cygheap->ctty now %p, archetype %p", cygheap->ctty, fh->archetype); + debug_printf ("cygheap->ctty now %p, archetype %p", cygheap->ctty, fh->archetype); + return ctty > 0; } /* Test to determine if a process really exists and is processing signals. diff --git a/winsup/cygwin/pinfo.h b/winsup/cygwin/pinfo.h index b6f337191..746f99350 100644 --- a/winsup/cygwin/pinfo.h +++ b/winsup/cygwin/pinfo.h @@ -110,7 +110,7 @@ public: char *root (size_t &); char *cwd (size_t &); char *cmdline (size_t &); - void set_ctty (class tty_min *, int, class fhandler_termios *); + bool set_ctty (class fhandler_termios *, int); HANDLE dup_proc_pipe (HANDLE) __attribute__ ((regparm(2))); void sync_proc_pipe (); bool alert_parent (char); diff --git a/winsup/cygwin/pipe.cc b/winsup/cygwin/pipe.cc index 1dd2c3251..aa56cf531 100644 --- a/winsup/cygwin/pipe.cc +++ b/winsup/cygwin/pipe.cc @@ -86,10 +86,10 @@ fhandler_pipe::open (int flags, mode_t mode) set_errno (EACCES); return 0; } - *this = *(fhandler_pipe *) cfd; + cfd->copyto (this); set_io_handle (NULL); pc.reset_conv_handle (); - if (!cfd->dup (this)) + if (!cfd->dup (this, flags)) return 1; return 0; } @@ -172,13 +172,13 @@ fhandler_pipe::get_proc_fd_name (char *buf) } int -fhandler_pipe::dup (fhandler_base *child) +fhandler_pipe::dup (fhandler_base *child, int flags) { fhandler_pipe *ftp = (fhandler_pipe *) child; ftp->set_popen_pid (0); int res; - if (get_handle () && fhandler_base_overlapped::dup (child)) + if (get_handle () && fhandler_base_overlapped::dup (child, flags)) res = -1; else res = 0; diff --git a/winsup/cygwin/syscalls.cc b/winsup/cygwin/syscalls.cc index 4ab14471f..bb0513aa8 100644 --- a/winsup/cygwin/syscalls.cc +++ b/winsup/cygwin/syscalls.cc @@ -1134,12 +1134,16 @@ open (const char *unix_path, int flags, ...) a change in behavior that implements linux functionality: opening a tty should not automatically cause it to become the controlling tty for the process. */ - if (0 && fd > 2) - flags |= O_NOCTTY; - if (!(fh = build_fh_name (unix_path, - (flags & (O_NOFOLLOW | O_EXCL)) - ? PC_SYM_NOFOLLOW : PC_SYM_FOLLOW, - stat_suffixes))) + int opt = PC_OPEN | ((flags & (O_NOFOLLOW | O_EXCL)) + ? PC_SYM_NOFOLLOW : PC_SYM_FOLLOW); + if (!(flags & O_NOCTTY)&& fd > 2) + { + flags |= O_NOCTTY; + opt |= PC_CTTY; /* flag that, if opened, this fhandler could + later be capable of being a controlling + terminal if /dev/tty is opened. */ + } + if (!(fh = build_fh_name (unix_path, opt, stat_suffixes))) res = -1; // errno already set else if ((flags & O_NOFOLLOW) && fh->issymlink ()) { @@ -1600,10 +1604,9 @@ stat_worker (path_conv &pc, struct __stat64 *buf) if (!buf->st_ino) buf->st_ino = fh->get_ino (); if (!buf->st_dev) - buf->st_dev = fh->is_dev_tty () ? FH_TTY : fh->get_device (); + buf->st_dev = fh->get_device (); if (!buf->st_rdev) buf->st_rdev = buf->st_dev; -debug_printf ("is_dev_tty %d, st_dev %p\n", fh->is_dev_tty (), buf->st_dev); } delete fh; } @@ -1620,7 +1623,8 @@ extern "C" int stat64 (const char *name, struct __stat64 *buf) { syscall_printf ("entering"); - path_conv pc (name, PC_SYM_FOLLOW | PC_POSIX | PC_KEEP_HANDLE, stat_suffixes); + path_conv pc (name, PC_SYM_FOLLOW | PC_POSIX | PC_KEEP_HANDLE, + stat_suffixes); return stat_worker (pc, buf); } diff --git a/winsup/cygwin/tty.cc b/winsup/cygwin/tty.cc index 30879b0e3..15b973c0b 100644 --- a/winsup/cygwin/tty.cc +++ b/winsup/cygwin/tty.cc @@ -102,7 +102,7 @@ tty_list::connect (int ttynum) } if (!ttys[ttynum].exists ()) { - termios_printf ("tty %d was not allocated", ttynum); + termios_printf ("pty %d was not allocated", ttynum); set_errno (ENXIO); return -1; } @@ -124,14 +124,14 @@ tty_list::init () Return tty number or -1 if error. */ int -tty_list::allocate () +tty_list::allocate (HANDLE& r, HANDLE& w) { lock_ttys here; int freetty = -1; tty *t = NULL; for (int i = 0; i < NTTYS; i++) - if (!ttys[i].exists ()) + if (ttys[i].not_allocated (r, w)) { t = ttys + i; t->init (); @@ -140,38 +140,46 @@ tty_list::allocate () break; } - if (freetty < 0) - system_printf ("No tty allocated"); + if (freetty >= 0) + termios_printf ("pty%d allocated", freetty); else { - termios_printf ("tty%d allocated", freetty); - here.dont_release (); /* exit with mutex still held -- caller has more work to do */ + system_printf ("No pty allocated"); + r = w = NULL; } + return freetty; } +bool +tty::not_allocated (HANDLE& r, HANDLE& w) +{ + /* Attempt to open the from-master side of the tty. If it is accessible + then it exists although we may not have privileges to actually use it. */ + char pipename[sizeof("ptyNNNN-from-master")]; + __small_sprintf (pipename, "pty%d-from-master", get_unit ()); + /* fhandler_pipe::create_selectable returns 0 when creation succeeds */ + return fhandler_pipe::create_selectable (&sec_none, r, w, 128 * 1024, + pipename) == 0; +} + bool tty::exists () { - /* Attempt to open the from-master side of the tty. If it is accessible - then it exists although it may have been privileges to actually use it. */ - char pipename[sizeof("ttyNNNN-from-master")]; - __small_sprintf (pipename, "tty%d-from-master", get_unit ()); HANDLE r, w; - int res = fhandler_pipe::create_selectable (&sec_none_nih, r, w, 0, pipename); - if (res) - return true; + bool res; + if (!not_allocated (r, w)) + res = true; - CloseHandle (r); - CloseHandle (w); - - HANDLE h = open_output_mutex (READ_CONTROL); - if (h) + else { - CloseHandle (h); - return true; + /* Handles are left open when not_allocated finds a non-open "tty" */ + CloseHandle (r); + CloseHandle (w); + res = false; } - return slave_alive (); + debug_printf ("exists %d", res); + return res; } bool diff --git a/winsup/cygwin/tty.h b/winsup/cygwin/tty.h index 4a981b5f4..deb8e207b 100644 --- a/winsup/cygwin/tty.h +++ b/winsup/cygwin/tty.h @@ -14,7 +14,7 @@ details. */ #define INP_BUFFER_SIZE 256 #define OUT_BUFFER_SIZE 256 -#define NTTYS 128 +#define NTTYS 64 #define real_tty_attached(p) ((p)->ctty >= 0 && !iscons_dev ((p)->ctty)) /* Input/Output/ioctl events */ @@ -107,6 +107,7 @@ public: inline HANDLE open_input_mutex (ACCESS_MASK access) { return open_mutex (INPUT_MUTEX, access); } bool exists (); + bool not_allocated (HANDLE&, HANDLE&); void set_master_closed () {master_pid = -1;} static void __stdcall create_master (int); static void __stdcall init_session (); @@ -120,7 +121,7 @@ class tty_list public: tty * operator [](int n) {return ttys + device::minor (n);} - int allocate (); /* allocate a pty */ + int allocate (HANDLE& r, HANDLE& w); /* allocate a pty */ int connect (int); void init (); tty_min *get_cttyp ();