diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 1383f9d68..f9dd5c76d 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,18 @@ +2013-07-15 Corinna Vinschen + + Remove /dev/mem, /dev/kmem, /dev/port support. + * Makefile.in (DLL_OFILES): Drop fhandler_mem.o. + (fhandler_mem_CFLAGS): Remove rule. + * devices.in (enum fh_devices): Remove FH_MEM, FH_KMEM and FH_PORT. + * devices.cc: Regenerate. + * dtable.cc (fh_alloc): Drop handling for FH_MEM, FH_KMEM and FH_PORT. + * fhandler.h (class fhandler_dev_mem): Remove. + * fhandler_mem.cc: Remove file. + * globals.cc (ro_u_pmem): Remove. + * mmap.cc (fhandler_dev_mem::mmap): Remove. + (fhandler_dev_mem::munmap): Remove. + (fhandler_dev_mem::fixup_mmap_after_fork): Remove. + 2013-07-15 Corinna Vinschen * include/cygwin/version.h (CYGWIN_VERSION_DLL_MINOR): Bump to 22. diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in index 76906c942..b47330379 100644 --- a/winsup/cygwin/Makefile.in +++ b/winsup/cygwin/Makefile.in @@ -158,7 +158,7 @@ DLL_OFILES:=advapi32.o arc4random.o assert.o autoload.o base64.o bsdlib.o ctype. devices.o dir.o dlfcn.o dll_init.o dtable.o environ.o errno.o exceptions.o \ exec.o external.o fcntl.o fenv.o fhandler.o fhandler_clipboard.o \ fhandler_console.o fhandler_dev.o fhandler_disk_file.o fhandler_dsp.o \ - fhandler_fifo.o fhandler_floppy.o fhandler_mailslot.o fhandler_mem.o \ + fhandler_fifo.o fhandler_floppy.o fhandler_mailslot.o \ fhandler_netdrive.o fhandler_nodevice.o fhandler_proc.o \ fhandler_process.o fhandler_procnet.o fhandler_procsys.o \ fhandler_procsysvipc.o fhandler_random.o fhandler_raw.o \ @@ -286,7 +286,6 @@ fhandler_console_CFLAGS:=-fomit-frame-pointer fhandler_disk_file_CFLAGS:=-fomit-frame-pointer fhandler_dsp_CFLAGS:=-fomit-frame-pointer fhandler_floppy_CFLAGS:=-fomit-frame-pointer -fhandler_mem_CFLAGS:=-fomit-frame-pointer fhandler_netdrive_CFLAGS:=-fomit-frame-pointer fhandler_proc_CFLAGS:=-fomit-frame-pointer fhandler_process_CFLAGS:=-fomit-frame-pointer diff --git a/winsup/cygwin/devices.cc b/winsup/cygwin/devices.cc index f2694c283..9f37ef827 100644 --- a/winsup/cygwin/devices.cc +++ b/winsup/cygwin/devices.cc @@ -244,9 +244,7 @@ const _RDATA device dev_storage[] = {"/dev/fd14", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 14)), "\\Device\\Floppy14", exists_ntdev, S_IFBLK, true}, {"/dev/fd15", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 15)), "\\Device\\Floppy15", exists_ntdev, S_IFBLK, true}, {"/dev/full", BRACK(FH_FULL), "/dev/full", exists, S_IFCHR, true}, - {"/dev/kmem", BRACK(FH_KMEM), "/dev/kmem", exists, S_IFCHR, true}, {"/dev/kmsg", BRACK(FH_KMSG), "\\Device\\MailSlot\\cygwin\\dev\\kmsg", exists_ntdev, S_IFCHR, true}, - {"/dev/mem", BRACK(FH_MEM), "/dev/mem", exists, S_IFCHR, true}, {"/dev/nst0", BRACK(FHDEV(DEV_TAPE_MAJOR, 128)), "\\Device\\Tape0", exists_ntdev, S_IFBLK, true}, {"/dev/nst1", BRACK(FHDEV(DEV_TAPE_MAJOR, 129)), "\\Device\\Tape1", exists_ntdev, S_IFBLK, true}, {"/dev/nst2", BRACK(FHDEV(DEV_TAPE_MAJOR, 130)), "\\Device\\Tape2", exists_ntdev, S_IFBLK, true}, @@ -376,7 +374,6 @@ const _RDATA device dev_storage[] = {"/dev/nst126", BRACK(FHDEV(DEV_TAPE_MAJOR, 254)), "\\Device\\Tape126", exists_ntdev, S_IFBLK, true}, {"/dev/nst127", BRACK(FHDEV(DEV_TAPE_MAJOR, 255)), "\\Device\\Tape127", exists_ntdev, S_IFBLK, true}, {"/dev/null", BRACK(FH_NULL), "\\Device\\Null", exists_ntdev, S_IFCHR, true}, - {"/dev/port", BRACK(FH_PORT), "/dev/port", exists, S_IFCHR, true}, {"/dev/ptmx", BRACK(FH_PTMX), "/dev/ptmx", exists, S_IFCHR, true}, {"/dev/pty0", BRACK(FHDEV(DEV_PTYS_MAJOR, 0)), "/dev/pty0", exists_pty, S_IFCHR, true}, {"/dev/pty1", BRACK(FHDEV(DEV_PTYS_MAJOR, 1)), "/dev/pty1", exists_pty, S_IFCHR, true}, @@ -2789,9 +2786,9 @@ const _RDATA device dev_storage[] = const device *cons_dev = dev_storage + 20; const device *console_dev = dev_storage + 84; -const device *ptym_dev = dev_storage + 2580; -const device *ptys_dev = dev_storage + 237; -const device *urandom_dev = dev_storage + 2575; +const device *ptym_dev = dev_storage + 2577; +const device *ptys_dev = dev_storage + 234; +const device *urandom_dev = dev_storage + 2572; static KR_device_t KR_find_keyword (const char *KR_keyword, int KR_length) @@ -2821,7 +2818,7 @@ return NULL; if (strncmp (KR_keyword, ":pipe", 5) == 0) { { -return dev_storage + 2579; +return dev_storage + 2576; } } @@ -2836,7 +2833,7 @@ return NULL; if (strncmp (KR_keyword, ":fifo", 5) == 0) { { -return dev_storage + 2578; +return dev_storage + 2575; } } @@ -2860,7 +2857,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym9", 6) == 0) { { -return dev_storage + 2589; +return dev_storage + 2586; } } @@ -2875,7 +2872,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym8", 6) == 0) { { -return dev_storage + 2588; +return dev_storage + 2585; } } @@ -2890,7 +2887,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym7", 6) == 0) { { -return dev_storage + 2587; +return dev_storage + 2584; } } @@ -2905,7 +2902,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym6", 6) == 0) { { -return dev_storage + 2586; +return dev_storage + 2583; } } @@ -2920,7 +2917,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym5", 6) == 0) { { -return dev_storage + 2585; +return dev_storage + 2582; } } @@ -2935,7 +2932,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym4", 6) == 0) { { -return dev_storage + 2584; +return dev_storage + 2581; } } @@ -2950,7 +2947,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym3", 6) == 0) { { -return dev_storage + 2583; +return dev_storage + 2580; } } @@ -2965,7 +2962,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym2", 6) == 0) { { -return dev_storage + 2582; +return dev_storage + 2579; } } @@ -2980,7 +2977,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym1", 6) == 0) { { -return dev_storage + 2581; +return dev_storage + 2578; } } @@ -2995,7 +2992,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym0", 6) == 0) { { -return dev_storage + 2580; +return dev_storage + 2577; } } @@ -3022,7 +3019,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym63", 7) == 0) { { -return dev_storage + 2643; +return dev_storage + 2640; } } @@ -3037,7 +3034,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym62", 7) == 0) { { -return dev_storage + 2642; +return dev_storage + 2639; } } @@ -3052,7 +3049,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym61", 7) == 0) { { -return dev_storage + 2641; +return dev_storage + 2638; } } @@ -3067,7 +3064,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym60", 7) == 0) { { -return dev_storage + 2640; +return dev_storage + 2637; } } @@ -3091,7 +3088,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym59", 7) == 0) { { -return dev_storage + 2639; +return dev_storage + 2636; } } @@ -3106,7 +3103,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym58", 7) == 0) { { -return dev_storage + 2638; +return dev_storage + 2635; } } @@ -3121,7 +3118,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym57", 7) == 0) { { -return dev_storage + 2637; +return dev_storage + 2634; } } @@ -3136,7 +3133,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym56", 7) == 0) { { -return dev_storage + 2636; +return dev_storage + 2633; } } @@ -3151,7 +3148,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym55", 7) == 0) { { -return dev_storage + 2635; +return dev_storage + 2632; } } @@ -3166,7 +3163,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym54", 7) == 0) { { -return dev_storage + 2634; +return dev_storage + 2631; } } @@ -3181,7 +3178,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym53", 7) == 0) { { -return dev_storage + 2633; +return dev_storage + 2630; } } @@ -3196,7 +3193,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym52", 7) == 0) { { -return dev_storage + 2632; +return dev_storage + 2629; } } @@ -3211,7 +3208,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym51", 7) == 0) { { -return dev_storage + 2631; +return dev_storage + 2628; } } @@ -3226,7 +3223,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym50", 7) == 0) { { -return dev_storage + 2630; +return dev_storage + 2627; } } @@ -3250,7 +3247,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym49", 7) == 0) { { -return dev_storage + 2629; +return dev_storage + 2626; } } @@ -3265,7 +3262,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym48", 7) == 0) { { -return dev_storage + 2628; +return dev_storage + 2625; } } @@ -3280,7 +3277,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym47", 7) == 0) { { -return dev_storage + 2627; +return dev_storage + 2624; } } @@ -3295,7 +3292,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym46", 7) == 0) { { -return dev_storage + 2626; +return dev_storage + 2623; } } @@ -3310,7 +3307,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym45", 7) == 0) { { -return dev_storage + 2625; +return dev_storage + 2622; } } @@ -3325,7 +3322,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym44", 7) == 0) { { -return dev_storage + 2624; +return dev_storage + 2621; } } @@ -3340,7 +3337,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym43", 7) == 0) { { -return dev_storage + 2623; +return dev_storage + 2620; } } @@ -3355,7 +3352,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym42", 7) == 0) { { -return dev_storage + 2622; +return dev_storage + 2619; } } @@ -3370,7 +3367,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym41", 7) == 0) { { -return dev_storage + 2621; +return dev_storage + 2618; } } @@ -3385,7 +3382,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym40", 7) == 0) { { -return dev_storage + 2620; +return dev_storage + 2617; } } @@ -3409,7 +3406,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym39", 7) == 0) { { -return dev_storage + 2619; +return dev_storage + 2616; } } @@ -3424,7 +3421,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym38", 7) == 0) { { -return dev_storage + 2618; +return dev_storage + 2615; } } @@ -3439,7 +3436,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym37", 7) == 0) { { -return dev_storage + 2617; +return dev_storage + 2614; } } @@ -3454,7 +3451,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym36", 7) == 0) { { -return dev_storage + 2616; +return dev_storage + 2613; } } @@ -3469,7 +3466,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym35", 7) == 0) { { -return dev_storage + 2615; +return dev_storage + 2612; } } @@ -3484,7 +3481,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym34", 7) == 0) { { -return dev_storage + 2614; +return dev_storage + 2611; } } @@ -3499,7 +3496,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym33", 7) == 0) { { -return dev_storage + 2613; +return dev_storage + 2610; } } @@ -3514,7 +3511,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym32", 7) == 0) { { -return dev_storage + 2612; +return dev_storage + 2609; } } @@ -3529,7 +3526,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym31", 7) == 0) { { -return dev_storage + 2611; +return dev_storage + 2608; } } @@ -3544,7 +3541,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym30", 7) == 0) { { -return dev_storage + 2610; +return dev_storage + 2607; } } @@ -3568,7 +3565,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym29", 7) == 0) { { -return dev_storage + 2609; +return dev_storage + 2606; } } @@ -3583,7 +3580,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym28", 7) == 0) { { -return dev_storage + 2608; +return dev_storage + 2605; } } @@ -3598,7 +3595,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym27", 7) == 0) { { -return dev_storage + 2607; +return dev_storage + 2604; } } @@ -3613,7 +3610,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym26", 7) == 0) { { -return dev_storage + 2606; +return dev_storage + 2603; } } @@ -3628,7 +3625,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym25", 7) == 0) { { -return dev_storage + 2605; +return dev_storage + 2602; } } @@ -3643,7 +3640,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym24", 7) == 0) { { -return dev_storage + 2604; +return dev_storage + 2601; } } @@ -3658,7 +3655,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym23", 7) == 0) { { -return dev_storage + 2603; +return dev_storage + 2600; } } @@ -3673,7 +3670,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym22", 7) == 0) { { -return dev_storage + 2602; +return dev_storage + 2599; } } @@ -3688,7 +3685,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym21", 7) == 0) { { -return dev_storage + 2601; +return dev_storage + 2598; } } @@ -3703,7 +3700,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym20", 7) == 0) { { -return dev_storage + 2600; +return dev_storage + 2597; } } @@ -3727,7 +3724,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym19", 7) == 0) { { -return dev_storage + 2599; +return dev_storage + 2596; } } @@ -3742,7 +3739,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym18", 7) == 0) { { -return dev_storage + 2598; +return dev_storage + 2595; } } @@ -3757,7 +3754,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym17", 7) == 0) { { -return dev_storage + 2597; +return dev_storage + 2594; } } @@ -3772,7 +3769,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym16", 7) == 0) { { -return dev_storage + 2596; +return dev_storage + 2593; } } @@ -3787,7 +3784,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym15", 7) == 0) { { -return dev_storage + 2595; +return dev_storage + 2592; } } @@ -3802,7 +3799,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym14", 7) == 0) { { -return dev_storage + 2594; +return dev_storage + 2591; } } @@ -3817,7 +3814,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym13", 7) == 0) { { -return dev_storage + 2593; +return dev_storage + 2590; } } @@ -3832,7 +3829,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym12", 7) == 0) { { -return dev_storage + 2592; +return dev_storage + 2589; } } @@ -3847,7 +3844,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym11", 7) == 0) { { -return dev_storage + 2591; +return dev_storage + 2588; } } @@ -3862,7 +3859,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym10", 7) == 0) { { -return dev_storage + 2590; +return dev_storage + 2587; } } @@ -3892,7 +3889,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz", 8) == 0) { { -return dev_storage + 343; +return dev_storage + 340; } } @@ -3910,7 +3907,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty", 8) == 0) { { -return dev_storage + 2510; +return dev_storage + 2507; } } @@ -3925,7 +3922,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy", 8) == 0) { { -return dev_storage + 342; +return dev_storage + 339; } } @@ -3946,7 +3943,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx", 8) == 0) { { -return dev_storage + 341; +return dev_storage + 338; } } @@ -3961,7 +3958,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw", 8) == 0) { { -return dev_storage + 340; +return dev_storage + 337; } } @@ -3976,7 +3973,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv", 8) == 0) { { -return dev_storage + 339; +return dev_storage + 336; } } @@ -3991,7 +3988,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu", 8) == 0) { { -return dev_storage + 338; +return dev_storage + 335; } } @@ -4006,7 +4003,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt", 8) == 0) { { -return dev_storage + 337; +return dev_storage + 334; } } @@ -4021,7 +4018,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds", 8) == 0) { { -return dev_storage + 336; +return dev_storage + 333; } } @@ -4036,7 +4033,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr", 8) == 0) { { -return dev_storage + 335; +return dev_storage + 332; } } @@ -4051,7 +4048,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq", 8) == 0) { { -return dev_storage + 334; +return dev_storage + 331; } } @@ -4069,7 +4066,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp", 8) == 0) { { -return dev_storage + 333; +return dev_storage + 330; } } @@ -4105,7 +4102,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo", 8) == 0) { { -return dev_storage + 332; +return dev_storage + 329; } } @@ -4120,7 +4117,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn", 8) == 0) { { -return dev_storage + 331; +return dev_storage + 328; } } @@ -4132,39 +4129,15 @@ return NULL; } } case 'm': - switch (KR_keyword [5]) + if (strncmp (KR_keyword, "/dev/sdm", 8) == 0) { - case 's': - if (strncmp (KR_keyword, "/dev/sdm", 8) == 0) - { { -return dev_storage + 330; +return dev_storage + 327; } - } - else - { -{ -return NULL; - -} - } - case 'm': - if (strncmp (KR_keyword, "/dev/mem", 8) == 0) - { -{ -return dev_storage + 105; - -} - } - else - { -{ -return NULL; - -} - } - default: + } + else + { { return NULL; @@ -4174,7 +4147,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl", 8) == 0) { { -return dev_storage + 329; +return dev_storage + 326; } } @@ -4189,7 +4162,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk", 8) == 0) { { -return dev_storage + 328; +return dev_storage + 325; } } @@ -4204,7 +4177,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj", 8) == 0) { { -return dev_storage + 327; +return dev_storage + 324; } } @@ -4219,7 +4192,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi", 8) == 0) { { -return dev_storage + 326; +return dev_storage + 323; } } @@ -4234,7 +4207,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh", 8) == 0) { { -return dev_storage + 325; +return dev_storage + 322; } } @@ -4249,7 +4222,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg", 8) == 0) { { -return dev_storage + 324; +return dev_storage + 321; } } @@ -4264,7 +4237,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf", 8) == 0) { { -return dev_storage + 323; +return dev_storage + 320; } } @@ -4279,7 +4252,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde", 8) == 0) { { -return dev_storage + 322; +return dev_storage + 319; } } @@ -4294,7 +4267,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd", 8) == 0) { { -return dev_storage + 321; +return dev_storage + 318; } } @@ -4309,7 +4282,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc", 8) == 0) { { -return dev_storage + 320; +return dev_storage + 317; } } @@ -4324,7 +4297,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb", 8) == 0) { { -return dev_storage + 319; +return dev_storage + 316; } } @@ -4339,7 +4312,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda", 8) == 0) { { -return dev_storage + 318; +return dev_storage + 315; } } @@ -4357,7 +4330,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st9", 8) == 0) { { -return dev_storage + 2391; +return dev_storage + 2388; } } @@ -4372,7 +4345,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr9", 8) == 0) { { -return dev_storage + 2375; +return dev_storage + 2372; } } @@ -4411,7 +4384,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st8", 8) == 0) { { -return dev_storage + 2390; +return dev_storage + 2387; } } @@ -4426,7 +4399,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr8", 8) == 0) { { -return dev_storage + 2374; +return dev_storage + 2371; } } @@ -4465,7 +4438,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st7", 8) == 0) { { -return dev_storage + 2389; +return dev_storage + 2386; } } @@ -4480,7 +4453,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr7", 8) == 0) { { -return dev_storage + 2373; +return dev_storage + 2370; } } @@ -4519,7 +4492,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st6", 8) == 0) { { -return dev_storage + 2388; +return dev_storage + 2385; } } @@ -4534,7 +4507,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr6", 8) == 0) { { -return dev_storage + 2372; +return dev_storage + 2369; } } @@ -4573,7 +4546,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st5", 8) == 0) { { -return dev_storage + 2387; +return dev_storage + 2384; } } @@ -4588,7 +4561,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr5", 8) == 0) { { -return dev_storage + 2371; +return dev_storage + 2368; } } @@ -4627,7 +4600,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st4", 8) == 0) { { -return dev_storage + 2386; +return dev_storage + 2383; } } @@ -4642,7 +4615,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr4", 8) == 0) { { -return dev_storage + 2370; +return dev_storage + 2367; } } @@ -4681,7 +4654,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st3", 8) == 0) { { -return dev_storage + 2385; +return dev_storage + 2382; } } @@ -4696,7 +4669,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr3", 8) == 0) { { -return dev_storage + 2369; +return dev_storage + 2366; } } @@ -4735,7 +4708,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st2", 8) == 0) { { -return dev_storage + 2384; +return dev_storage + 2381; } } @@ -4750,7 +4723,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr2", 8) == 0) { { -return dev_storage + 2368; +return dev_storage + 2365; } } @@ -4789,7 +4762,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st1", 8) == 0) { { -return dev_storage + 2383; +return dev_storage + 2380; } } @@ -4804,7 +4777,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr1", 8) == 0) { { -return dev_storage + 2367; +return dev_storage + 2364; } } @@ -4843,7 +4816,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st0", 8) == 0) { { -return dev_storage + 2382; +return dev_storage + 2379; } } @@ -4858,7 +4831,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr0", 8) == 0) { { -return dev_storage + 2366; +return dev_storage + 2363; } } @@ -4906,7 +4879,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz9", 9) == 0) { { -return dev_storage + 727; +return dev_storage + 724; } } @@ -4921,7 +4894,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz8", 9) == 0) { { -return dev_storage + 726; +return dev_storage + 723; } } @@ -4936,7 +4909,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz7", 9) == 0) { { -return dev_storage + 725; +return dev_storage + 722; } } @@ -4951,7 +4924,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz6", 9) == 0) { { -return dev_storage + 724; +return dev_storage + 721; } } @@ -4966,7 +4939,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz5", 9) == 0) { { -return dev_storage + 723; +return dev_storage + 720; } } @@ -4981,7 +4954,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz4", 9) == 0) { { -return dev_storage + 722; +return dev_storage + 719; } } @@ -4996,7 +4969,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz3", 9) == 0) { { -return dev_storage + 721; +return dev_storage + 718; } } @@ -5011,7 +4984,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz2", 9) == 0) { { -return dev_storage + 720; +return dev_storage + 717; } } @@ -5026,7 +4999,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz1", 9) == 0) { { -return dev_storage + 719; +return dev_storage + 716; } } @@ -5053,7 +5026,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy9", 9) == 0) { { -return dev_storage + 712; +return dev_storage + 709; } } @@ -5068,7 +5041,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty9", 9) == 0) { { -return dev_storage + 246; +return dev_storage + 243; } } @@ -5092,7 +5065,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy8", 9) == 0) { { -return dev_storage + 711; +return dev_storage + 708; } } @@ -5107,7 +5080,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty8", 9) == 0) { { -return dev_storage + 245; +return dev_storage + 242; } } @@ -5131,7 +5104,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy7", 9) == 0) { { -return dev_storage + 710; +return dev_storage + 707; } } @@ -5146,7 +5119,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty7", 9) == 0) { { -return dev_storage + 244; +return dev_storage + 241; } } @@ -5170,7 +5143,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy6", 9) == 0) { { -return dev_storage + 709; +return dev_storage + 706; } } @@ -5185,7 +5158,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty6", 9) == 0) { { -return dev_storage + 243; +return dev_storage + 240; } } @@ -5209,7 +5182,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy5", 9) == 0) { { -return dev_storage + 708; +return dev_storage + 705; } } @@ -5224,7 +5197,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty5", 9) == 0) { { -return dev_storage + 242; +return dev_storage + 239; } } @@ -5248,7 +5221,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy4", 9) == 0) { { -return dev_storage + 707; +return dev_storage + 704; } } @@ -5263,7 +5236,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty4", 9) == 0) { { -return dev_storage + 241; +return dev_storage + 238; } } @@ -5287,7 +5260,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy3", 9) == 0) { { -return dev_storage + 706; +return dev_storage + 703; } } @@ -5302,7 +5275,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty3", 9) == 0) { { -return dev_storage + 240; +return dev_storage + 237; } } @@ -5326,7 +5299,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy2", 9) == 0) { { -return dev_storage + 705; +return dev_storage + 702; } } @@ -5341,7 +5314,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty2", 9) == 0) { { -return dev_storage + 239; +return dev_storage + 236; } } @@ -5365,7 +5338,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy1", 9) == 0) { { -return dev_storage + 704; +return dev_storage + 701; } } @@ -5380,7 +5353,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty1", 9) == 0) { { -return dev_storage + 238; +return dev_storage + 235; } } @@ -5401,7 +5374,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty0", 9) == 0) { { -return dev_storage + 237; +return dev_storage + 234; } } @@ -5425,7 +5398,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx9", 9) == 0) { { -return dev_storage + 697; +return dev_storage + 694; } } @@ -5440,7 +5413,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx8", 9) == 0) { { -return dev_storage + 696; +return dev_storage + 693; } } @@ -5455,7 +5428,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx7", 9) == 0) { { -return dev_storage + 695; +return dev_storage + 692; } } @@ -5470,7 +5443,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx6", 9) == 0) { { -return dev_storage + 694; +return dev_storage + 691; } } @@ -5485,7 +5458,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx5", 9) == 0) { { -return dev_storage + 693; +return dev_storage + 690; } } @@ -5500,7 +5473,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx4", 9) == 0) { { -return dev_storage + 692; +return dev_storage + 689; } } @@ -5515,7 +5488,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx3", 9) == 0) { { -return dev_storage + 691; +return dev_storage + 688; } } @@ -5530,7 +5503,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx2", 9) == 0) { { -return dev_storage + 690; +return dev_storage + 687; } } @@ -5545,7 +5518,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx1", 9) == 0) { { -return dev_storage + 689; +return dev_storage + 686; } } @@ -5569,7 +5542,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw9", 9) == 0) { { -return dev_storage + 682; +return dev_storage + 679; } } @@ -5584,7 +5557,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw8", 9) == 0) { { -return dev_storage + 681; +return dev_storage + 678; } } @@ -5599,7 +5572,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw7", 9) == 0) { { -return dev_storage + 680; +return dev_storage + 677; } } @@ -5614,7 +5587,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw6", 9) == 0) { { -return dev_storage + 679; +return dev_storage + 676; } } @@ -5629,7 +5602,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw5", 9) == 0) { { -return dev_storage + 678; +return dev_storage + 675; } } @@ -5644,7 +5617,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw4", 9) == 0) { { -return dev_storage + 677; +return dev_storage + 674; } } @@ -5659,7 +5632,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw3", 9) == 0) { { -return dev_storage + 676; +return dev_storage + 673; } } @@ -5674,7 +5647,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw2", 9) == 0) { { -return dev_storage + 675; +return dev_storage + 672; } } @@ -5689,7 +5662,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw1", 9) == 0) { { -return dev_storage + 674; +return dev_storage + 671; } } @@ -5713,7 +5686,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv9", 9) == 0) { { -return dev_storage + 667; +return dev_storage + 664; } } @@ -5728,7 +5701,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv8", 9) == 0) { { -return dev_storage + 666; +return dev_storage + 663; } } @@ -5743,7 +5716,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv7", 9) == 0) { { -return dev_storage + 665; +return dev_storage + 662; } } @@ -5758,7 +5731,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv6", 9) == 0) { { -return dev_storage + 664; +return dev_storage + 661; } } @@ -5773,7 +5746,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv5", 9) == 0) { { -return dev_storage + 663; +return dev_storage + 660; } } @@ -5788,7 +5761,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv4", 9) == 0) { { -return dev_storage + 662; +return dev_storage + 659; } } @@ -5803,7 +5776,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv3", 9) == 0) { { -return dev_storage + 661; +return dev_storage + 658; } } @@ -5818,7 +5791,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv2", 9) == 0) { { -return dev_storage + 660; +return dev_storage + 657; } } @@ -5833,7 +5806,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv1", 9) == 0) { { -return dev_storage + 659; +return dev_storage + 656; } } @@ -5857,7 +5830,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu9", 9) == 0) { { -return dev_storage + 652; +return dev_storage + 649; } } @@ -5872,7 +5845,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu8", 9) == 0) { { -return dev_storage + 651; +return dev_storage + 648; } } @@ -5887,7 +5860,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu7", 9) == 0) { { -return dev_storage + 650; +return dev_storage + 647; } } @@ -5902,7 +5875,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu6", 9) == 0) { { -return dev_storage + 649; +return dev_storage + 646; } } @@ -5917,7 +5890,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu5", 9) == 0) { { -return dev_storage + 648; +return dev_storage + 645; } } @@ -5932,7 +5905,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu4", 9) == 0) { { -return dev_storage + 647; +return dev_storage + 644; } } @@ -5947,7 +5920,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu3", 9) == 0) { { -return dev_storage + 646; +return dev_storage + 643; } } @@ -5962,7 +5935,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu2", 9) == 0) { { -return dev_storage + 645; +return dev_storage + 642; } } @@ -5977,7 +5950,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu1", 9) == 0) { { -return dev_storage + 644; +return dev_storage + 641; } } @@ -6004,7 +5977,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt9", 9) == 0) { { -return dev_storage + 637; +return dev_storage + 634; } } @@ -6019,7 +5992,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst9", 9) == 0) { { -return dev_storage + 115; +return dev_storage + 113; } } @@ -6043,7 +6016,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt8", 9) == 0) { { -return dev_storage + 636; +return dev_storage + 633; } } @@ -6058,7 +6031,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst8", 9) == 0) { { -return dev_storage + 114; +return dev_storage + 112; } } @@ -6082,7 +6055,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt7", 9) == 0) { { -return dev_storage + 635; +return dev_storage + 632; } } @@ -6097,7 +6070,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst7", 9) == 0) { { -return dev_storage + 113; +return dev_storage + 111; } } @@ -6121,7 +6094,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt6", 9) == 0) { { -return dev_storage + 634; +return dev_storage + 631; } } @@ -6136,7 +6109,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst6", 9) == 0) { { -return dev_storage + 112; +return dev_storage + 110; } } @@ -6160,7 +6133,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt5", 9) == 0) { { -return dev_storage + 633; +return dev_storage + 630; } } @@ -6175,7 +6148,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst5", 9) == 0) { { -return dev_storage + 111; +return dev_storage + 109; } } @@ -6199,7 +6172,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt4", 9) == 0) { { -return dev_storage + 632; +return dev_storage + 629; } } @@ -6214,7 +6187,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst4", 9) == 0) { { -return dev_storage + 110; +return dev_storage + 108; } } @@ -6238,7 +6211,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt3", 9) == 0) { { -return dev_storage + 631; +return dev_storage + 628; } } @@ -6253,7 +6226,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst3", 9) == 0) { { -return dev_storage + 109; +return dev_storage + 107; } } @@ -6277,7 +6250,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt2", 9) == 0) { { -return dev_storage + 630; +return dev_storage + 627; } } @@ -6292,7 +6265,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst2", 9) == 0) { { -return dev_storage + 108; +return dev_storage + 106; } } @@ -6316,7 +6289,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt1", 9) == 0) { { -return dev_storage + 629; +return dev_storage + 626; } } @@ -6331,7 +6304,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst1", 9) == 0) { { -return dev_storage + 107; +return dev_storage + 105; } } @@ -6352,7 +6325,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst0", 9) == 0) { { -return dev_storage + 106; +return dev_storage + 104; } } @@ -6376,7 +6349,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/kmsg", 9) == 0) { { -return dev_storage + 104; +return dev_storage + 103; } } @@ -6391,7 +6364,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds9", 9) == 0) { { -return dev_storage + 622; +return dev_storage + 619; } } @@ -6406,7 +6379,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds8", 9) == 0) { { -return dev_storage + 621; +return dev_storage + 618; } } @@ -6421,7 +6394,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds7", 9) == 0) { { -return dev_storage + 620; +return dev_storage + 617; } } @@ -6436,7 +6409,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds6", 9) == 0) { { -return dev_storage + 619; +return dev_storage + 616; } } @@ -6451,7 +6424,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds5", 9) == 0) { { -return dev_storage + 618; +return dev_storage + 615; } } @@ -6466,7 +6439,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds4", 9) == 0) { { -return dev_storage + 617; +return dev_storage + 614; } } @@ -6481,7 +6454,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds3", 9) == 0) { { -return dev_storage + 616; +return dev_storage + 613; } } @@ -6496,7 +6469,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds2", 9) == 0) { { -return dev_storage + 615; +return dev_storage + 612; } } @@ -6511,7 +6484,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds1", 9) == 0) { { -return dev_storage + 614; +return dev_storage + 611; } } @@ -6531,26 +6504,11 @@ return NULL; case 'r': switch (KR_keyword [8]) { - case 't': - if (strncmp (KR_keyword, "/dev/port", 9) == 0) - { -{ -return dev_storage + 235; - -} - } - else - { -{ -return NULL; - -} - } case 'o': if (strncmp (KR_keyword, "/dev/zero", 9) == 0) { { -return dev_storage + 2577; +return dev_storage + 2574; } } @@ -6565,7 +6523,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr9", 9) == 0) { { -return dev_storage + 607; +return dev_storage + 604; } } @@ -6580,7 +6538,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr8", 9) == 0) { { -return dev_storage + 606; +return dev_storage + 603; } } @@ -6595,7 +6553,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr7", 9) == 0) { { -return dev_storage + 605; +return dev_storage + 602; } } @@ -6610,7 +6568,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr6", 9) == 0) { { -return dev_storage + 604; +return dev_storage + 601; } } @@ -6625,7 +6583,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr5", 9) == 0) { { -return dev_storage + 603; +return dev_storage + 600; } } @@ -6640,7 +6598,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr4", 9) == 0) { { -return dev_storage + 602; +return dev_storage + 599; } } @@ -6655,7 +6613,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr3", 9) == 0) { { -return dev_storage + 601; +return dev_storage + 598; } } @@ -6670,7 +6628,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr2", 9) == 0) { { -return dev_storage + 600; +return dev_storage + 597; } } @@ -6685,7 +6643,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr1", 9) == 0) { { -return dev_storage + 599; +return dev_storage + 596; } } @@ -6709,7 +6667,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq9", 9) == 0) { { -return dev_storage + 592; +return dev_storage + 589; } } @@ -6724,7 +6682,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq8", 9) == 0) { { -return dev_storage + 591; +return dev_storage + 588; } } @@ -6739,7 +6697,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq7", 9) == 0) { { -return dev_storage + 590; +return dev_storage + 587; } } @@ -6754,7 +6712,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq6", 9) == 0) { { -return dev_storage + 589; +return dev_storage + 586; } } @@ -6769,7 +6727,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq5", 9) == 0) { { -return dev_storage + 588; +return dev_storage + 585; } } @@ -6784,7 +6742,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq4", 9) == 0) { { -return dev_storage + 587; +return dev_storage + 584; } } @@ -6799,7 +6757,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq3", 9) == 0) { { -return dev_storage + 586; +return dev_storage + 583; } } @@ -6814,7 +6772,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq2", 9) == 0) { { -return dev_storage + 585; +return dev_storage + 582; } } @@ -6829,7 +6787,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq1", 9) == 0) { { -return dev_storage + 584; +return dev_storage + 581; } } @@ -6853,7 +6811,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp9", 9) == 0) { { -return dev_storage + 577; +return dev_storage + 574; } } @@ -6868,7 +6826,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp8", 9) == 0) { { -return dev_storage + 576; +return dev_storage + 573; } } @@ -6883,7 +6841,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp7", 9) == 0) { { -return dev_storage + 575; +return dev_storage + 572; } } @@ -6898,7 +6856,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp6", 9) == 0) { { -return dev_storage + 574; +return dev_storage + 571; } } @@ -6913,7 +6871,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp5", 9) == 0) { { -return dev_storage + 573; +return dev_storage + 570; } } @@ -6928,7 +6886,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp4", 9) == 0) { { -return dev_storage + 572; +return dev_storage + 569; } } @@ -6943,7 +6901,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp3", 9) == 0) { { -return dev_storage + 571; +return dev_storage + 568; } } @@ -6958,7 +6916,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp2", 9) == 0) { { -return dev_storage + 570; +return dev_storage + 567; } } @@ -6973,7 +6931,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp1", 9) == 0) { { -return dev_storage + 569; +return dev_storage + 566; } } @@ -6997,7 +6955,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo9", 9) == 0) { { -return dev_storage + 562; +return dev_storage + 559; } } @@ -7012,7 +6970,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo8", 9) == 0) { { -return dev_storage + 561; +return dev_storage + 558; } } @@ -7027,7 +6985,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo7", 9) == 0) { { -return dev_storage + 560; +return dev_storage + 557; } } @@ -7042,7 +7000,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo6", 9) == 0) { { -return dev_storage + 559; +return dev_storage + 556; } } @@ -7057,7 +7015,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo5", 9) == 0) { { -return dev_storage + 558; +return dev_storage + 555; } } @@ -7072,7 +7030,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo4", 9) == 0) { { -return dev_storage + 557; +return dev_storage + 554; } } @@ -7087,7 +7045,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo3", 9) == 0) { { -return dev_storage + 556; +return dev_storage + 553; } } @@ -7102,7 +7060,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo2", 9) == 0) { { -return dev_storage + 555; +return dev_storage + 552; } } @@ -7117,7 +7075,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo1", 9) == 0) { { -return dev_storage + 554; +return dev_storage + 551; } } @@ -7141,7 +7099,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn9", 9) == 0) { { -return dev_storage + 547; +return dev_storage + 544; } } @@ -7156,7 +7114,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn8", 9) == 0) { { -return dev_storage + 546; +return dev_storage + 543; } } @@ -7171,7 +7129,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn7", 9) == 0) { { -return dev_storage + 545; +return dev_storage + 542; } } @@ -7186,7 +7144,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn6", 9) == 0) { { -return dev_storage + 544; +return dev_storage + 541; } } @@ -7201,7 +7159,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn5", 9) == 0) { { -return dev_storage + 543; +return dev_storage + 540; } } @@ -7216,7 +7174,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn4", 9) == 0) { { -return dev_storage + 542; +return dev_storage + 539; } } @@ -7231,7 +7189,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn3", 9) == 0) { { -return dev_storage + 541; +return dev_storage + 538; } } @@ -7246,7 +7204,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn2", 9) == 0) { { -return dev_storage + 540; +return dev_storage + 537; } } @@ -7261,7 +7219,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn1", 9) == 0) { { -return dev_storage + 539; +return dev_storage + 536; } } @@ -7288,7 +7246,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm9", 9) == 0) { { -return dev_storage + 532; +return dev_storage + 529; } } @@ -7303,7 +7261,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm8", 9) == 0) { { -return dev_storage + 531; +return dev_storage + 528; } } @@ -7318,7 +7276,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm7", 9) == 0) { { -return dev_storage + 530; +return dev_storage + 527; } } @@ -7333,7 +7291,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm6", 9) == 0) { { -return dev_storage + 529; +return dev_storage + 526; } } @@ -7348,7 +7306,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm5", 9) == 0) { { -return dev_storage + 528; +return dev_storage + 525; } } @@ -7363,7 +7321,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm4", 9) == 0) { { -return dev_storage + 527; +return dev_storage + 524; } } @@ -7378,7 +7336,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm3", 9) == 0) { { -return dev_storage + 526; +return dev_storage + 523; } } @@ -7393,7 +7351,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm2", 9) == 0) { { -return dev_storage + 525; +return dev_storage + 522; } } @@ -7408,7 +7366,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm1", 9) == 0) { { -return dev_storage + 524; +return dev_storage + 521; } } @@ -7429,7 +7387,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ptmx", 9) == 0) { { -return dev_storage + 236; +return dev_storage + 233; } } @@ -7600,7 +7558,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/null", 9) == 0) { { -return dev_storage + 234; +return dev_storage + 232; } } @@ -7636,7 +7594,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl9", 9) == 0) { { -return dev_storage + 517; +return dev_storage + 514; } } @@ -7651,7 +7609,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl8", 9) == 0) { { -return dev_storage + 516; +return dev_storage + 513; } } @@ -7666,7 +7624,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl7", 9) == 0) { { -return dev_storage + 515; +return dev_storage + 512; } } @@ -7681,7 +7639,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl6", 9) == 0) { { -return dev_storage + 514; +return dev_storage + 511; } } @@ -7696,7 +7654,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl5", 9) == 0) { { -return dev_storage + 513; +return dev_storage + 510; } } @@ -7711,7 +7669,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl4", 9) == 0) { { -return dev_storage + 512; +return dev_storage + 509; } } @@ -7726,7 +7684,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl3", 9) == 0) { { -return dev_storage + 511; +return dev_storage + 508; } } @@ -7741,7 +7699,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl2", 9) == 0) { { -return dev_storage + 510; +return dev_storage + 507; } } @@ -7756,7 +7714,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl1", 9) == 0) { { -return dev_storage + 509; +return dev_storage + 506; } } @@ -7780,7 +7738,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk9", 9) == 0) { { -return dev_storage + 502; +return dev_storage + 499; } } @@ -7795,7 +7753,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk8", 9) == 0) { { -return dev_storage + 501; +return dev_storage + 498; } } @@ -7810,7 +7768,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk7", 9) == 0) { { -return dev_storage + 500; +return dev_storage + 497; } } @@ -7825,7 +7783,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk6", 9) == 0) { { -return dev_storage + 499; +return dev_storage + 496; } } @@ -7840,7 +7798,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk5", 9) == 0) { { -return dev_storage + 498; +return dev_storage + 495; } } @@ -7855,7 +7813,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk4", 9) == 0) { { -return dev_storage + 497; +return dev_storage + 494; } } @@ -7870,7 +7828,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk3", 9) == 0) { { -return dev_storage + 496; +return dev_storage + 493; } } @@ -7885,7 +7843,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk2", 9) == 0) { { -return dev_storage + 495; +return dev_storage + 492; } } @@ -7900,7 +7858,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk1", 9) == 0) { { -return dev_storage + 494; +return dev_storage + 491; } } @@ -7924,7 +7882,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj9", 9) == 0) { { -return dev_storage + 487; +return dev_storage + 484; } } @@ -7939,7 +7897,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj8", 9) == 0) { { -return dev_storage + 486; +return dev_storage + 483; } } @@ -7954,7 +7912,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj7", 9) == 0) { { -return dev_storage + 485; +return dev_storage + 482; } } @@ -7969,7 +7927,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj6", 9) == 0) { { -return dev_storage + 484; +return dev_storage + 481; } } @@ -7984,7 +7942,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj5", 9) == 0) { { -return dev_storage + 483; +return dev_storage + 480; } } @@ -7999,7 +7957,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj4", 9) == 0) { { -return dev_storage + 482; +return dev_storage + 479; } } @@ -8014,7 +7972,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj3", 9) == 0) { { -return dev_storage + 481; +return dev_storage + 478; } } @@ -8029,7 +7987,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj2", 9) == 0) { { -return dev_storage + 480; +return dev_storage + 477; } } @@ -8044,7 +8002,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj1", 9) == 0) { { -return dev_storage + 479; +return dev_storage + 476; } } @@ -8068,7 +8026,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi9", 9) == 0) { { -return dev_storage + 472; +return dev_storage + 469; } } @@ -8083,7 +8041,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi8", 9) == 0) { { -return dev_storage + 471; +return dev_storage + 468; } } @@ -8098,7 +8056,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi7", 9) == 0) { { -return dev_storage + 470; +return dev_storage + 467; } } @@ -8113,7 +8071,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi6", 9) == 0) { { -return dev_storage + 469; +return dev_storage + 466; } } @@ -8128,7 +8086,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi5", 9) == 0) { { -return dev_storage + 468; +return dev_storage + 465; } } @@ -8143,7 +8101,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi4", 9) == 0) { { -return dev_storage + 467; +return dev_storage + 464; } } @@ -8158,7 +8116,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi3", 9) == 0) { { -return dev_storage + 466; +return dev_storage + 463; } } @@ -8173,7 +8131,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi2", 9) == 0) { { -return dev_storage + 465; +return dev_storage + 462; } } @@ -8188,7 +8146,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi1", 9) == 0) { { -return dev_storage + 464; +return dev_storage + 461; } } @@ -8212,7 +8170,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh9", 9) == 0) { { -return dev_storage + 457; +return dev_storage + 454; } } @@ -8227,7 +8185,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh8", 9) == 0) { { -return dev_storage + 456; +return dev_storage + 453; } } @@ -8242,7 +8200,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh7", 9) == 0) { { -return dev_storage + 455; +return dev_storage + 452; } } @@ -8257,7 +8215,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh6", 9) == 0) { { -return dev_storage + 454; +return dev_storage + 451; } } @@ -8272,7 +8230,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh5", 9) == 0) { { -return dev_storage + 453; +return dev_storage + 450; } } @@ -8287,7 +8245,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh4", 9) == 0) { { -return dev_storage + 452; +return dev_storage + 449; } } @@ -8302,7 +8260,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh3", 9) == 0) { { -return dev_storage + 451; +return dev_storage + 448; } } @@ -8317,7 +8275,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh2", 9) == 0) { { -return dev_storage + 450; +return dev_storage + 447; } } @@ -8332,7 +8290,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh1", 9) == 0) { { -return dev_storage + 449; +return dev_storage + 446; } } @@ -8356,7 +8314,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg9", 9) == 0) { { -return dev_storage + 442; +return dev_storage + 439; } } @@ -8371,7 +8329,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg8", 9) == 0) { { -return dev_storage + 441; +return dev_storage + 438; } } @@ -8386,7 +8344,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg7", 9) == 0) { { -return dev_storage + 440; +return dev_storage + 437; } } @@ -8401,7 +8359,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg6", 9) == 0) { { -return dev_storage + 439; +return dev_storage + 436; } } @@ -8416,7 +8374,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg5", 9) == 0) { { -return dev_storage + 438; +return dev_storage + 435; } } @@ -8431,7 +8389,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg4", 9) == 0) { { -return dev_storage + 437; +return dev_storage + 434; } } @@ -8446,7 +8404,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg3", 9) == 0) { { -return dev_storage + 436; +return dev_storage + 433; } } @@ -8461,7 +8419,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg2", 9) == 0) { { -return dev_storage + 435; +return dev_storage + 432; } } @@ -8476,7 +8434,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg1", 9) == 0) { { -return dev_storage + 434; +return dev_storage + 431; } } @@ -8500,7 +8458,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf9", 9) == 0) { { -return dev_storage + 427; +return dev_storage + 424; } } @@ -8515,7 +8473,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf8", 9) == 0) { { -return dev_storage + 426; +return dev_storage + 423; } } @@ -8530,7 +8488,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf7", 9) == 0) { { -return dev_storage + 425; +return dev_storage + 422; } } @@ -8545,7 +8503,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf6", 9) == 0) { { -return dev_storage + 424; +return dev_storage + 421; } } @@ -8560,7 +8518,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf5", 9) == 0) { { -return dev_storage + 423; +return dev_storage + 420; } } @@ -8575,7 +8533,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf4", 9) == 0) { { -return dev_storage + 422; +return dev_storage + 419; } } @@ -8590,7 +8548,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf3", 9) == 0) { { -return dev_storage + 421; +return dev_storage + 418; } } @@ -8605,7 +8563,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf2", 9) == 0) { { -return dev_storage + 420; +return dev_storage + 417; } } @@ -8620,7 +8578,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf1", 9) == 0) { { -return dev_storage + 419; +return dev_storage + 416; } } @@ -8640,26 +8598,11 @@ return NULL; case 'e': switch (KR_keyword [8]) { - case 'm': - if (strncmp (KR_keyword, "/dev/kmem", 9) == 0) - { -{ -return dev_storage + 103; - -} - } - else - { -{ -return NULL; - -} - } case '9': if (strncmp (KR_keyword, "/dev/sde9", 9) == 0) { { -return dev_storage + 412; +return dev_storage + 409; } } @@ -8674,7 +8617,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde8", 9) == 0) { { -return dev_storage + 411; +return dev_storage + 408; } } @@ -8689,7 +8632,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde7", 9) == 0) { { -return dev_storage + 410; +return dev_storage + 407; } } @@ -8704,7 +8647,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde6", 9) == 0) { { -return dev_storage + 409; +return dev_storage + 406; } } @@ -8719,7 +8662,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde5", 9) == 0) { { -return dev_storage + 408; +return dev_storage + 405; } } @@ -8734,7 +8677,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde4", 9) == 0) { { -return dev_storage + 407; +return dev_storage + 404; } } @@ -8749,7 +8692,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde3", 9) == 0) { { -return dev_storage + 406; +return dev_storage + 403; } } @@ -8764,7 +8707,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde2", 9) == 0) { { -return dev_storage + 405; +return dev_storage + 402; } } @@ -8779,7 +8722,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde1", 9) == 0) { { -return dev_storage + 404; +return dev_storage + 401; } } @@ -8803,7 +8746,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx", 9) == 0) { { -return dev_storage + 2005; +return dev_storage + 2002; } } @@ -8818,7 +8761,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw", 9) == 0) { { -return dev_storage + 2004; +return dev_storage + 2001; } } @@ -8833,7 +8776,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv", 9) == 0) { { -return dev_storage + 2003; +return dev_storage + 2000; } } @@ -8848,7 +8791,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu", 9) == 0) { { -return dev_storage + 2002; +return dev_storage + 1999; } } @@ -8863,7 +8806,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt", 9) == 0) { { -return dev_storage + 2001; +return dev_storage + 1998; } } @@ -8878,7 +8821,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds", 9) == 0) { { -return dev_storage + 2000; +return dev_storage + 1997; } } @@ -8893,7 +8836,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr", 9) == 0) { { -return dev_storage + 1999; +return dev_storage + 1996; } } @@ -8908,7 +8851,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq", 9) == 0) { { -return dev_storage + 1998; +return dev_storage + 1995; } } @@ -8923,7 +8866,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp", 9) == 0) { { -return dev_storage + 1997; +return dev_storage + 1994; } } @@ -8938,7 +8881,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo", 9) == 0) { { -return dev_storage + 1996; +return dev_storage + 1993; } } @@ -8953,7 +8896,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn", 9) == 0) { { -return dev_storage + 1995; +return dev_storage + 1992; } } @@ -8968,7 +8911,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm", 9) == 0) { { -return dev_storage + 1994; +return dev_storage + 1991; } } @@ -8983,7 +8926,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl", 9) == 0) { { -return dev_storage + 1993; +return dev_storage + 1990; } } @@ -8998,7 +8941,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk", 9) == 0) { { -return dev_storage + 1992; +return dev_storage + 1989; } } @@ -9013,7 +8956,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj", 9) == 0) { { -return dev_storage + 1991; +return dev_storage + 1988; } } @@ -9028,7 +8971,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi", 9) == 0) { { -return dev_storage + 1990; +return dev_storage + 1987; } } @@ -9043,7 +8986,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh", 9) == 0) { { -return dev_storage + 1989; +return dev_storage + 1986; } } @@ -9058,7 +9001,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg", 9) == 0) { { -return dev_storage + 1988; +return dev_storage + 1985; } } @@ -9073,7 +9016,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf", 9) == 0) { { -return dev_storage + 1987; +return dev_storage + 1984; } } @@ -9088,7 +9031,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde", 9) == 0) { { -return dev_storage + 1986; +return dev_storage + 1983; } } @@ -9103,7 +9046,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd", 9) == 0) { { -return dev_storage + 1985; +return dev_storage + 1982; } } @@ -9118,7 +9061,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc", 9) == 0) { { -return dev_storage + 1984; +return dev_storage + 1981; } } @@ -9133,7 +9076,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb", 9) == 0) { { -return dev_storage + 1983; +return dev_storage + 1980; } } @@ -9148,7 +9091,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda", 9) == 0) { { -return dev_storage + 1982; +return dev_storage + 1979; } } @@ -9166,7 +9109,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd9", 9) == 0) { { -return dev_storage + 397; +return dev_storage + 394; } } @@ -9181,7 +9124,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd9", 9) == 0) { { -return dev_storage + 311; +return dev_storage + 308; } } @@ -9205,7 +9148,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd8", 9) == 0) { { -return dev_storage + 396; +return dev_storage + 393; } } @@ -9220,7 +9163,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd8", 9) == 0) { { -return dev_storage + 310; +return dev_storage + 307; } } @@ -9244,7 +9187,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd7", 9) == 0) { { -return dev_storage + 395; +return dev_storage + 392; } } @@ -9259,7 +9202,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd7", 9) == 0) { { -return dev_storage + 309; +return dev_storage + 306; } } @@ -9283,7 +9226,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd6", 9) == 0) { { -return dev_storage + 394; +return dev_storage + 391; } } @@ -9298,7 +9241,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd6", 9) == 0) { { -return dev_storage + 308; +return dev_storage + 305; } } @@ -9322,7 +9265,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd5", 9) == 0) { { -return dev_storage + 393; +return dev_storage + 390; } } @@ -9337,7 +9280,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd5", 9) == 0) { { -return dev_storage + 307; +return dev_storage + 304; } } @@ -9361,7 +9304,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd4", 9) == 0) { { -return dev_storage + 392; +return dev_storage + 389; } } @@ -9376,7 +9319,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd4", 9) == 0) { { -return dev_storage + 306; +return dev_storage + 303; } } @@ -9400,7 +9343,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd3", 9) == 0) { { -return dev_storage + 391; +return dev_storage + 388; } } @@ -9415,7 +9358,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd3", 9) == 0) { { -return dev_storage + 305; +return dev_storage + 302; } } @@ -9439,7 +9382,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd2", 9) == 0) { { -return dev_storage + 390; +return dev_storage + 387; } } @@ -9454,7 +9397,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd2", 9) == 0) { { -return dev_storage + 304; +return dev_storage + 301; } } @@ -9478,7 +9421,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd1", 9) == 0) { { -return dev_storage + 389; +return dev_storage + 386; } } @@ -9493,7 +9436,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd1", 9) == 0) { { -return dev_storage + 303; +return dev_storage + 300; } } @@ -9514,7 +9457,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd0", 9) == 0) { { -return dev_storage + 302; +return dev_storage + 299; } } @@ -9538,7 +9481,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz", 9) == 0) { { -return dev_storage + 1591; +return dev_storage + 1588; } } @@ -9553,7 +9496,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy", 9) == 0) { { -return dev_storage + 1590; +return dev_storage + 1587; } } @@ -9568,7 +9511,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx", 9) == 0) { { -return dev_storage + 1589; +return dev_storage + 1586; } } @@ -9583,7 +9526,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw", 9) == 0) { { -return dev_storage + 1588; +return dev_storage + 1585; } } @@ -9598,7 +9541,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv", 9) == 0) { { -return dev_storage + 1587; +return dev_storage + 1584; } } @@ -9613,7 +9556,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu", 9) == 0) { { -return dev_storage + 1586; +return dev_storage + 1583; } } @@ -9628,7 +9571,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct", 9) == 0) { { -return dev_storage + 1585; +return dev_storage + 1582; } } @@ -9643,7 +9586,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs", 9) == 0) { { -return dev_storage + 1584; +return dev_storage + 1581; } } @@ -9658,7 +9601,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr", 9) == 0) { { -return dev_storage + 1583; +return dev_storage + 1580; } } @@ -9673,7 +9616,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq", 9) == 0) { { -return dev_storage + 1582; +return dev_storage + 1579; } } @@ -9688,7 +9631,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp", 9) == 0) { { -return dev_storage + 1581; +return dev_storage + 1578; } } @@ -9703,7 +9646,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco", 9) == 0) { { -return dev_storage + 1580; +return dev_storage + 1577; } } @@ -9718,7 +9661,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn", 9) == 0) { { -return dev_storage + 1579; +return dev_storage + 1576; } } @@ -9733,7 +9676,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm", 9) == 0) { { -return dev_storage + 1578; +return dev_storage + 1575; } } @@ -9748,7 +9691,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl", 9) == 0) { { -return dev_storage + 1577; +return dev_storage + 1574; } } @@ -9763,7 +9706,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck", 9) == 0) { { -return dev_storage + 1576; +return dev_storage + 1573; } } @@ -9778,7 +9721,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj", 9) == 0) { { -return dev_storage + 1575; +return dev_storage + 1572; } } @@ -9793,7 +9736,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci", 9) == 0) { { -return dev_storage + 1574; +return dev_storage + 1571; } } @@ -9808,7 +9751,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch", 9) == 0) { { -return dev_storage + 1573; +return dev_storage + 1570; } } @@ -9823,7 +9766,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg", 9) == 0) { { -return dev_storage + 1572; +return dev_storage + 1569; } } @@ -9838,7 +9781,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf", 9) == 0) { { -return dev_storage + 1571; +return dev_storage + 1568; } } @@ -9853,7 +9796,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce", 9) == 0) { { -return dev_storage + 1570; +return dev_storage + 1567; } } @@ -9868,7 +9811,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd", 9) == 0) { { -return dev_storage + 1569; +return dev_storage + 1566; } } @@ -9883,7 +9826,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc", 9) == 0) { { -return dev_storage + 1568; +return dev_storage + 1565; } } @@ -9898,7 +9841,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb", 9) == 0) { { -return dev_storage + 1567; +return dev_storage + 1564; } } @@ -9913,7 +9856,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca", 9) == 0) { { -return dev_storage + 1566; +return dev_storage + 1563; } } @@ -9928,7 +9871,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc9", 9) == 0) { { -return dev_storage + 382; +return dev_storage + 379; } } @@ -9943,7 +9886,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc8", 9) == 0) { { -return dev_storage + 381; +return dev_storage + 378; } } @@ -9958,7 +9901,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc7", 9) == 0) { { -return dev_storage + 380; +return dev_storage + 377; } } @@ -9973,7 +9916,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc6", 9) == 0) { { -return dev_storage + 379; +return dev_storage + 376; } } @@ -9988,7 +9931,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc5", 9) == 0) { { -return dev_storage + 378; +return dev_storage + 375; } } @@ -10003,7 +9946,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc4", 9) == 0) { { -return dev_storage + 377; +return dev_storage + 374; } } @@ -10018,7 +9961,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc3", 9) == 0) { { -return dev_storage + 376; +return dev_storage + 373; } } @@ -10033,7 +9976,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc2", 9) == 0) { { -return dev_storage + 375; +return dev_storage + 372; } } @@ -10048,7 +9991,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc1", 9) == 0) { { -return dev_storage + 374; +return dev_storage + 371; } } @@ -10072,7 +10015,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz", 9) == 0) { { -return dev_storage + 1175; +return dev_storage + 1172; } } @@ -10087,7 +10030,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby", 9) == 0) { { -return dev_storage + 1174; +return dev_storage + 1171; } } @@ -10102,7 +10045,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx", 9) == 0) { { -return dev_storage + 1173; +return dev_storage + 1170; } } @@ -10117,7 +10060,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw", 9) == 0) { { -return dev_storage + 1172; +return dev_storage + 1169; } } @@ -10132,7 +10075,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv", 9) == 0) { { -return dev_storage + 1171; +return dev_storage + 1168; } } @@ -10147,7 +10090,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu", 9) == 0) { { -return dev_storage + 1170; +return dev_storage + 1167; } } @@ -10162,7 +10105,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt", 9) == 0) { { -return dev_storage + 1169; +return dev_storage + 1166; } } @@ -10177,7 +10120,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs", 9) == 0) { { -return dev_storage + 1168; +return dev_storage + 1165; } } @@ -10192,7 +10135,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr", 9) == 0) { { -return dev_storage + 1167; +return dev_storage + 1164; } } @@ -10207,7 +10150,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq", 9) == 0) { { -return dev_storage + 1166; +return dev_storage + 1163; } } @@ -10222,7 +10165,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp", 9) == 0) { { -return dev_storage + 1165; +return dev_storage + 1162; } } @@ -10237,7 +10180,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo", 9) == 0) { { -return dev_storage + 1164; +return dev_storage + 1161; } } @@ -10252,7 +10195,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn", 9) == 0) { { -return dev_storage + 1163; +return dev_storage + 1160; } } @@ -10267,7 +10210,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm", 9) == 0) { { -return dev_storage + 1162; +return dev_storage + 1159; } } @@ -10282,7 +10225,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl", 9) == 0) { { -return dev_storage + 1161; +return dev_storage + 1158; } } @@ -10297,7 +10240,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk", 9) == 0) { { -return dev_storage + 1160; +return dev_storage + 1157; } } @@ -10312,7 +10255,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj", 9) == 0) { { -return dev_storage + 1159; +return dev_storage + 1156; } } @@ -10327,7 +10270,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi", 9) == 0) { { -return dev_storage + 1158; +return dev_storage + 1155; } } @@ -10342,7 +10285,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh", 9) == 0) { { -return dev_storage + 1157; +return dev_storage + 1154; } } @@ -10357,7 +10300,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg", 9) == 0) { { -return dev_storage + 1156; +return dev_storage + 1153; } } @@ -10372,7 +10315,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf", 9) == 0) { { -return dev_storage + 1155; +return dev_storage + 1152; } } @@ -10387,7 +10330,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe", 9) == 0) { { -return dev_storage + 1154; +return dev_storage + 1151; } } @@ -10402,7 +10345,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd", 9) == 0) { { -return dev_storage + 1153; +return dev_storage + 1150; } } @@ -10417,7 +10360,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc", 9) == 0) { { -return dev_storage + 1152; +return dev_storage + 1149; } } @@ -10432,7 +10375,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb", 9) == 0) { { -return dev_storage + 1151; +return dev_storage + 1148; } } @@ -10447,7 +10390,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba", 9) == 0) { { -return dev_storage + 1150; +return dev_storage + 1147; } } @@ -10462,7 +10405,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb9", 9) == 0) { { -return dev_storage + 367; +return dev_storage + 364; } } @@ -10477,7 +10420,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb8", 9) == 0) { { -return dev_storage + 366; +return dev_storage + 363; } } @@ -10492,7 +10435,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb7", 9) == 0) { { -return dev_storage + 365; +return dev_storage + 362; } } @@ -10507,7 +10450,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb6", 9) == 0) { { -return dev_storage + 364; +return dev_storage + 361; } } @@ -10522,7 +10465,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb5", 9) == 0) { { -return dev_storage + 363; +return dev_storage + 360; } } @@ -10537,7 +10480,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb4", 9) == 0) { { -return dev_storage + 362; +return dev_storage + 359; } } @@ -10552,7 +10495,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb3", 9) == 0) { { -return dev_storage + 361; +return dev_storage + 358; } } @@ -10567,7 +10510,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb2", 9) == 0) { { -return dev_storage + 360; +return dev_storage + 357; } } @@ -10582,7 +10525,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb1", 9) == 0) { { -return dev_storage + 359; +return dev_storage + 356; } } @@ -10606,7 +10549,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz", 9) == 0) { { -return dev_storage + 759; +return dev_storage + 756; } } @@ -10621,7 +10564,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday", 9) == 0) { { -return dev_storage + 758; +return dev_storage + 755; } } @@ -10636,7 +10579,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax", 9) == 0) { { -return dev_storage + 757; +return dev_storage + 754; } } @@ -10651,7 +10594,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw", 9) == 0) { { -return dev_storage + 756; +return dev_storage + 753; } } @@ -10666,7 +10609,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav", 9) == 0) { { -return dev_storage + 755; +return dev_storage + 752; } } @@ -10681,7 +10624,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau", 9) == 0) { { -return dev_storage + 754; +return dev_storage + 751; } } @@ -10696,7 +10639,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat", 9) == 0) { { -return dev_storage + 753; +return dev_storage + 750; } } @@ -10711,7 +10654,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas", 9) == 0) { { -return dev_storage + 752; +return dev_storage + 749; } } @@ -10726,7 +10669,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar", 9) == 0) { { -return dev_storage + 751; +return dev_storage + 748; } } @@ -10741,7 +10684,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq", 9) == 0) { { -return dev_storage + 750; +return dev_storage + 747; } } @@ -10756,7 +10699,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap", 9) == 0) { { -return dev_storage + 749; +return dev_storage + 746; } } @@ -10771,7 +10714,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao", 9) == 0) { { -return dev_storage + 748; +return dev_storage + 745; } } @@ -10786,7 +10729,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan", 9) == 0) { { -return dev_storage + 747; +return dev_storage + 744; } } @@ -10801,7 +10744,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam", 9) == 0) { { -return dev_storage + 746; +return dev_storage + 743; } } @@ -10816,7 +10759,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal", 9) == 0) { { -return dev_storage + 745; +return dev_storage + 742; } } @@ -10831,7 +10774,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak", 9) == 0) { { -return dev_storage + 744; +return dev_storage + 741; } } @@ -10846,7 +10789,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj", 9) == 0) { { -return dev_storage + 743; +return dev_storage + 740; } } @@ -10861,7 +10804,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai", 9) == 0) { { -return dev_storage + 742; +return dev_storage + 739; } } @@ -10876,7 +10819,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah", 9) == 0) { { -return dev_storage + 741; +return dev_storage + 738; } } @@ -10891,7 +10834,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag", 9) == 0) { { -return dev_storage + 740; +return dev_storage + 737; } } @@ -10906,7 +10849,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf", 9) == 0) { { -return dev_storage + 739; +return dev_storage + 736; } } @@ -10921,7 +10864,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae", 9) == 0) { { -return dev_storage + 738; +return dev_storage + 735; } } @@ -10936,7 +10879,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad", 9) == 0) { { -return dev_storage + 737; +return dev_storage + 734; } } @@ -10951,7 +10894,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac", 9) == 0) { { -return dev_storage + 736; +return dev_storage + 733; } } @@ -10966,7 +10909,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab", 9) == 0) { { -return dev_storage + 735; +return dev_storage + 732; } } @@ -10981,7 +10924,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa", 9) == 0) { { -return dev_storage + 734; +return dev_storage + 731; } } @@ -10996,7 +10939,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda9", 9) == 0) { { -return dev_storage + 352; +return dev_storage + 349; } } @@ -11011,7 +10954,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda8", 9) == 0) { { -return dev_storage + 351; +return dev_storage + 348; } } @@ -11026,7 +10969,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda7", 9) == 0) { { -return dev_storage + 350; +return dev_storage + 347; } } @@ -11041,7 +10984,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda6", 9) == 0) { { -return dev_storage + 349; +return dev_storage + 346; } } @@ -11056,7 +10999,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda5", 9) == 0) { { -return dev_storage + 348; +return dev_storage + 345; } } @@ -11071,7 +11014,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda4", 9) == 0) { { -return dev_storage + 347; +return dev_storage + 344; } } @@ -11086,7 +11029,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda3", 9) == 0) { { -return dev_storage + 346; +return dev_storage + 343; } } @@ -11101,7 +11044,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda2", 9) == 0) { { -return dev_storage + 345; +return dev_storage + 342; } } @@ -11116,7 +11059,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda1", 9) == 0) { { -return dev_storage + 344; +return dev_storage + 341; } } @@ -11140,7 +11083,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st99", 9) == 0) { { -return dev_storage + 2481; +return dev_storage + 2478; } } @@ -11155,7 +11098,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st98", 9) == 0) { { -return dev_storage + 2480; +return dev_storage + 2477; } } @@ -11170,7 +11113,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st97", 9) == 0) { { -return dev_storage + 2479; +return dev_storage + 2476; } } @@ -11185,7 +11128,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st96", 9) == 0) { { -return dev_storage + 2478; +return dev_storage + 2475; } } @@ -11200,7 +11143,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st95", 9) == 0) { { -return dev_storage + 2477; +return dev_storage + 2474; } } @@ -11215,7 +11158,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st94", 9) == 0) { { -return dev_storage + 2476; +return dev_storage + 2473; } } @@ -11230,7 +11173,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st93", 9) == 0) { { -return dev_storage + 2475; +return dev_storage + 2472; } } @@ -11245,7 +11188,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st92", 9) == 0) { { -return dev_storage + 2474; +return dev_storage + 2471; } } @@ -11260,7 +11203,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st91", 9) == 0) { { -return dev_storage + 2473; +return dev_storage + 2470; } } @@ -11275,7 +11218,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st90", 9) == 0) { { -return dev_storage + 2472; +return dev_storage + 2469; } } @@ -11299,7 +11242,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st89", 9) == 0) { { -return dev_storage + 2471; +return dev_storage + 2468; } } @@ -11314,7 +11257,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st88", 9) == 0) { { -return dev_storage + 2470; +return dev_storage + 2467; } } @@ -11329,7 +11272,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st87", 9) == 0) { { -return dev_storage + 2469; +return dev_storage + 2466; } } @@ -11344,7 +11287,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st86", 9) == 0) { { -return dev_storage + 2468; +return dev_storage + 2465; } } @@ -11359,7 +11302,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st85", 9) == 0) { { -return dev_storage + 2467; +return dev_storage + 2464; } } @@ -11374,7 +11317,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st84", 9) == 0) { { -return dev_storage + 2466; +return dev_storage + 2463; } } @@ -11389,7 +11332,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st83", 9) == 0) { { -return dev_storage + 2465; +return dev_storage + 2462; } } @@ -11404,7 +11347,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st82", 9) == 0) { { -return dev_storage + 2464; +return dev_storage + 2461; } } @@ -11419,7 +11362,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st81", 9) == 0) { { -return dev_storage + 2463; +return dev_storage + 2460; } } @@ -11434,7 +11377,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st80", 9) == 0) { { -return dev_storage + 2462; +return dev_storage + 2459; } } @@ -11458,7 +11401,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st79", 9) == 0) { { -return dev_storage + 2461; +return dev_storage + 2458; } } @@ -11473,7 +11416,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st78", 9) == 0) { { -return dev_storage + 2460; +return dev_storage + 2457; } } @@ -11488,7 +11431,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st77", 9) == 0) { { -return dev_storage + 2459; +return dev_storage + 2456; } } @@ -11503,7 +11446,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st76", 9) == 0) { { -return dev_storage + 2458; +return dev_storage + 2455; } } @@ -11518,7 +11461,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st75", 9) == 0) { { -return dev_storage + 2457; +return dev_storage + 2454; } } @@ -11533,7 +11476,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st74", 9) == 0) { { -return dev_storage + 2456; +return dev_storage + 2453; } } @@ -11548,7 +11491,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st73", 9) == 0) { { -return dev_storage + 2455; +return dev_storage + 2452; } } @@ -11563,7 +11506,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st72", 9) == 0) { { -return dev_storage + 2454; +return dev_storage + 2451; } } @@ -11578,7 +11521,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st71", 9) == 0) { { -return dev_storage + 2453; +return dev_storage + 2450; } } @@ -11593,7 +11536,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st70", 9) == 0) { { -return dev_storage + 2452; +return dev_storage + 2449; } } @@ -11617,7 +11560,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st69", 9) == 0) { { -return dev_storage + 2451; +return dev_storage + 2448; } } @@ -11632,7 +11575,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st68", 9) == 0) { { -return dev_storage + 2450; +return dev_storage + 2447; } } @@ -11647,7 +11590,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st67", 9) == 0) { { -return dev_storage + 2449; +return dev_storage + 2446; } } @@ -11662,7 +11605,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st66", 9) == 0) { { -return dev_storage + 2448; +return dev_storage + 2445; } } @@ -11677,7 +11620,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st65", 9) == 0) { { -return dev_storage + 2447; +return dev_storage + 2444; } } @@ -11692,7 +11635,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st64", 9) == 0) { { -return dev_storage + 2446; +return dev_storage + 2443; } } @@ -11707,7 +11650,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st63", 9) == 0) { { -return dev_storage + 2445; +return dev_storage + 2442; } } @@ -11722,7 +11665,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st62", 9) == 0) { { -return dev_storage + 2444; +return dev_storage + 2441; } } @@ -11737,7 +11680,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st61", 9) == 0) { { -return dev_storage + 2443; +return dev_storage + 2440; } } @@ -11752,7 +11695,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st60", 9) == 0) { { -return dev_storage + 2442; +return dev_storage + 2439; } } @@ -11776,7 +11719,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st59", 9) == 0) { { -return dev_storage + 2441; +return dev_storage + 2438; } } @@ -11791,7 +11734,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st58", 9) == 0) { { -return dev_storage + 2440; +return dev_storage + 2437; } } @@ -11806,7 +11749,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st57", 9) == 0) { { -return dev_storage + 2439; +return dev_storage + 2436; } } @@ -11821,7 +11764,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st56", 9) == 0) { { -return dev_storage + 2438; +return dev_storage + 2435; } } @@ -11836,7 +11779,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st55", 9) == 0) { { -return dev_storage + 2437; +return dev_storage + 2434; } } @@ -11851,7 +11794,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st54", 9) == 0) { { -return dev_storage + 2436; +return dev_storage + 2433; } } @@ -11866,7 +11809,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st53", 9) == 0) { { -return dev_storage + 2435; +return dev_storage + 2432; } } @@ -11881,7 +11824,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st52", 9) == 0) { { -return dev_storage + 2434; +return dev_storage + 2431; } } @@ -11896,7 +11839,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st51", 9) == 0) { { -return dev_storage + 2433; +return dev_storage + 2430; } } @@ -11911,7 +11854,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st50", 9) == 0) { { -return dev_storage + 2432; +return dev_storage + 2429; } } @@ -11935,7 +11878,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st49", 9) == 0) { { -return dev_storage + 2431; +return dev_storage + 2428; } } @@ -11950,7 +11893,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st48", 9) == 0) { { -return dev_storage + 2430; +return dev_storage + 2427; } } @@ -11965,7 +11908,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st47", 9) == 0) { { -return dev_storage + 2429; +return dev_storage + 2426; } } @@ -11980,7 +11923,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st46", 9) == 0) { { -return dev_storage + 2428; +return dev_storage + 2425; } } @@ -11995,7 +11938,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st45", 9) == 0) { { -return dev_storage + 2427; +return dev_storage + 2424; } } @@ -12010,7 +11953,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st44", 9) == 0) { { -return dev_storage + 2426; +return dev_storage + 2423; } } @@ -12025,7 +11968,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st43", 9) == 0) { { -return dev_storage + 2425; +return dev_storage + 2422; } } @@ -12040,7 +11983,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st42", 9) == 0) { { -return dev_storage + 2424; +return dev_storage + 2421; } } @@ -12055,7 +11998,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st41", 9) == 0) { { -return dev_storage + 2423; +return dev_storage + 2420; } } @@ -12070,7 +12013,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st40", 9) == 0) { { -return dev_storage + 2422; +return dev_storage + 2419; } } @@ -12094,7 +12037,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st39", 9) == 0) { { -return dev_storage + 2421; +return dev_storage + 2418; } } @@ -12109,7 +12052,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st38", 9) == 0) { { -return dev_storage + 2420; +return dev_storage + 2417; } } @@ -12124,7 +12067,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st37", 9) == 0) { { -return dev_storage + 2419; +return dev_storage + 2416; } } @@ -12139,7 +12082,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st36", 9) == 0) { { -return dev_storage + 2418; +return dev_storage + 2415; } } @@ -12154,7 +12097,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st35", 9) == 0) { { -return dev_storage + 2417; +return dev_storage + 2414; } } @@ -12169,7 +12112,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st34", 9) == 0) { { -return dev_storage + 2416; +return dev_storage + 2413; } } @@ -12184,7 +12127,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st33", 9) == 0) { { -return dev_storage + 2415; +return dev_storage + 2412; } } @@ -12199,7 +12142,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st32", 9) == 0) { { -return dev_storage + 2414; +return dev_storage + 2411; } } @@ -12214,7 +12157,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st31", 9) == 0) { { -return dev_storage + 2413; +return dev_storage + 2410; } } @@ -12229,7 +12172,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st30", 9) == 0) { { -return dev_storage + 2412; +return dev_storage + 2409; } } @@ -12253,7 +12196,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st29", 9) == 0) { { -return dev_storage + 2411; +return dev_storage + 2408; } } @@ -12268,7 +12211,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st28", 9) == 0) { { -return dev_storage + 2410; +return dev_storage + 2407; } } @@ -12283,7 +12226,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st27", 9) == 0) { { -return dev_storage + 2409; +return dev_storage + 2406; } } @@ -12298,7 +12241,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st26", 9) == 0) { { -return dev_storage + 2408; +return dev_storage + 2405; } } @@ -12313,7 +12256,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st25", 9) == 0) { { -return dev_storage + 2407; +return dev_storage + 2404; } } @@ -12328,7 +12271,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st24", 9) == 0) { { -return dev_storage + 2406; +return dev_storage + 2403; } } @@ -12343,7 +12286,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st23", 9) == 0) { { -return dev_storage + 2405; +return dev_storage + 2402; } } @@ -12358,7 +12301,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st22", 9) == 0) { { -return dev_storage + 2404; +return dev_storage + 2401; } } @@ -12373,7 +12316,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st21", 9) == 0) { { -return dev_storage + 2403; +return dev_storage + 2400; } } @@ -12388,7 +12331,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st20", 9) == 0) { { -return dev_storage + 2402; +return dev_storage + 2399; } } @@ -12412,7 +12355,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st19", 9) == 0) { { -return dev_storage + 2401; +return dev_storage + 2398; } } @@ -12427,7 +12370,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st18", 9) == 0) { { -return dev_storage + 2400; +return dev_storage + 2397; } } @@ -12442,7 +12385,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st17", 9) == 0) { { -return dev_storage + 2399; +return dev_storage + 2396; } } @@ -12457,7 +12400,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st16", 9) == 0) { { -return dev_storage + 2398; +return dev_storage + 2395; } } @@ -12475,7 +12418,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st15", 9) == 0) { { -return dev_storage + 2397; +return dev_storage + 2394; } } @@ -12490,7 +12433,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr15", 9) == 0) { { -return dev_storage + 2381; +return dev_storage + 2378; } } @@ -12529,7 +12472,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st14", 9) == 0) { { -return dev_storage + 2396; +return dev_storage + 2393; } } @@ -12544,7 +12487,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr14", 9) == 0) { { -return dev_storage + 2380; +return dev_storage + 2377; } } @@ -12583,7 +12526,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st13", 9) == 0) { { -return dev_storage + 2395; +return dev_storage + 2392; } } @@ -12598,7 +12541,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr13", 9) == 0) { { -return dev_storage + 2379; +return dev_storage + 2376; } } @@ -12637,7 +12580,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st12", 9) == 0) { { -return dev_storage + 2394; +return dev_storage + 2391; } } @@ -12652,7 +12595,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr12", 9) == 0) { { -return dev_storage + 2378; +return dev_storage + 2375; } } @@ -12691,7 +12634,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st11", 9) == 0) { { -return dev_storage + 2393; +return dev_storage + 2390; } } @@ -12706,7 +12649,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr11", 9) == 0) { { -return dev_storage + 2377; +return dev_storage + 2374; } } @@ -12745,7 +12688,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st10", 9) == 0) { { -return dev_storage + 2392; +return dev_storage + 2389; } } @@ -12760,7 +12703,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr10", 9) == 0) { { -return dev_storage + 2376; +return dev_storage + 2373; } } @@ -12832,7 +12775,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz9", 10) == 0) { { -return dev_storage + 1975; +return dev_storage + 1972; } } @@ -12847,7 +12790,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz9", 10) == 0) { { -return dev_storage + 1559; +return dev_storage + 1556; } } @@ -12862,7 +12805,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz9", 10) == 0) { { -return dev_storage + 1143; +return dev_storage + 1140; } } @@ -12886,7 +12829,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy9", 10) == 0) { { -return dev_storage + 1960; +return dev_storage + 1957; } } @@ -12901,7 +12844,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby9", 10) == 0) { { -return dev_storage + 1544; +return dev_storage + 1541; } } @@ -12916,7 +12859,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday9", 10) == 0) { { -return dev_storage + 1128; +return dev_storage + 1125; } } @@ -12940,7 +12883,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx9", 10) == 0) { { -return dev_storage + 2359; +return dev_storage + 2356; } } @@ -12955,7 +12898,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx9", 10) == 0) { { -return dev_storage + 1945; +return dev_storage + 1942; } } @@ -12970,7 +12913,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx9", 10) == 0) { { -return dev_storage + 1529; +return dev_storage + 1526; } } @@ -12985,7 +12928,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax9", 10) == 0) { { -return dev_storage + 1113; +return dev_storage + 1110; } } @@ -13009,7 +12952,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw9", 10) == 0) { { -return dev_storage + 2344; +return dev_storage + 2341; } } @@ -13024,7 +12967,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw9", 10) == 0) { { -return dev_storage + 1930; +return dev_storage + 1927; } } @@ -13039,7 +12982,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw9", 10) == 0) { { -return dev_storage + 1514; +return dev_storage + 1511; } } @@ -13054,7 +12997,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw9", 10) == 0) { { -return dev_storage + 1098; +return dev_storage + 1095; } } @@ -13078,7 +13021,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv9", 10) == 0) { { -return dev_storage + 2329; +return dev_storage + 2326; } } @@ -13093,7 +13036,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv9", 10) == 0) { { -return dev_storage + 1915; +return dev_storage + 1912; } } @@ -13108,7 +13051,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv9", 10) == 0) { { -return dev_storage + 1499; +return dev_storage + 1496; } } @@ -13123,7 +13066,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav9", 10) == 0) { { -return dev_storage + 1083; +return dev_storage + 1080; } } @@ -13147,7 +13090,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu9", 10) == 0) { { -return dev_storage + 2314; +return dev_storage + 2311; } } @@ -13162,7 +13105,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu9", 10) == 0) { { -return dev_storage + 1900; +return dev_storage + 1897; } } @@ -13177,7 +13120,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu9", 10) == 0) { { -return dev_storage + 1484; +return dev_storage + 1481; } } @@ -13192,7 +13135,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau9", 10) == 0) { { -return dev_storage + 1068; +return dev_storage + 1065; } } @@ -13216,7 +13159,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt9", 10) == 0) { { -return dev_storage + 2299; +return dev_storage + 2296; } } @@ -13231,7 +13174,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct9", 10) == 0) { { -return dev_storage + 1885; +return dev_storage + 1882; } } @@ -13246,7 +13189,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt9", 10) == 0) { { -return dev_storage + 1469; +return dev_storage + 1466; } } @@ -13261,7 +13204,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat9", 10) == 0) { { -return dev_storage + 1053; +return dev_storage + 1050; } } @@ -13300,7 +13243,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds9", 10) == 0) { { -return dev_storage + 2284; +return dev_storage + 2281; } } @@ -13315,7 +13258,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs9", 10) == 0) { { -return dev_storage + 1870; +return dev_storage + 1867; } } @@ -13330,7 +13273,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs9", 10) == 0) { { -return dev_storage + 1454; +return dev_storage + 1451; } } @@ -13345,7 +13288,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas9", 10) == 0) { { -return dev_storage + 1038; +return dev_storage + 1035; } } @@ -13369,7 +13312,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr9", 10) == 0) { { -return dev_storage + 2269; +return dev_storage + 2266; } } @@ -13384,7 +13327,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr9", 10) == 0) { { -return dev_storage + 1855; +return dev_storage + 1852; } } @@ -13399,7 +13342,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr9", 10) == 0) { { -return dev_storage + 1439; +return dev_storage + 1436; } } @@ -13414,7 +13357,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar9", 10) == 0) { { -return dev_storage + 1023; +return dev_storage + 1020; } } @@ -13438,7 +13381,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq9", 10) == 0) { { -return dev_storage + 2254; +return dev_storage + 2251; } } @@ -13453,7 +13396,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq9", 10) == 0) { { -return dev_storage + 1840; +return dev_storage + 1837; } } @@ -13468,7 +13411,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq9", 10) == 0) { { -return dev_storage + 1424; +return dev_storage + 1421; } } @@ -13483,7 +13426,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq9", 10) == 0) { { -return dev_storage + 1008; +return dev_storage + 1005; } } @@ -13507,7 +13450,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp9", 10) == 0) { { -return dev_storage + 2239; +return dev_storage + 2236; } } @@ -13522,7 +13465,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp9", 10) == 0) { { -return dev_storage + 1825; +return dev_storage + 1822; } } @@ -13537,7 +13480,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp9", 10) == 0) { { -return dev_storage + 1409; +return dev_storage + 1406; } } @@ -13552,7 +13495,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap9", 10) == 0) { { -return dev_storage + 993; +return dev_storage + 990; } } @@ -13576,7 +13519,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo9", 10) == 0) { { -return dev_storage + 2224; +return dev_storage + 2221; } } @@ -13591,7 +13534,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco9", 10) == 0) { { -return dev_storage + 1810; +return dev_storage + 1807; } } @@ -13606,7 +13549,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo9", 10) == 0) { { -return dev_storage + 1394; +return dev_storage + 1391; } } @@ -13621,7 +13564,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao9", 10) == 0) { { -return dev_storage + 978; +return dev_storage + 975; } } @@ -13645,7 +13588,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn9", 10) == 0) { { -return dev_storage + 2209; +return dev_storage + 2206; } } @@ -13660,7 +13603,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn9", 10) == 0) { { -return dev_storage + 1795; +return dev_storage + 1792; } } @@ -13675,7 +13618,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn9", 10) == 0) { { -return dev_storage + 1379; +return dev_storage + 1376; } } @@ -13690,7 +13633,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan9", 10) == 0) { { -return dev_storage + 963; +return dev_storage + 960; } } @@ -13714,7 +13657,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm9", 10) == 0) { { -return dev_storage + 2194; +return dev_storage + 2191; } } @@ -13729,7 +13672,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm9", 10) == 0) { { -return dev_storage + 1780; +return dev_storage + 1777; } } @@ -13744,7 +13687,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm9", 10) == 0) { { -return dev_storage + 1364; +return dev_storage + 1361; } } @@ -13759,7 +13702,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam9", 10) == 0) { { -return dev_storage + 948; +return dev_storage + 945; } } @@ -13783,7 +13726,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl9", 10) == 0) { { -return dev_storage + 2179; +return dev_storage + 2176; } } @@ -13798,7 +13741,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl9", 10) == 0) { { -return dev_storage + 1765; +return dev_storage + 1762; } } @@ -13813,7 +13756,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl9", 10) == 0) { { -return dev_storage + 1349; +return dev_storage + 1346; } } @@ -13828,7 +13771,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal9", 10) == 0) { { -return dev_storage + 933; +return dev_storage + 930; } } @@ -13852,7 +13795,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk9", 10) == 0) { { -return dev_storage + 2164; +return dev_storage + 2161; } } @@ -13867,7 +13810,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck9", 10) == 0) { { -return dev_storage + 1750; +return dev_storage + 1747; } } @@ -13882,7 +13825,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk9", 10) == 0) { { -return dev_storage + 1334; +return dev_storage + 1331; } } @@ -13897,7 +13840,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak9", 10) == 0) { { -return dev_storage + 918; +return dev_storage + 915; } } @@ -13921,7 +13864,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj9", 10) == 0) { { -return dev_storage + 2149; +return dev_storage + 2146; } } @@ -13936,7 +13879,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj9", 10) == 0) { { -return dev_storage + 1735; +return dev_storage + 1732; } } @@ -13951,7 +13894,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj9", 10) == 0) { { -return dev_storage + 1319; +return dev_storage + 1316; } } @@ -13966,7 +13909,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj9", 10) == 0) { { -return dev_storage + 903; +return dev_storage + 900; } } @@ -13990,7 +13933,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi9", 10) == 0) { { -return dev_storage + 2134; +return dev_storage + 2131; } } @@ -14005,7 +13948,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci9", 10) == 0) { { -return dev_storage + 1720; +return dev_storage + 1717; } } @@ -14020,7 +13963,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi9", 10) == 0) { { -return dev_storage + 1304; +return dev_storage + 1301; } } @@ -14035,7 +13978,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai9", 10) == 0) { { -return dev_storage + 888; +return dev_storage + 885; } } @@ -14059,7 +14002,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh9", 10) == 0) { { -return dev_storage + 2119; +return dev_storage + 2116; } } @@ -14074,7 +14017,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch9", 10) == 0) { { -return dev_storage + 1705; +return dev_storage + 1702; } } @@ -14089,7 +14032,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh9", 10) == 0) { { -return dev_storage + 1289; +return dev_storage + 1286; } } @@ -14104,7 +14047,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah9", 10) == 0) { { -return dev_storage + 873; +return dev_storage + 870; } } @@ -14128,7 +14071,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg9", 10) == 0) { { -return dev_storage + 2104; +return dev_storage + 2101; } } @@ -14143,7 +14086,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg9", 10) == 0) { { -return dev_storage + 1690; +return dev_storage + 1687; } } @@ -14158,7 +14101,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg9", 10) == 0) { { -return dev_storage + 1274; +return dev_storage + 1271; } } @@ -14173,7 +14116,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag9", 10) == 0) { { -return dev_storage + 858; +return dev_storage + 855; } } @@ -14197,7 +14140,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf9", 10) == 0) { { -return dev_storage + 2089; +return dev_storage + 2086; } } @@ -14212,7 +14155,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf9", 10) == 0) { { -return dev_storage + 1675; +return dev_storage + 1672; } } @@ -14227,7 +14170,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf9", 10) == 0) { { -return dev_storage + 1259; +return dev_storage + 1256; } } @@ -14242,7 +14185,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf9", 10) == 0) { { -return dev_storage + 843; +return dev_storage + 840; } } @@ -14266,7 +14209,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde9", 10) == 0) { { -return dev_storage + 2074; +return dev_storage + 2071; } } @@ -14281,7 +14224,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce9", 10) == 0) { { -return dev_storage + 1660; +return dev_storage + 1657; } } @@ -14296,7 +14239,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe9", 10) == 0) { { -return dev_storage + 1244; +return dev_storage + 1241; } } @@ -14311,7 +14254,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae9", 10) == 0) { { -return dev_storage + 828; +return dev_storage + 825; } } @@ -14335,7 +14278,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd9", 10) == 0) { { -return dev_storage + 2059; +return dev_storage + 2056; } } @@ -14350,7 +14293,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd9", 10) == 0) { { -return dev_storage + 1645; +return dev_storage + 1642; } } @@ -14365,7 +14308,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd9", 10) == 0) { { -return dev_storage + 1229; +return dev_storage + 1226; } } @@ -14380,7 +14323,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad9", 10) == 0) { { -return dev_storage + 813; +return dev_storage + 810; } } @@ -14404,7 +14347,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc9", 10) == 0) { { -return dev_storage + 2044; +return dev_storage + 2041; } } @@ -14419,7 +14362,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc9", 10) == 0) { { -return dev_storage + 1630; +return dev_storage + 1627; } } @@ -14434,7 +14377,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc9", 10) == 0) { { -return dev_storage + 1214; +return dev_storage + 1211; } } @@ -14449,7 +14392,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac9", 10) == 0) { { -return dev_storage + 798; +return dev_storage + 795; } } @@ -14473,7 +14416,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb9", 10) == 0) { { -return dev_storage + 2029; +return dev_storage + 2026; } } @@ -14488,7 +14431,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb9", 10) == 0) { { -return dev_storage + 1615; +return dev_storage + 1612; } } @@ -14503,7 +14446,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb9", 10) == 0) { { -return dev_storage + 1199; +return dev_storage + 1196; } } @@ -14518,7 +14461,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab9", 10) == 0) { { -return dev_storage + 783; +return dev_storage + 780; } } @@ -14542,7 +14485,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda9", 10) == 0) { { -return dev_storage + 2014; +return dev_storage + 2011; } } @@ -14557,7 +14500,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca9", 10) == 0) { { -return dev_storage + 1600; +return dev_storage + 1597; } } @@ -14572,7 +14515,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba9", 10) == 0) { { -return dev_storage + 1184; +return dev_storage + 1181; } } @@ -14587,7 +14530,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa9", 10) == 0) { { -return dev_storage + 768; +return dev_storage + 765; } } @@ -14608,7 +14551,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS9", 10) == 0) { { -return dev_storage + 2520; +return dev_storage + 2517; } } @@ -14623,7 +14566,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst99", 10) == 0) { { -return dev_storage + 205; +return dev_storage + 203; } } @@ -14638,7 +14581,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst89", 10) == 0) { { -return dev_storage + 195; +return dev_storage + 193; } } @@ -14653,7 +14596,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst79", 10) == 0) { { -return dev_storage + 185; +return dev_storage + 183; } } @@ -14668,7 +14611,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst69", 10) == 0) { { -return dev_storage + 175; +return dev_storage + 173; } } @@ -14686,7 +14629,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty59", 10) == 0) { { -return dev_storage + 296; +return dev_storage + 293; } } @@ -14701,7 +14644,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst59", 10) == 0) { { -return dev_storage + 165; +return dev_storage + 163; } } @@ -14725,7 +14668,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty49", 10) == 0) { { -return dev_storage + 286; +return dev_storage + 283; } } @@ -14740,7 +14683,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst49", 10) == 0) { { -return dev_storage + 155; +return dev_storage + 153; } } @@ -14764,7 +14707,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty39", 10) == 0) { { -return dev_storage + 276; +return dev_storage + 273; } } @@ -14779,7 +14722,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst39", 10) == 0) { { -return dev_storage + 145; +return dev_storage + 143; } } @@ -14803,7 +14746,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty29", 10) == 0) { { -return dev_storage + 266; +return dev_storage + 263; } } @@ -14818,7 +14761,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst29", 10) == 0) { { -return dev_storage + 135; +return dev_storage + 133; } } @@ -14842,7 +14785,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st119", 10) == 0) { { -return dev_storage + 2501; +return dev_storage + 2498; } } @@ -14857,7 +14800,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty19", 10) == 0) { { -return dev_storage + 256; +return dev_storage + 253; } } @@ -14872,7 +14815,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst19", 10) == 0) { { -return dev_storage + 125; +return dev_storage + 123; } } @@ -14893,7 +14836,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st109", 10) == 0) { { -return dev_storage + 2491; +return dev_storage + 2488; } } @@ -14920,7 +14863,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz8", 10) == 0) { { -return dev_storage + 1974; +return dev_storage + 1971; } } @@ -14935,7 +14878,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz8", 10) == 0) { { -return dev_storage + 1558; +return dev_storage + 1555; } } @@ -14950,7 +14893,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz8", 10) == 0) { { -return dev_storage + 1142; +return dev_storage + 1139; } } @@ -14974,7 +14917,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy8", 10) == 0) { { -return dev_storage + 1959; +return dev_storage + 1956; } } @@ -14989,7 +14932,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby8", 10) == 0) { { -return dev_storage + 1543; +return dev_storage + 1540; } } @@ -15004,7 +14947,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday8", 10) == 0) { { -return dev_storage + 1127; +return dev_storage + 1124; } } @@ -15028,7 +14971,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx8", 10) == 0) { { -return dev_storage + 2358; +return dev_storage + 2355; } } @@ -15043,7 +14986,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx8", 10) == 0) { { -return dev_storage + 1944; +return dev_storage + 1941; } } @@ -15058,7 +15001,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx8", 10) == 0) { { -return dev_storage + 1528; +return dev_storage + 1525; } } @@ -15073,7 +15016,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax8", 10) == 0) { { -return dev_storage + 1112; +return dev_storage + 1109; } } @@ -15097,7 +15040,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw8", 10) == 0) { { -return dev_storage + 2343; +return dev_storage + 2340; } } @@ -15112,7 +15055,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw8", 10) == 0) { { -return dev_storage + 1929; +return dev_storage + 1926; } } @@ -15127,7 +15070,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw8", 10) == 0) { { -return dev_storage + 1513; +return dev_storage + 1510; } } @@ -15142,7 +15085,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw8", 10) == 0) { { -return dev_storage + 1097; +return dev_storage + 1094; } } @@ -15166,7 +15109,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv8", 10) == 0) { { -return dev_storage + 2328; +return dev_storage + 2325; } } @@ -15181,7 +15124,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv8", 10) == 0) { { -return dev_storage + 1914; +return dev_storage + 1911; } } @@ -15196,7 +15139,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv8", 10) == 0) { { -return dev_storage + 1498; +return dev_storage + 1495; } } @@ -15211,7 +15154,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav8", 10) == 0) { { -return dev_storage + 1082; +return dev_storage + 1079; } } @@ -15235,7 +15178,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu8", 10) == 0) { { -return dev_storage + 2313; +return dev_storage + 2310; } } @@ -15250,7 +15193,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu8", 10) == 0) { { -return dev_storage + 1899; +return dev_storage + 1896; } } @@ -15265,7 +15208,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu8", 10) == 0) { { -return dev_storage + 1483; +return dev_storage + 1480; } } @@ -15280,7 +15223,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau8", 10) == 0) { { -return dev_storage + 1067; +return dev_storage + 1064; } } @@ -15304,7 +15247,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt8", 10) == 0) { { -return dev_storage + 2298; +return dev_storage + 2295; } } @@ -15319,7 +15262,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct8", 10) == 0) { { -return dev_storage + 1884; +return dev_storage + 1881; } } @@ -15334,7 +15277,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt8", 10) == 0) { { -return dev_storage + 1468; +return dev_storage + 1465; } } @@ -15349,7 +15292,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat8", 10) == 0) { { -return dev_storage + 1052; +return dev_storage + 1049; } } @@ -15388,7 +15331,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds8", 10) == 0) { { -return dev_storage + 2283; +return dev_storage + 2280; } } @@ -15403,7 +15346,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs8", 10) == 0) { { -return dev_storage + 1869; +return dev_storage + 1866; } } @@ -15418,7 +15361,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs8", 10) == 0) { { -return dev_storage + 1453; +return dev_storage + 1450; } } @@ -15433,7 +15376,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas8", 10) == 0) { { -return dev_storage + 1037; +return dev_storage + 1034; } } @@ -15457,7 +15400,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr8", 10) == 0) { { -return dev_storage + 2268; +return dev_storage + 2265; } } @@ -15472,7 +15415,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr8", 10) == 0) { { -return dev_storage + 1854; +return dev_storage + 1851; } } @@ -15487,7 +15430,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr8", 10) == 0) { { -return dev_storage + 1438; +return dev_storage + 1435; } } @@ -15502,7 +15445,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar8", 10) == 0) { { -return dev_storage + 1022; +return dev_storage + 1019; } } @@ -15526,7 +15469,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq8", 10) == 0) { { -return dev_storage + 2253; +return dev_storage + 2250; } } @@ -15541,7 +15484,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq8", 10) == 0) { { -return dev_storage + 1839; +return dev_storage + 1836; } } @@ -15556,7 +15499,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq8", 10) == 0) { { -return dev_storage + 1423; +return dev_storage + 1420; } } @@ -15571,7 +15514,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq8", 10) == 0) { { -return dev_storage + 1007; +return dev_storage + 1004; } } @@ -15595,7 +15538,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp8", 10) == 0) { { -return dev_storage + 2238; +return dev_storage + 2235; } } @@ -15610,7 +15553,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp8", 10) == 0) { { -return dev_storage + 1824; +return dev_storage + 1821; } } @@ -15625,7 +15568,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp8", 10) == 0) { { -return dev_storage + 1408; +return dev_storage + 1405; } } @@ -15640,7 +15583,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap8", 10) == 0) { { -return dev_storage + 992; +return dev_storage + 989; } } @@ -15664,7 +15607,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo8", 10) == 0) { { -return dev_storage + 2223; +return dev_storage + 2220; } } @@ -15679,7 +15622,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco8", 10) == 0) { { -return dev_storage + 1809; +return dev_storage + 1806; } } @@ -15694,7 +15637,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo8", 10) == 0) { { -return dev_storage + 1393; +return dev_storage + 1390; } } @@ -15709,7 +15652,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao8", 10) == 0) { { -return dev_storage + 977; +return dev_storage + 974; } } @@ -15733,7 +15676,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn8", 10) == 0) { { -return dev_storage + 2208; +return dev_storage + 2205; } } @@ -15748,7 +15691,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn8", 10) == 0) { { -return dev_storage + 1794; +return dev_storage + 1791; } } @@ -15763,7 +15706,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn8", 10) == 0) { { -return dev_storage + 1378; +return dev_storage + 1375; } } @@ -15778,7 +15721,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan8", 10) == 0) { { -return dev_storage + 962; +return dev_storage + 959; } } @@ -15802,7 +15745,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm8", 10) == 0) { { -return dev_storage + 2193; +return dev_storage + 2190; } } @@ -15817,7 +15760,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm8", 10) == 0) { { -return dev_storage + 1779; +return dev_storage + 1776; } } @@ -15832,7 +15775,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm8", 10) == 0) { { -return dev_storage + 1363; +return dev_storage + 1360; } } @@ -15847,7 +15790,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam8", 10) == 0) { { -return dev_storage + 947; +return dev_storage + 944; } } @@ -15871,7 +15814,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl8", 10) == 0) { { -return dev_storage + 2178; +return dev_storage + 2175; } } @@ -15886,7 +15829,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl8", 10) == 0) { { -return dev_storage + 1764; +return dev_storage + 1761; } } @@ -15901,7 +15844,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl8", 10) == 0) { { -return dev_storage + 1348; +return dev_storage + 1345; } } @@ -15916,7 +15859,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal8", 10) == 0) { { -return dev_storage + 932; +return dev_storage + 929; } } @@ -15940,7 +15883,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk8", 10) == 0) { { -return dev_storage + 2163; +return dev_storage + 2160; } } @@ -15955,7 +15898,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck8", 10) == 0) { { -return dev_storage + 1749; +return dev_storage + 1746; } } @@ -15970,7 +15913,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk8", 10) == 0) { { -return dev_storage + 1333; +return dev_storage + 1330; } } @@ -15985,7 +15928,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak8", 10) == 0) { { -return dev_storage + 917; +return dev_storage + 914; } } @@ -16009,7 +15952,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj8", 10) == 0) { { -return dev_storage + 2148; +return dev_storage + 2145; } } @@ -16024,7 +15967,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj8", 10) == 0) { { -return dev_storage + 1734; +return dev_storage + 1731; } } @@ -16039,7 +15982,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj8", 10) == 0) { { -return dev_storage + 1318; +return dev_storage + 1315; } } @@ -16054,7 +15997,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj8", 10) == 0) { { -return dev_storage + 902; +return dev_storage + 899; } } @@ -16078,7 +16021,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi8", 10) == 0) { { -return dev_storage + 2133; +return dev_storage + 2130; } } @@ -16093,7 +16036,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci8", 10) == 0) { { -return dev_storage + 1719; +return dev_storage + 1716; } } @@ -16108,7 +16051,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi8", 10) == 0) { { -return dev_storage + 1303; +return dev_storage + 1300; } } @@ -16123,7 +16066,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai8", 10) == 0) { { -return dev_storage + 887; +return dev_storage + 884; } } @@ -16147,7 +16090,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh8", 10) == 0) { { -return dev_storage + 2118; +return dev_storage + 2115; } } @@ -16162,7 +16105,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch8", 10) == 0) { { -return dev_storage + 1704; +return dev_storage + 1701; } } @@ -16177,7 +16120,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh8", 10) == 0) { { -return dev_storage + 1288; +return dev_storage + 1285; } } @@ -16192,7 +16135,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah8", 10) == 0) { { -return dev_storage + 872; +return dev_storage + 869; } } @@ -16216,7 +16159,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg8", 10) == 0) { { -return dev_storage + 2103; +return dev_storage + 2100; } } @@ -16231,7 +16174,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg8", 10) == 0) { { -return dev_storage + 1689; +return dev_storage + 1686; } } @@ -16246,7 +16189,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg8", 10) == 0) { { -return dev_storage + 1273; +return dev_storage + 1270; } } @@ -16261,7 +16204,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag8", 10) == 0) { { -return dev_storage + 857; +return dev_storage + 854; } } @@ -16285,7 +16228,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf8", 10) == 0) { { -return dev_storage + 2088; +return dev_storage + 2085; } } @@ -16300,7 +16243,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf8", 10) == 0) { { -return dev_storage + 1674; +return dev_storage + 1671; } } @@ -16315,7 +16258,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf8", 10) == 0) { { -return dev_storage + 1258; +return dev_storage + 1255; } } @@ -16330,7 +16273,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf8", 10) == 0) { { -return dev_storage + 842; +return dev_storage + 839; } } @@ -16354,7 +16297,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde8", 10) == 0) { { -return dev_storage + 2073; +return dev_storage + 2070; } } @@ -16369,7 +16312,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce8", 10) == 0) { { -return dev_storage + 1659; +return dev_storage + 1656; } } @@ -16384,7 +16327,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe8", 10) == 0) { { -return dev_storage + 1243; +return dev_storage + 1240; } } @@ -16399,7 +16342,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae8", 10) == 0) { { -return dev_storage + 827; +return dev_storage + 824; } } @@ -16423,7 +16366,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd8", 10) == 0) { { -return dev_storage + 2058; +return dev_storage + 2055; } } @@ -16438,7 +16381,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd8", 10) == 0) { { -return dev_storage + 1644; +return dev_storage + 1641; } } @@ -16453,7 +16396,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd8", 10) == 0) { { -return dev_storage + 1228; +return dev_storage + 1225; } } @@ -16468,7 +16411,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad8", 10) == 0) { { -return dev_storage + 812; +return dev_storage + 809; } } @@ -16492,7 +16435,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc8", 10) == 0) { { -return dev_storage + 2043; +return dev_storage + 2040; } } @@ -16507,7 +16450,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc8", 10) == 0) { { -return dev_storage + 1629; +return dev_storage + 1626; } } @@ -16522,7 +16465,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc8", 10) == 0) { { -return dev_storage + 1213; +return dev_storage + 1210; } } @@ -16537,7 +16480,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac8", 10) == 0) { { -return dev_storage + 797; +return dev_storage + 794; } } @@ -16561,7 +16504,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb8", 10) == 0) { { -return dev_storage + 2028; +return dev_storage + 2025; } } @@ -16576,7 +16519,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb8", 10) == 0) { { -return dev_storage + 1614; +return dev_storage + 1611; } } @@ -16591,7 +16534,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb8", 10) == 0) { { -return dev_storage + 1198; +return dev_storage + 1195; } } @@ -16606,7 +16549,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab8", 10) == 0) { { -return dev_storage + 782; +return dev_storage + 779; } } @@ -16630,7 +16573,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda8", 10) == 0) { { -return dev_storage + 2013; +return dev_storage + 2010; } } @@ -16645,7 +16588,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca8", 10) == 0) { { -return dev_storage + 1599; +return dev_storage + 1596; } } @@ -16660,7 +16603,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba8", 10) == 0) { { -return dev_storage + 1183; +return dev_storage + 1180; } } @@ -16675,7 +16618,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa8", 10) == 0) { { -return dev_storage + 767; +return dev_storage + 764; } } @@ -16696,7 +16639,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS8", 10) == 0) { { -return dev_storage + 2519; +return dev_storage + 2516; } } @@ -16711,7 +16654,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst98", 10) == 0) { { -return dev_storage + 204; +return dev_storage + 202; } } @@ -16726,7 +16669,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst88", 10) == 0) { { -return dev_storage + 194; +return dev_storage + 192; } } @@ -16741,7 +16684,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst78", 10) == 0) { { -return dev_storage + 184; +return dev_storage + 182; } } @@ -16756,7 +16699,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst68", 10) == 0) { { -return dev_storage + 174; +return dev_storage + 172; } } @@ -16774,7 +16717,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty58", 10) == 0) { { -return dev_storage + 295; +return dev_storage + 292; } } @@ -16789,7 +16732,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst58", 10) == 0) { { -return dev_storage + 164; +return dev_storage + 162; } } @@ -16813,7 +16756,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty48", 10) == 0) { { -return dev_storage + 285; +return dev_storage + 282; } } @@ -16828,7 +16771,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst48", 10) == 0) { { -return dev_storage + 154; +return dev_storage + 152; } } @@ -16852,7 +16795,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty38", 10) == 0) { { -return dev_storage + 275; +return dev_storage + 272; } } @@ -16867,7 +16810,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst38", 10) == 0) { { -return dev_storage + 144; +return dev_storage + 142; } } @@ -16891,7 +16834,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty28", 10) == 0) { { -return dev_storage + 265; +return dev_storage + 262; } } @@ -16906,7 +16849,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst28", 10) == 0) { { -return dev_storage + 134; +return dev_storage + 132; } } @@ -16930,7 +16873,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st118", 10) == 0) { { -return dev_storage + 2500; +return dev_storage + 2497; } } @@ -16945,7 +16888,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty18", 10) == 0) { { -return dev_storage + 255; +return dev_storage + 252; } } @@ -16960,7 +16903,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst18", 10) == 0) { { -return dev_storage + 124; +return dev_storage + 122; } } @@ -16981,7 +16924,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st108", 10) == 0) { { -return dev_storage + 2490; +return dev_storage + 2487; } } @@ -17008,7 +16951,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz7", 10) == 0) { { -return dev_storage + 1973; +return dev_storage + 1970; } } @@ -17023,7 +16966,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz7", 10) == 0) { { -return dev_storage + 1557; +return dev_storage + 1554; } } @@ -17038,7 +16981,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz7", 10) == 0) { { -return dev_storage + 1141; +return dev_storage + 1138; } } @@ -17062,7 +17005,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy7", 10) == 0) { { -return dev_storage + 1958; +return dev_storage + 1955; } } @@ -17077,7 +17020,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby7", 10) == 0) { { -return dev_storage + 1542; +return dev_storage + 1539; } } @@ -17092,7 +17035,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday7", 10) == 0) { { -return dev_storage + 1126; +return dev_storage + 1123; } } @@ -17116,7 +17059,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx7", 10) == 0) { { -return dev_storage + 2357; +return dev_storage + 2354; } } @@ -17131,7 +17074,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx7", 10) == 0) { { -return dev_storage + 1943; +return dev_storage + 1940; } } @@ -17146,7 +17089,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx7", 10) == 0) { { -return dev_storage + 1527; +return dev_storage + 1524; } } @@ -17161,7 +17104,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax7", 10) == 0) { { -return dev_storage + 1111; +return dev_storage + 1108; } } @@ -17185,7 +17128,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw7", 10) == 0) { { -return dev_storage + 2342; +return dev_storage + 2339; } } @@ -17200,7 +17143,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw7", 10) == 0) { { -return dev_storage + 1928; +return dev_storage + 1925; } } @@ -17215,7 +17158,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw7", 10) == 0) { { -return dev_storage + 1512; +return dev_storage + 1509; } } @@ -17230,7 +17173,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw7", 10) == 0) { { -return dev_storage + 1096; +return dev_storage + 1093; } } @@ -17254,7 +17197,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv7", 10) == 0) { { -return dev_storage + 2327; +return dev_storage + 2324; } } @@ -17269,7 +17212,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv7", 10) == 0) { { -return dev_storage + 1913; +return dev_storage + 1910; } } @@ -17284,7 +17227,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv7", 10) == 0) { { -return dev_storage + 1497; +return dev_storage + 1494; } } @@ -17299,7 +17242,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav7", 10) == 0) { { -return dev_storage + 1081; +return dev_storage + 1078; } } @@ -17323,7 +17266,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu7", 10) == 0) { { -return dev_storage + 2312; +return dev_storage + 2309; } } @@ -17338,7 +17281,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu7", 10) == 0) { { -return dev_storage + 1898; +return dev_storage + 1895; } } @@ -17353,7 +17296,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu7", 10) == 0) { { -return dev_storage + 1482; +return dev_storage + 1479; } } @@ -17368,7 +17311,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau7", 10) == 0) { { -return dev_storage + 1066; +return dev_storage + 1063; } } @@ -17392,7 +17335,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt7", 10) == 0) { { -return dev_storage + 2297; +return dev_storage + 2294; } } @@ -17407,7 +17350,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct7", 10) == 0) { { -return dev_storage + 1883; +return dev_storage + 1880; } } @@ -17422,7 +17365,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt7", 10) == 0) { { -return dev_storage + 1467; +return dev_storage + 1464; } } @@ -17437,7 +17380,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat7", 10) == 0) { { -return dev_storage + 1051; +return dev_storage + 1048; } } @@ -17476,7 +17419,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds7", 10) == 0) { { -return dev_storage + 2282; +return dev_storage + 2279; } } @@ -17491,7 +17434,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs7", 10) == 0) { { -return dev_storage + 1868; +return dev_storage + 1865; } } @@ -17506,7 +17449,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs7", 10) == 0) { { -return dev_storage + 1452; +return dev_storage + 1449; } } @@ -17521,7 +17464,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas7", 10) == 0) { { -return dev_storage + 1036; +return dev_storage + 1033; } } @@ -17545,7 +17488,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr7", 10) == 0) { { -return dev_storage + 2267; +return dev_storage + 2264; } } @@ -17560,7 +17503,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr7", 10) == 0) { { -return dev_storage + 1853; +return dev_storage + 1850; } } @@ -17575,7 +17518,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr7", 10) == 0) { { -return dev_storage + 1437; +return dev_storage + 1434; } } @@ -17590,7 +17533,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar7", 10) == 0) { { -return dev_storage + 1021; +return dev_storage + 1018; } } @@ -17614,7 +17557,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq7", 10) == 0) { { -return dev_storage + 2252; +return dev_storage + 2249; } } @@ -17629,7 +17572,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq7", 10) == 0) { { -return dev_storage + 1838; +return dev_storage + 1835; } } @@ -17644,7 +17587,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq7", 10) == 0) { { -return dev_storage + 1422; +return dev_storage + 1419; } } @@ -17659,7 +17602,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq7", 10) == 0) { { -return dev_storage + 1006; +return dev_storage + 1003; } } @@ -17683,7 +17626,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp7", 10) == 0) { { -return dev_storage + 2237; +return dev_storage + 2234; } } @@ -17698,7 +17641,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp7", 10) == 0) { { -return dev_storage + 1823; +return dev_storage + 1820; } } @@ -17713,7 +17656,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp7", 10) == 0) { { -return dev_storage + 1407; +return dev_storage + 1404; } } @@ -17728,7 +17671,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap7", 10) == 0) { { -return dev_storage + 991; +return dev_storage + 988; } } @@ -17752,7 +17695,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo7", 10) == 0) { { -return dev_storage + 2222; +return dev_storage + 2219; } } @@ -17767,7 +17710,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco7", 10) == 0) { { -return dev_storage + 1808; +return dev_storage + 1805; } } @@ -17782,7 +17725,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo7", 10) == 0) { { -return dev_storage + 1392; +return dev_storage + 1389; } } @@ -17797,7 +17740,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao7", 10) == 0) { { -return dev_storage + 976; +return dev_storage + 973; } } @@ -17821,7 +17764,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn7", 10) == 0) { { -return dev_storage + 2207; +return dev_storage + 2204; } } @@ -17836,7 +17779,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn7", 10) == 0) { { -return dev_storage + 1793; +return dev_storage + 1790; } } @@ -17851,7 +17794,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn7", 10) == 0) { { -return dev_storage + 1377; +return dev_storage + 1374; } } @@ -17866,7 +17809,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan7", 10) == 0) { { -return dev_storage + 961; +return dev_storage + 958; } } @@ -17890,7 +17833,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm7", 10) == 0) { { -return dev_storage + 2192; +return dev_storage + 2189; } } @@ -17905,7 +17848,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm7", 10) == 0) { { -return dev_storage + 1778; +return dev_storage + 1775; } } @@ -17920,7 +17863,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm7", 10) == 0) { { -return dev_storage + 1362; +return dev_storage + 1359; } } @@ -17935,7 +17878,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam7", 10) == 0) { { -return dev_storage + 946; +return dev_storage + 943; } } @@ -17959,7 +17902,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl7", 10) == 0) { { -return dev_storage + 2177; +return dev_storage + 2174; } } @@ -17974,7 +17917,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl7", 10) == 0) { { -return dev_storage + 1763; +return dev_storage + 1760; } } @@ -17989,7 +17932,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl7", 10) == 0) { { -return dev_storage + 1347; +return dev_storage + 1344; } } @@ -18004,7 +17947,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal7", 10) == 0) { { -return dev_storage + 931; +return dev_storage + 928; } } @@ -18028,7 +17971,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk7", 10) == 0) { { -return dev_storage + 2162; +return dev_storage + 2159; } } @@ -18043,7 +17986,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck7", 10) == 0) { { -return dev_storage + 1748; +return dev_storage + 1745; } } @@ -18058,7 +18001,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk7", 10) == 0) { { -return dev_storage + 1332; +return dev_storage + 1329; } } @@ -18073,7 +18016,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak7", 10) == 0) { { -return dev_storage + 916; +return dev_storage + 913; } } @@ -18097,7 +18040,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj7", 10) == 0) { { -return dev_storage + 2147; +return dev_storage + 2144; } } @@ -18112,7 +18055,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj7", 10) == 0) { { -return dev_storage + 1733; +return dev_storage + 1730; } } @@ -18127,7 +18070,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj7", 10) == 0) { { -return dev_storage + 1317; +return dev_storage + 1314; } } @@ -18142,7 +18085,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj7", 10) == 0) { { -return dev_storage + 901; +return dev_storage + 898; } } @@ -18166,7 +18109,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi7", 10) == 0) { { -return dev_storage + 2132; +return dev_storage + 2129; } } @@ -18181,7 +18124,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci7", 10) == 0) { { -return dev_storage + 1718; +return dev_storage + 1715; } } @@ -18196,7 +18139,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi7", 10) == 0) { { -return dev_storage + 1302; +return dev_storage + 1299; } } @@ -18211,7 +18154,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai7", 10) == 0) { { -return dev_storage + 886; +return dev_storage + 883; } } @@ -18235,7 +18178,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh7", 10) == 0) { { -return dev_storage + 2117; +return dev_storage + 2114; } } @@ -18250,7 +18193,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch7", 10) == 0) { { -return dev_storage + 1703; +return dev_storage + 1700; } } @@ -18265,7 +18208,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh7", 10) == 0) { { -return dev_storage + 1287; +return dev_storage + 1284; } } @@ -18280,7 +18223,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah7", 10) == 0) { { -return dev_storage + 871; +return dev_storage + 868; } } @@ -18304,7 +18247,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg7", 10) == 0) { { -return dev_storage + 2102; +return dev_storage + 2099; } } @@ -18319,7 +18262,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg7", 10) == 0) { { -return dev_storage + 1688; +return dev_storage + 1685; } } @@ -18334,7 +18277,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg7", 10) == 0) { { -return dev_storage + 1272; +return dev_storage + 1269; } } @@ -18349,7 +18292,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag7", 10) == 0) { { -return dev_storage + 856; +return dev_storage + 853; } } @@ -18373,7 +18316,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf7", 10) == 0) { { -return dev_storage + 2087; +return dev_storage + 2084; } } @@ -18388,7 +18331,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf7", 10) == 0) { { -return dev_storage + 1673; +return dev_storage + 1670; } } @@ -18403,7 +18346,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf7", 10) == 0) { { -return dev_storage + 1257; +return dev_storage + 1254; } } @@ -18418,7 +18361,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf7", 10) == 0) { { -return dev_storage + 841; +return dev_storage + 838; } } @@ -18442,7 +18385,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde7", 10) == 0) { { -return dev_storage + 2072; +return dev_storage + 2069; } } @@ -18457,7 +18400,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce7", 10) == 0) { { -return dev_storage + 1658; +return dev_storage + 1655; } } @@ -18472,7 +18415,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe7", 10) == 0) { { -return dev_storage + 1242; +return dev_storage + 1239; } } @@ -18487,7 +18430,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae7", 10) == 0) { { -return dev_storage + 826; +return dev_storage + 823; } } @@ -18511,7 +18454,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd7", 10) == 0) { { -return dev_storage + 2057; +return dev_storage + 2054; } } @@ -18526,7 +18469,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd7", 10) == 0) { { -return dev_storage + 1643; +return dev_storage + 1640; } } @@ -18541,7 +18484,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd7", 10) == 0) { { -return dev_storage + 1227; +return dev_storage + 1224; } } @@ -18556,7 +18499,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad7", 10) == 0) { { -return dev_storage + 811; +return dev_storage + 808; } } @@ -18580,7 +18523,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc7", 10) == 0) { { -return dev_storage + 2042; +return dev_storage + 2039; } } @@ -18595,7 +18538,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc7", 10) == 0) { { -return dev_storage + 1628; +return dev_storage + 1625; } } @@ -18610,7 +18553,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc7", 10) == 0) { { -return dev_storage + 1212; +return dev_storage + 1209; } } @@ -18625,7 +18568,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac7", 10) == 0) { { -return dev_storage + 796; +return dev_storage + 793; } } @@ -18649,7 +18592,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb7", 10) == 0) { { -return dev_storage + 2027; +return dev_storage + 2024; } } @@ -18664,7 +18607,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb7", 10) == 0) { { -return dev_storage + 1613; +return dev_storage + 1610; } } @@ -18679,7 +18622,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb7", 10) == 0) { { -return dev_storage + 1197; +return dev_storage + 1194; } } @@ -18694,7 +18637,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab7", 10) == 0) { { -return dev_storage + 781; +return dev_storage + 778; } } @@ -18718,7 +18661,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda7", 10) == 0) { { -return dev_storage + 2012; +return dev_storage + 2009; } } @@ -18733,7 +18676,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca7", 10) == 0) { { -return dev_storage + 1598; +return dev_storage + 1595; } } @@ -18748,7 +18691,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba7", 10) == 0) { { -return dev_storage + 1182; +return dev_storage + 1179; } } @@ -18763,7 +18706,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa7", 10) == 0) { { -return dev_storage + 766; +return dev_storage + 763; } } @@ -18784,7 +18727,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS7", 10) == 0) { { -return dev_storage + 2518; +return dev_storage + 2515; } } @@ -18799,7 +18742,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst97", 10) == 0) { { -return dev_storage + 203; +return dev_storage + 201; } } @@ -18814,7 +18757,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst87", 10) == 0) { { -return dev_storage + 193; +return dev_storage + 191; } } @@ -18829,7 +18772,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst77", 10) == 0) { { -return dev_storage + 183; +return dev_storage + 181; } } @@ -18844,7 +18787,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst67", 10) == 0) { { -return dev_storage + 173; +return dev_storage + 171; } } @@ -18862,7 +18805,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty57", 10) == 0) { { -return dev_storage + 294; +return dev_storage + 291; } } @@ -18877,7 +18820,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst57", 10) == 0) { { -return dev_storage + 163; +return dev_storage + 161; } } @@ -18901,7 +18844,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty47", 10) == 0) { { -return dev_storage + 284; +return dev_storage + 281; } } @@ -18916,7 +18859,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst47", 10) == 0) { { -return dev_storage + 153; +return dev_storage + 151; } } @@ -18940,7 +18883,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty37", 10) == 0) { { -return dev_storage + 274; +return dev_storage + 271; } } @@ -18955,7 +18898,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst37", 10) == 0) { { -return dev_storage + 143; +return dev_storage + 141; } } @@ -18979,7 +18922,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st127", 10) == 0) { { -return dev_storage + 2509; +return dev_storage + 2506; } } @@ -18994,7 +18937,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty27", 10) == 0) { { -return dev_storage + 264; +return dev_storage + 261; } } @@ -19009,7 +18952,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst27", 10) == 0) { { -return dev_storage + 133; +return dev_storage + 131; } } @@ -19033,7 +18976,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st117", 10) == 0) { { -return dev_storage + 2499; +return dev_storage + 2496; } } @@ -19048,7 +18991,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty17", 10) == 0) { { -return dev_storage + 254; +return dev_storage + 251; } } @@ -19063,7 +19006,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst17", 10) == 0) { { -return dev_storage + 123; +return dev_storage + 121; } } @@ -19084,7 +19027,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st107", 10) == 0) { { -return dev_storage + 2489; +return dev_storage + 2486; } } @@ -19111,7 +19054,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz6", 10) == 0) { { -return dev_storage + 1972; +return dev_storage + 1969; } } @@ -19126,7 +19069,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz6", 10) == 0) { { -return dev_storage + 1556; +return dev_storage + 1553; } } @@ -19141,7 +19084,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz6", 10) == 0) { { -return dev_storage + 1140; +return dev_storage + 1137; } } @@ -19165,7 +19108,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy6", 10) == 0) { { -return dev_storage + 1957; +return dev_storage + 1954; } } @@ -19180,7 +19123,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby6", 10) == 0) { { -return dev_storage + 1541; +return dev_storage + 1538; } } @@ -19195,7 +19138,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday6", 10) == 0) { { -return dev_storage + 1125; +return dev_storage + 1122; } } @@ -19219,7 +19162,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx6", 10) == 0) { { -return dev_storage + 2356; +return dev_storage + 2353; } } @@ -19234,7 +19177,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx6", 10) == 0) { { -return dev_storage + 1942; +return dev_storage + 1939; } } @@ -19249,7 +19192,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx6", 10) == 0) { { -return dev_storage + 1526; +return dev_storage + 1523; } } @@ -19264,7 +19207,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax6", 10) == 0) { { -return dev_storage + 1110; +return dev_storage + 1107; } } @@ -19288,7 +19231,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw6", 10) == 0) { { -return dev_storage + 2341; +return dev_storage + 2338; } } @@ -19303,7 +19246,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw6", 10) == 0) { { -return dev_storage + 1927; +return dev_storage + 1924; } } @@ -19318,7 +19261,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw6", 10) == 0) { { -return dev_storage + 1511; +return dev_storage + 1508; } } @@ -19333,7 +19276,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw6", 10) == 0) { { -return dev_storage + 1095; +return dev_storage + 1092; } } @@ -19357,7 +19300,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv6", 10) == 0) { { -return dev_storage + 2326; +return dev_storage + 2323; } } @@ -19372,7 +19315,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv6", 10) == 0) { { -return dev_storage + 1912; +return dev_storage + 1909; } } @@ -19387,7 +19330,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv6", 10) == 0) { { -return dev_storage + 1496; +return dev_storage + 1493; } } @@ -19402,7 +19345,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav6", 10) == 0) { { -return dev_storage + 1080; +return dev_storage + 1077; } } @@ -19426,7 +19369,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu6", 10) == 0) { { -return dev_storage + 2311; +return dev_storage + 2308; } } @@ -19441,7 +19384,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu6", 10) == 0) { { -return dev_storage + 1897; +return dev_storage + 1894; } } @@ -19456,7 +19399,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu6", 10) == 0) { { -return dev_storage + 1481; +return dev_storage + 1478; } } @@ -19471,7 +19414,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau6", 10) == 0) { { -return dev_storage + 1065; +return dev_storage + 1062; } } @@ -19495,7 +19438,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt6", 10) == 0) { { -return dev_storage + 2296; +return dev_storage + 2293; } } @@ -19510,7 +19453,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct6", 10) == 0) { { -return dev_storage + 1882; +return dev_storage + 1879; } } @@ -19525,7 +19468,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt6", 10) == 0) { { -return dev_storage + 1466; +return dev_storage + 1463; } } @@ -19540,7 +19483,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat6", 10) == 0) { { -return dev_storage + 1050; +return dev_storage + 1047; } } @@ -19579,7 +19522,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds6", 10) == 0) { { -return dev_storage + 2281; +return dev_storage + 2278; } } @@ -19594,7 +19537,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs6", 10) == 0) { { -return dev_storage + 1867; +return dev_storage + 1864; } } @@ -19609,7 +19552,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs6", 10) == 0) { { -return dev_storage + 1451; +return dev_storage + 1448; } } @@ -19624,7 +19567,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas6", 10) == 0) { { -return dev_storage + 1035; +return dev_storage + 1032; } } @@ -19648,7 +19591,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr6", 10) == 0) { { -return dev_storage + 2266; +return dev_storage + 2263; } } @@ -19663,7 +19606,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr6", 10) == 0) { { -return dev_storage + 1852; +return dev_storage + 1849; } } @@ -19678,7 +19621,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr6", 10) == 0) { { -return dev_storage + 1436; +return dev_storage + 1433; } } @@ -19693,7 +19636,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar6", 10) == 0) { { -return dev_storage + 1020; +return dev_storage + 1017; } } @@ -19717,7 +19660,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq6", 10) == 0) { { -return dev_storage + 2251; +return dev_storage + 2248; } } @@ -19732,7 +19675,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq6", 10) == 0) { { -return dev_storage + 1837; +return dev_storage + 1834; } } @@ -19747,7 +19690,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq6", 10) == 0) { { -return dev_storage + 1421; +return dev_storage + 1418; } } @@ -19762,7 +19705,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq6", 10) == 0) { { -return dev_storage + 1005; +return dev_storage + 1002; } } @@ -19786,7 +19729,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp6", 10) == 0) { { -return dev_storage + 2236; +return dev_storage + 2233; } } @@ -19801,7 +19744,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp6", 10) == 0) { { -return dev_storage + 1822; +return dev_storage + 1819; } } @@ -19816,7 +19759,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp6", 10) == 0) { { -return dev_storage + 1406; +return dev_storage + 1403; } } @@ -19831,7 +19774,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap6", 10) == 0) { { -return dev_storage + 990; +return dev_storage + 987; } } @@ -19855,7 +19798,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo6", 10) == 0) { { -return dev_storage + 2221; +return dev_storage + 2218; } } @@ -19870,7 +19813,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco6", 10) == 0) { { -return dev_storage + 1807; +return dev_storage + 1804; } } @@ -19885,7 +19828,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo6", 10) == 0) { { -return dev_storage + 1391; +return dev_storage + 1388; } } @@ -19900,7 +19843,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao6", 10) == 0) { { -return dev_storage + 975; +return dev_storage + 972; } } @@ -19924,7 +19867,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn6", 10) == 0) { { -return dev_storage + 2206; +return dev_storage + 2203; } } @@ -19939,7 +19882,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn6", 10) == 0) { { -return dev_storage + 1792; +return dev_storage + 1789; } } @@ -19954,7 +19897,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn6", 10) == 0) { { -return dev_storage + 1376; +return dev_storage + 1373; } } @@ -19969,7 +19912,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan6", 10) == 0) { { -return dev_storage + 960; +return dev_storage + 957; } } @@ -19993,7 +19936,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm6", 10) == 0) { { -return dev_storage + 2191; +return dev_storage + 2188; } } @@ -20008,7 +19951,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm6", 10) == 0) { { -return dev_storage + 1777; +return dev_storage + 1774; } } @@ -20023,7 +19966,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm6", 10) == 0) { { -return dev_storage + 1361; +return dev_storage + 1358; } } @@ -20038,7 +19981,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam6", 10) == 0) { { -return dev_storage + 945; +return dev_storage + 942; } } @@ -20062,7 +20005,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl6", 10) == 0) { { -return dev_storage + 2176; +return dev_storage + 2173; } } @@ -20077,7 +20020,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl6", 10) == 0) { { -return dev_storage + 1762; +return dev_storage + 1759; } } @@ -20092,7 +20035,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl6", 10) == 0) { { -return dev_storage + 1346; +return dev_storage + 1343; } } @@ -20107,7 +20050,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal6", 10) == 0) { { -return dev_storage + 930; +return dev_storage + 927; } } @@ -20131,7 +20074,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk6", 10) == 0) { { -return dev_storage + 2161; +return dev_storage + 2158; } } @@ -20146,7 +20089,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck6", 10) == 0) { { -return dev_storage + 1747; +return dev_storage + 1744; } } @@ -20161,7 +20104,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk6", 10) == 0) { { -return dev_storage + 1331; +return dev_storage + 1328; } } @@ -20176,7 +20119,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak6", 10) == 0) { { -return dev_storage + 915; +return dev_storage + 912; } } @@ -20200,7 +20143,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj6", 10) == 0) { { -return dev_storage + 2146; +return dev_storage + 2143; } } @@ -20215,7 +20158,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj6", 10) == 0) { { -return dev_storage + 1732; +return dev_storage + 1729; } } @@ -20230,7 +20173,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj6", 10) == 0) { { -return dev_storage + 1316; +return dev_storage + 1313; } } @@ -20245,7 +20188,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj6", 10) == 0) { { -return dev_storage + 900; +return dev_storage + 897; } } @@ -20269,7 +20212,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi6", 10) == 0) { { -return dev_storage + 2131; +return dev_storage + 2128; } } @@ -20284,7 +20227,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci6", 10) == 0) { { -return dev_storage + 1717; +return dev_storage + 1714; } } @@ -20299,7 +20242,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi6", 10) == 0) { { -return dev_storage + 1301; +return dev_storage + 1298; } } @@ -20314,7 +20257,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai6", 10) == 0) { { -return dev_storage + 885; +return dev_storage + 882; } } @@ -20338,7 +20281,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh6", 10) == 0) { { -return dev_storage + 2116; +return dev_storage + 2113; } } @@ -20353,7 +20296,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch6", 10) == 0) { { -return dev_storage + 1702; +return dev_storage + 1699; } } @@ -20368,7 +20311,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh6", 10) == 0) { { -return dev_storage + 1286; +return dev_storage + 1283; } } @@ -20383,7 +20326,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah6", 10) == 0) { { -return dev_storage + 870; +return dev_storage + 867; } } @@ -20407,7 +20350,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg6", 10) == 0) { { -return dev_storage + 2101; +return dev_storage + 2098; } } @@ -20422,7 +20365,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg6", 10) == 0) { { -return dev_storage + 1687; +return dev_storage + 1684; } } @@ -20437,7 +20380,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg6", 10) == 0) { { -return dev_storage + 1271; +return dev_storage + 1268; } } @@ -20452,7 +20395,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag6", 10) == 0) { { -return dev_storage + 855; +return dev_storage + 852; } } @@ -20476,7 +20419,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf6", 10) == 0) { { -return dev_storage + 2086; +return dev_storage + 2083; } } @@ -20491,7 +20434,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf6", 10) == 0) { { -return dev_storage + 1672; +return dev_storage + 1669; } } @@ -20506,7 +20449,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf6", 10) == 0) { { -return dev_storage + 1256; +return dev_storage + 1253; } } @@ -20521,7 +20464,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf6", 10) == 0) { { -return dev_storage + 840; +return dev_storage + 837; } } @@ -20545,7 +20488,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde6", 10) == 0) { { -return dev_storage + 2071; +return dev_storage + 2068; } } @@ -20560,7 +20503,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce6", 10) == 0) { { -return dev_storage + 1657; +return dev_storage + 1654; } } @@ -20575,7 +20518,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe6", 10) == 0) { { -return dev_storage + 1241; +return dev_storage + 1238; } } @@ -20590,7 +20533,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae6", 10) == 0) { { -return dev_storage + 825; +return dev_storage + 822; } } @@ -20614,7 +20557,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd6", 10) == 0) { { -return dev_storage + 2056; +return dev_storage + 2053; } } @@ -20629,7 +20572,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd6", 10) == 0) { { -return dev_storage + 1642; +return dev_storage + 1639; } } @@ -20644,7 +20587,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd6", 10) == 0) { { -return dev_storage + 1226; +return dev_storage + 1223; } } @@ -20659,7 +20602,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad6", 10) == 0) { { -return dev_storage + 810; +return dev_storage + 807; } } @@ -20683,7 +20626,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc6", 10) == 0) { { -return dev_storage + 2041; +return dev_storage + 2038; } } @@ -20698,7 +20641,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc6", 10) == 0) { { -return dev_storage + 1627; +return dev_storage + 1624; } } @@ -20713,7 +20656,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc6", 10) == 0) { { -return dev_storage + 1211; +return dev_storage + 1208; } } @@ -20728,7 +20671,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac6", 10) == 0) { { -return dev_storage + 795; +return dev_storage + 792; } } @@ -20752,7 +20695,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb6", 10) == 0) { { -return dev_storage + 2026; +return dev_storage + 2023; } } @@ -20767,7 +20710,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb6", 10) == 0) { { -return dev_storage + 1612; +return dev_storage + 1609; } } @@ -20782,7 +20725,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb6", 10) == 0) { { -return dev_storage + 1196; +return dev_storage + 1193; } } @@ -20797,7 +20740,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab6", 10) == 0) { { -return dev_storage + 780; +return dev_storage + 777; } } @@ -20821,7 +20764,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda6", 10) == 0) { { -return dev_storage + 2011; +return dev_storage + 2008; } } @@ -20836,7 +20779,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca6", 10) == 0) { { -return dev_storage + 1597; +return dev_storage + 1594; } } @@ -20851,7 +20794,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba6", 10) == 0) { { -return dev_storage + 1181; +return dev_storage + 1178; } } @@ -20866,7 +20809,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa6", 10) == 0) { { -return dev_storage + 765; +return dev_storage + 762; } } @@ -20887,7 +20830,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS6", 10) == 0) { { -return dev_storage + 2517; +return dev_storage + 2514; } } @@ -20902,7 +20845,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst96", 10) == 0) { { -return dev_storage + 202; +return dev_storage + 200; } } @@ -20917,7 +20860,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst86", 10) == 0) { { -return dev_storage + 192; +return dev_storage + 190; } } @@ -20932,7 +20875,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst76", 10) == 0) { { -return dev_storage + 182; +return dev_storage + 180; } } @@ -20947,7 +20890,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst66", 10) == 0) { { -return dev_storage + 172; +return dev_storage + 170; } } @@ -20965,7 +20908,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty56", 10) == 0) { { -return dev_storage + 293; +return dev_storage + 290; } } @@ -20980,7 +20923,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst56", 10) == 0) { { -return dev_storage + 162; +return dev_storage + 160; } } @@ -21004,7 +20947,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty46", 10) == 0) { { -return dev_storage + 283; +return dev_storage + 280; } } @@ -21019,7 +20962,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst46", 10) == 0) { { -return dev_storage + 152; +return dev_storage + 150; } } @@ -21043,7 +20986,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty36", 10) == 0) { { -return dev_storage + 273; +return dev_storage + 270; } } @@ -21058,7 +21001,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst36", 10) == 0) { { -return dev_storage + 142; +return dev_storage + 140; } } @@ -21082,7 +21025,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st126", 10) == 0) { { -return dev_storage + 2508; +return dev_storage + 2505; } } @@ -21097,7 +21040,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty26", 10) == 0) { { -return dev_storage + 263; +return dev_storage + 260; } } @@ -21112,7 +21055,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst26", 10) == 0) { { -return dev_storage + 132; +return dev_storage + 130; } } @@ -21136,7 +21079,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st116", 10) == 0) { { -return dev_storage + 2498; +return dev_storage + 2495; } } @@ -21151,7 +21094,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty16", 10) == 0) { { -return dev_storage + 253; +return dev_storage + 250; } } @@ -21166,7 +21109,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst16", 10) == 0) { { -return dev_storage + 122; +return dev_storage + 120; } } @@ -21202,7 +21145,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st106", 10) == 0) { { -return dev_storage + 2488; +return dev_storage + 2485; } } @@ -21226,7 +21169,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz15", 10) == 0) { { -return dev_storage + 733; +return dev_storage + 730; } } @@ -21244,7 +21187,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS5", 10) == 0) { { -return dev_storage + 2516; +return dev_storage + 2513; } } @@ -21259,7 +21202,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty55", 10) == 0) { { -return dev_storage + 292; +return dev_storage + 289; } } @@ -21274,7 +21217,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty45", 10) == 0) { { -return dev_storage + 282; +return dev_storage + 279; } } @@ -21289,7 +21232,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty35", 10) == 0) { { -return dev_storage + 272; +return dev_storage + 269; } } @@ -21304,7 +21247,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty25", 10) == 0) { { -return dev_storage + 262; +return dev_storage + 259; } } @@ -21322,7 +21265,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy15", 10) == 0) { { -return dev_storage + 718; +return dev_storage + 715; } } @@ -21337,7 +21280,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty15", 10) == 0) { { -return dev_storage + 252; +return dev_storage + 249; } } @@ -21364,7 +21307,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx15", 10) == 0) { { -return dev_storage + 703; +return dev_storage + 700; } } @@ -21379,7 +21322,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw15", 10) == 0) { { -return dev_storage + 688; +return dev_storage + 685; } } @@ -21394,7 +21337,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv15", 10) == 0) { { -return dev_storage + 673; +return dev_storage + 670; } } @@ -21409,7 +21352,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu15", 10) == 0) { { -return dev_storage + 658; +return dev_storage + 655; } } @@ -21427,7 +21370,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst95", 10) == 0) { { -return dev_storage + 201; +return dev_storage + 199; } } @@ -21442,7 +21385,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst85", 10) == 0) { { -return dev_storage + 191; +return dev_storage + 189; } } @@ -21457,7 +21400,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst75", 10) == 0) { { -return dev_storage + 181; +return dev_storage + 179; } } @@ -21472,7 +21415,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst65", 10) == 0) { { -return dev_storage + 171; +return dev_storage + 169; } } @@ -21487,7 +21430,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst55", 10) == 0) { { -return dev_storage + 161; +return dev_storage + 159; } } @@ -21502,7 +21445,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst45", 10) == 0) { { -return dev_storage + 151; +return dev_storage + 149; } } @@ -21517,7 +21460,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst35", 10) == 0) { { -return dev_storage + 141; +return dev_storage + 139; } } @@ -21532,7 +21475,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst25", 10) == 0) { { -return dev_storage + 131; +return dev_storage + 129; } } @@ -21550,7 +21493,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt15", 10) == 0) { { -return dev_storage + 643; +return dev_storage + 640; } } @@ -21565,7 +21508,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst15", 10) == 0) { { -return dev_storage + 121; +return dev_storage + 119; } } @@ -21592,7 +21535,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds15", 10) == 0) { { -return dev_storage + 628; +return dev_storage + 625; } } @@ -21607,7 +21550,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr15", 10) == 0) { { -return dev_storage + 613; +return dev_storage + 610; } } @@ -21622,7 +21565,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq15", 10) == 0) { { -return dev_storage + 598; +return dev_storage + 595; } } @@ -21637,7 +21580,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp15", 10) == 0) { { -return dev_storage + 583; +return dev_storage + 580; } } @@ -21652,7 +21595,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo15", 10) == 0) { { -return dev_storage + 568; +return dev_storage + 565; } } @@ -21670,7 +21613,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn15", 10) == 0) { { -return dev_storage + 553; +return dev_storage + 550; } } @@ -21709,7 +21652,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm15", 10) == 0) { { -return dev_storage + 538; +return dev_storage + 535; } } @@ -21745,7 +21688,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl15", 10) == 0) { { -return dev_storage + 523; +return dev_storage + 520; } } @@ -21760,7 +21703,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk15", 10) == 0) { { -return dev_storage + 508; +return dev_storage + 505; } } @@ -21775,7 +21718,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj15", 10) == 0) { { -return dev_storage + 493; +return dev_storage + 490; } } @@ -21790,7 +21733,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi15", 10) == 0) { { -return dev_storage + 478; +return dev_storage + 475; } } @@ -21805,7 +21748,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh15", 10) == 0) { { -return dev_storage + 463; +return dev_storage + 460; } } @@ -21820,7 +21763,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg15", 10) == 0) { { -return dev_storage + 448; +return dev_storage + 445; } } @@ -21835,7 +21778,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf15", 10) == 0) { { -return dev_storage + 433; +return dev_storage + 430; } } @@ -21850,7 +21793,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde15", 10) == 0) { { -return dev_storage + 418; +return dev_storage + 415; } } @@ -21868,7 +21811,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx5", 10) == 0) { { -return dev_storage + 2355; +return dev_storage + 2352; } } @@ -21883,7 +21826,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw5", 10) == 0) { { -return dev_storage + 2340; +return dev_storage + 2337; } } @@ -21898,7 +21841,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv5", 10) == 0) { { -return dev_storage + 2325; +return dev_storage + 2322; } } @@ -21913,7 +21856,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu5", 10) == 0) { { -return dev_storage + 2310; +return dev_storage + 2307; } } @@ -21928,7 +21871,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt5", 10) == 0) { { -return dev_storage + 2295; +return dev_storage + 2292; } } @@ -21943,7 +21886,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds5", 10) == 0) { { -return dev_storage + 2280; +return dev_storage + 2277; } } @@ -21958,7 +21901,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr5", 10) == 0) { { -return dev_storage + 2265; +return dev_storage + 2262; } } @@ -21973,7 +21916,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq5", 10) == 0) { { -return dev_storage + 2250; +return dev_storage + 2247; } } @@ -21988,7 +21931,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp5", 10) == 0) { { -return dev_storage + 2235; +return dev_storage + 2232; } } @@ -22003,7 +21946,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo5", 10) == 0) { { -return dev_storage + 2220; +return dev_storage + 2217; } } @@ -22018,7 +21961,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn5", 10) == 0) { { -return dev_storage + 2205; +return dev_storage + 2202; } } @@ -22033,7 +21976,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm5", 10) == 0) { { -return dev_storage + 2190; +return dev_storage + 2187; } } @@ -22048,7 +21991,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl5", 10) == 0) { { -return dev_storage + 2175; +return dev_storage + 2172; } } @@ -22063,7 +22006,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk5", 10) == 0) { { -return dev_storage + 2160; +return dev_storage + 2157; } } @@ -22078,7 +22021,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj5", 10) == 0) { { -return dev_storage + 2145; +return dev_storage + 2142; } } @@ -22093,7 +22036,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi5", 10) == 0) { { -return dev_storage + 2130; +return dev_storage + 2127; } } @@ -22108,7 +22051,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh5", 10) == 0) { { -return dev_storage + 2115; +return dev_storage + 2112; } } @@ -22123,7 +22066,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg5", 10) == 0) { { -return dev_storage + 2100; +return dev_storage + 2097; } } @@ -22138,7 +22081,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf5", 10) == 0) { { -return dev_storage + 2085; +return dev_storage + 2082; } } @@ -22153,7 +22096,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde5", 10) == 0) { { -return dev_storage + 2070; +return dev_storage + 2067; } } @@ -22168,7 +22111,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd5", 10) == 0) { { -return dev_storage + 2055; +return dev_storage + 2052; } } @@ -22183,7 +22126,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc5", 10) == 0) { { -return dev_storage + 2040; +return dev_storage + 2037; } } @@ -22198,7 +22141,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb5", 10) == 0) { { -return dev_storage + 2025; +return dev_storage + 2022; } } @@ -22213,7 +22156,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda5", 10) == 0) { { -return dev_storage + 2010; +return dev_storage + 2007; } } @@ -22231,7 +22174,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd15", 10) == 0) { { -return dev_storage + 403; +return dev_storage + 400; } } @@ -22246,7 +22189,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd15", 10) == 0) { { -return dev_storage + 317; +return dev_storage + 314; } } @@ -22276,7 +22219,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz5", 10) == 0) { { -return dev_storage + 1971; +return dev_storage + 1968; } } @@ -22291,7 +22234,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy5", 10) == 0) { { -return dev_storage + 1956; +return dev_storage + 1953; } } @@ -22306,7 +22249,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx5", 10) == 0) { { -return dev_storage + 1941; +return dev_storage + 1938; } } @@ -22321,7 +22264,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw5", 10) == 0) { { -return dev_storage + 1926; +return dev_storage + 1923; } } @@ -22336,7 +22279,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv5", 10) == 0) { { -return dev_storage + 1911; +return dev_storage + 1908; } } @@ -22351,7 +22294,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu5", 10) == 0) { { -return dev_storage + 1896; +return dev_storage + 1893; } } @@ -22366,7 +22309,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct5", 10) == 0) { { -return dev_storage + 1881; +return dev_storage + 1878; } } @@ -22381,7 +22324,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs5", 10) == 0) { { -return dev_storage + 1866; +return dev_storage + 1863; } } @@ -22396,7 +22339,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr5", 10) == 0) { { -return dev_storage + 1851; +return dev_storage + 1848; } } @@ -22411,7 +22354,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq5", 10) == 0) { { -return dev_storage + 1836; +return dev_storage + 1833; } } @@ -22426,7 +22369,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp5", 10) == 0) { { -return dev_storage + 1821; +return dev_storage + 1818; } } @@ -22441,7 +22384,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco5", 10) == 0) { { -return dev_storage + 1806; +return dev_storage + 1803; } } @@ -22456,7 +22399,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn5", 10) == 0) { { -return dev_storage + 1791; +return dev_storage + 1788; } } @@ -22471,7 +22414,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm5", 10) == 0) { { -return dev_storage + 1776; +return dev_storage + 1773; } } @@ -22486,7 +22429,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl5", 10) == 0) { { -return dev_storage + 1761; +return dev_storage + 1758; } } @@ -22501,7 +22444,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck5", 10) == 0) { { -return dev_storage + 1746; +return dev_storage + 1743; } } @@ -22516,7 +22459,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj5", 10) == 0) { { -return dev_storage + 1731; +return dev_storage + 1728; } } @@ -22531,7 +22474,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci5", 10) == 0) { { -return dev_storage + 1716; +return dev_storage + 1713; } } @@ -22546,7 +22489,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch5", 10) == 0) { { -return dev_storage + 1701; +return dev_storage + 1698; } } @@ -22561,7 +22504,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg5", 10) == 0) { { -return dev_storage + 1686; +return dev_storage + 1683; } } @@ -22576,7 +22519,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf5", 10) == 0) { { -return dev_storage + 1671; +return dev_storage + 1668; } } @@ -22591,7 +22534,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce5", 10) == 0) { { -return dev_storage + 1656; +return dev_storage + 1653; } } @@ -22606,7 +22549,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd5", 10) == 0) { { -return dev_storage + 1641; +return dev_storage + 1638; } } @@ -22621,7 +22564,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc5", 10) == 0) { { -return dev_storage + 1626; +return dev_storage + 1623; } } @@ -22636,7 +22579,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb5", 10) == 0) { { -return dev_storage + 1611; +return dev_storage + 1608; } } @@ -22651,7 +22594,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca5", 10) == 0) { { -return dev_storage + 1596; +return dev_storage + 1593; } } @@ -22666,7 +22609,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc15", 10) == 0) { { -return dev_storage + 388; +return dev_storage + 385; } } @@ -22690,7 +22633,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz5", 10) == 0) { { -return dev_storage + 1555; +return dev_storage + 1552; } } @@ -22705,7 +22648,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby5", 10) == 0) { { -return dev_storage + 1540; +return dev_storage + 1537; } } @@ -22720,7 +22663,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx5", 10) == 0) { { -return dev_storage + 1525; +return dev_storage + 1522; } } @@ -22735,7 +22678,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw5", 10) == 0) { { -return dev_storage + 1510; +return dev_storage + 1507; } } @@ -22750,7 +22693,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv5", 10) == 0) { { -return dev_storage + 1495; +return dev_storage + 1492; } } @@ -22765,7 +22708,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu5", 10) == 0) { { -return dev_storage + 1480; +return dev_storage + 1477; } } @@ -22780,7 +22723,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt5", 10) == 0) { { -return dev_storage + 1465; +return dev_storage + 1462; } } @@ -22795,7 +22738,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs5", 10) == 0) { { -return dev_storage + 1450; +return dev_storage + 1447; } } @@ -22810,7 +22753,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr5", 10) == 0) { { -return dev_storage + 1435; +return dev_storage + 1432; } } @@ -22825,7 +22768,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq5", 10) == 0) { { -return dev_storage + 1420; +return dev_storage + 1417; } } @@ -22840,7 +22783,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp5", 10) == 0) { { -return dev_storage + 1405; +return dev_storage + 1402; } } @@ -22855,7 +22798,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo5", 10) == 0) { { -return dev_storage + 1390; +return dev_storage + 1387; } } @@ -22870,7 +22813,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn5", 10) == 0) { { -return dev_storage + 1375; +return dev_storage + 1372; } } @@ -22885,7 +22828,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm5", 10) == 0) { { -return dev_storage + 1360; +return dev_storage + 1357; } } @@ -22900,7 +22843,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl5", 10) == 0) { { -return dev_storage + 1345; +return dev_storage + 1342; } } @@ -22915,7 +22858,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk5", 10) == 0) { { -return dev_storage + 1330; +return dev_storage + 1327; } } @@ -22930,7 +22873,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj5", 10) == 0) { { -return dev_storage + 1315; +return dev_storage + 1312; } } @@ -22945,7 +22888,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi5", 10) == 0) { { -return dev_storage + 1300; +return dev_storage + 1297; } } @@ -22960,7 +22903,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh5", 10) == 0) { { -return dev_storage + 1285; +return dev_storage + 1282; } } @@ -22975,7 +22918,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg5", 10) == 0) { { -return dev_storage + 1270; +return dev_storage + 1267; } } @@ -22990,7 +22933,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf5", 10) == 0) { { -return dev_storage + 1255; +return dev_storage + 1252; } } @@ -23005,7 +22948,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe5", 10) == 0) { { -return dev_storage + 1240; +return dev_storage + 1237; } } @@ -23020,7 +22963,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd5", 10) == 0) { { -return dev_storage + 1225; +return dev_storage + 1222; } } @@ -23035,7 +22978,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc5", 10) == 0) { { -return dev_storage + 1210; +return dev_storage + 1207; } } @@ -23050,7 +22993,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb5", 10) == 0) { { -return dev_storage + 1195; +return dev_storage + 1192; } } @@ -23065,7 +23008,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba5", 10) == 0) { { -return dev_storage + 1180; +return dev_storage + 1177; } } @@ -23080,7 +23023,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb15", 10) == 0) { { -return dev_storage + 373; +return dev_storage + 370; } } @@ -23104,7 +23047,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz5", 10) == 0) { { -return dev_storage + 1139; +return dev_storage + 1136; } } @@ -23119,7 +23062,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday5", 10) == 0) { { -return dev_storage + 1124; +return dev_storage + 1121; } } @@ -23134,7 +23077,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax5", 10) == 0) { { -return dev_storage + 1109; +return dev_storage + 1106; } } @@ -23149,7 +23092,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw5", 10) == 0) { { -return dev_storage + 1094; +return dev_storage + 1091; } } @@ -23164,7 +23107,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav5", 10) == 0) { { -return dev_storage + 1079; +return dev_storage + 1076; } } @@ -23179,7 +23122,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau5", 10) == 0) { { -return dev_storage + 1064; +return dev_storage + 1061; } } @@ -23194,7 +23137,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat5", 10) == 0) { { -return dev_storage + 1049; +return dev_storage + 1046; } } @@ -23209,7 +23152,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas5", 10) == 0) { { -return dev_storage + 1034; +return dev_storage + 1031; } } @@ -23224,7 +23167,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar5", 10) == 0) { { -return dev_storage + 1019; +return dev_storage + 1016; } } @@ -23239,7 +23182,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq5", 10) == 0) { { -return dev_storage + 1004; +return dev_storage + 1001; } } @@ -23254,7 +23197,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap5", 10) == 0) { { -return dev_storage + 989; +return dev_storage + 986; } } @@ -23269,7 +23212,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao5", 10) == 0) { { -return dev_storage + 974; +return dev_storage + 971; } } @@ -23284,7 +23227,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan5", 10) == 0) { { -return dev_storage + 959; +return dev_storage + 956; } } @@ -23299,7 +23242,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam5", 10) == 0) { { -return dev_storage + 944; +return dev_storage + 941; } } @@ -23314,7 +23257,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal5", 10) == 0) { { -return dev_storage + 929; +return dev_storage + 926; } } @@ -23329,7 +23272,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak5", 10) == 0) { { -return dev_storage + 914; +return dev_storage + 911; } } @@ -23344,7 +23287,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj5", 10) == 0) { { -return dev_storage + 899; +return dev_storage + 896; } } @@ -23359,7 +23302,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai5", 10) == 0) { { -return dev_storage + 884; +return dev_storage + 881; } } @@ -23374,7 +23317,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah5", 10) == 0) { { -return dev_storage + 869; +return dev_storage + 866; } } @@ -23389,7 +23332,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag5", 10) == 0) { { -return dev_storage + 854; +return dev_storage + 851; } } @@ -23404,7 +23347,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf5", 10) == 0) { { -return dev_storage + 839; +return dev_storage + 836; } } @@ -23419,7 +23362,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae5", 10) == 0) { { -return dev_storage + 824; +return dev_storage + 821; } } @@ -23434,7 +23377,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad5", 10) == 0) { { -return dev_storage + 809; +return dev_storage + 806; } } @@ -23449,7 +23392,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac5", 10) == 0) { { -return dev_storage + 794; +return dev_storage + 791; } } @@ -23464,7 +23407,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab5", 10) == 0) { { -return dev_storage + 779; +return dev_storage + 776; } } @@ -23479,7 +23422,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa5", 10) == 0) { { -return dev_storage + 764; +return dev_storage + 761; } } @@ -23494,7 +23437,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda15", 10) == 0) { { -return dev_storage + 358; +return dev_storage + 355; } } @@ -23518,7 +23461,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st125", 10) == 0) { { -return dev_storage + 2507; +return dev_storage + 2504; } } @@ -23533,7 +23476,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st115", 10) == 0) { { -return dev_storage + 2497; +return dev_storage + 2494; } } @@ -23548,7 +23491,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st105", 10) == 0) { { -return dev_storage + 2487; +return dev_storage + 2484; } } @@ -23578,7 +23521,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz14", 10) == 0) { { -return dev_storage + 732; +return dev_storage + 729; } } @@ -23596,7 +23539,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS4", 10) == 0) { { -return dev_storage + 2515; +return dev_storage + 2512; } } @@ -23611,7 +23554,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty54", 10) == 0) { { -return dev_storage + 291; +return dev_storage + 288; } } @@ -23626,7 +23569,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty44", 10) == 0) { { -return dev_storage + 281; +return dev_storage + 278; } } @@ -23641,7 +23584,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty34", 10) == 0) { { -return dev_storage + 271; +return dev_storage + 268; } } @@ -23656,7 +23599,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty24", 10) == 0) { { -return dev_storage + 261; +return dev_storage + 258; } } @@ -23674,7 +23617,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy14", 10) == 0) { { -return dev_storage + 717; +return dev_storage + 714; } } @@ -23689,7 +23632,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty14", 10) == 0) { { -return dev_storage + 251; +return dev_storage + 248; } } @@ -23716,7 +23659,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx14", 10) == 0) { { -return dev_storage + 702; +return dev_storage + 699; } } @@ -23731,7 +23674,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw14", 10) == 0) { { -return dev_storage + 687; +return dev_storage + 684; } } @@ -23746,7 +23689,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv14", 10) == 0) { { -return dev_storage + 672; +return dev_storage + 669; } } @@ -23761,7 +23704,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu14", 10) == 0) { { -return dev_storage + 657; +return dev_storage + 654; } } @@ -23779,7 +23722,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst94", 10) == 0) { { -return dev_storage + 200; +return dev_storage + 198; } } @@ -23794,7 +23737,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst84", 10) == 0) { { -return dev_storage + 190; +return dev_storage + 188; } } @@ -23809,7 +23752,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst74", 10) == 0) { { -return dev_storage + 180; +return dev_storage + 178; } } @@ -23824,7 +23767,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst64", 10) == 0) { { -return dev_storage + 170; +return dev_storage + 168; } } @@ -23839,7 +23782,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst54", 10) == 0) { { -return dev_storage + 160; +return dev_storage + 158; } } @@ -23854,7 +23797,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst44", 10) == 0) { { -return dev_storage + 150; +return dev_storage + 148; } } @@ -23869,7 +23812,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst34", 10) == 0) { { -return dev_storage + 140; +return dev_storage + 138; } } @@ -23884,7 +23827,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst24", 10) == 0) { { -return dev_storage + 130; +return dev_storage + 128; } } @@ -23902,7 +23845,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt14", 10) == 0) { { -return dev_storage + 642; +return dev_storage + 639; } } @@ -23917,7 +23860,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst14", 10) == 0) { { -return dev_storage + 120; +return dev_storage + 118; } } @@ -23944,7 +23887,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds14", 10) == 0) { { -return dev_storage + 627; +return dev_storage + 624; } } @@ -23959,7 +23902,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr14", 10) == 0) { { -return dev_storage + 612; +return dev_storage + 609; } } @@ -23974,7 +23917,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq14", 10) == 0) { { -return dev_storage + 597; +return dev_storage + 594; } } @@ -23989,7 +23932,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp14", 10) == 0) { { -return dev_storage + 582; +return dev_storage + 579; } } @@ -24004,7 +23947,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo14", 10) == 0) { { -return dev_storage + 567; +return dev_storage + 564; } } @@ -24022,7 +23965,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn14", 10) == 0) { { -return dev_storage + 552; +return dev_storage + 549; } } @@ -24061,7 +24004,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm14", 10) == 0) { { -return dev_storage + 537; +return dev_storage + 534; } } @@ -24097,7 +24040,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl14", 10) == 0) { { -return dev_storage + 522; +return dev_storage + 519; } } @@ -24112,7 +24055,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk14", 10) == 0) { { -return dev_storage + 507; +return dev_storage + 504; } } @@ -24127,7 +24070,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj14", 10) == 0) { { -return dev_storage + 492; +return dev_storage + 489; } } @@ -24142,7 +24085,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi14", 10) == 0) { { -return dev_storage + 477; +return dev_storage + 474; } } @@ -24157,7 +24100,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh14", 10) == 0) { { -return dev_storage + 462; +return dev_storage + 459; } } @@ -24172,7 +24115,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg14", 10) == 0) { { -return dev_storage + 447; +return dev_storage + 444; } } @@ -24187,7 +24130,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf14", 10) == 0) { { -return dev_storage + 432; +return dev_storage + 429; } } @@ -24202,7 +24145,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde14", 10) == 0) { { -return dev_storage + 417; +return dev_storage + 414; } } @@ -24220,7 +24163,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx4", 10) == 0) { { -return dev_storage + 2354; +return dev_storage + 2351; } } @@ -24235,7 +24178,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw4", 10) == 0) { { -return dev_storage + 2339; +return dev_storage + 2336; } } @@ -24250,7 +24193,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv4", 10) == 0) { { -return dev_storage + 2324; +return dev_storage + 2321; } } @@ -24265,7 +24208,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu4", 10) == 0) { { -return dev_storage + 2309; +return dev_storage + 2306; } } @@ -24280,7 +24223,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt4", 10) == 0) { { -return dev_storage + 2294; +return dev_storage + 2291; } } @@ -24295,7 +24238,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds4", 10) == 0) { { -return dev_storage + 2279; +return dev_storage + 2276; } } @@ -24310,7 +24253,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr4", 10) == 0) { { -return dev_storage + 2264; +return dev_storage + 2261; } } @@ -24325,7 +24268,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq4", 10) == 0) { { -return dev_storage + 2249; +return dev_storage + 2246; } } @@ -24340,7 +24283,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp4", 10) == 0) { { -return dev_storage + 2234; +return dev_storage + 2231; } } @@ -24355,7 +24298,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo4", 10) == 0) { { -return dev_storage + 2219; +return dev_storage + 2216; } } @@ -24370,7 +24313,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn4", 10) == 0) { { -return dev_storage + 2204; +return dev_storage + 2201; } } @@ -24385,7 +24328,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm4", 10) == 0) { { -return dev_storage + 2189; +return dev_storage + 2186; } } @@ -24400,7 +24343,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl4", 10) == 0) { { -return dev_storage + 2174; +return dev_storage + 2171; } } @@ -24415,7 +24358,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk4", 10) == 0) { { -return dev_storage + 2159; +return dev_storage + 2156; } } @@ -24430,7 +24373,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj4", 10) == 0) { { -return dev_storage + 2144; +return dev_storage + 2141; } } @@ -24445,7 +24388,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi4", 10) == 0) { { -return dev_storage + 2129; +return dev_storage + 2126; } } @@ -24460,7 +24403,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh4", 10) == 0) { { -return dev_storage + 2114; +return dev_storage + 2111; } } @@ -24475,7 +24418,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg4", 10) == 0) { { -return dev_storage + 2099; +return dev_storage + 2096; } } @@ -24490,7 +24433,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf4", 10) == 0) { { -return dev_storage + 2084; +return dev_storage + 2081; } } @@ -24505,7 +24448,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde4", 10) == 0) { { -return dev_storage + 2069; +return dev_storage + 2066; } } @@ -24520,7 +24463,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd4", 10) == 0) { { -return dev_storage + 2054; +return dev_storage + 2051; } } @@ -24535,7 +24478,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc4", 10) == 0) { { -return dev_storage + 2039; +return dev_storage + 2036; } } @@ -24550,7 +24493,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb4", 10) == 0) { { -return dev_storage + 2024; +return dev_storage + 2021; } } @@ -24565,7 +24508,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda4", 10) == 0) { { -return dev_storage + 2009; +return dev_storage + 2006; } } @@ -24583,7 +24526,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd14", 10) == 0) { { -return dev_storage + 402; +return dev_storage + 399; } } @@ -24598,7 +24541,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd14", 10) == 0) { { -return dev_storage + 316; +return dev_storage + 313; } } @@ -24628,7 +24571,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz4", 10) == 0) { { -return dev_storage + 1970; +return dev_storage + 1967; } } @@ -24643,7 +24586,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy4", 10) == 0) { { -return dev_storage + 1955; +return dev_storage + 1952; } } @@ -24658,7 +24601,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx4", 10) == 0) { { -return dev_storage + 1940; +return dev_storage + 1937; } } @@ -24673,7 +24616,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw4", 10) == 0) { { -return dev_storage + 1925; +return dev_storage + 1922; } } @@ -24688,7 +24631,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv4", 10) == 0) { { -return dev_storage + 1910; +return dev_storage + 1907; } } @@ -24703,7 +24646,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu4", 10) == 0) { { -return dev_storage + 1895; +return dev_storage + 1892; } } @@ -24718,7 +24661,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct4", 10) == 0) { { -return dev_storage + 1880; +return dev_storage + 1877; } } @@ -24733,7 +24676,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs4", 10) == 0) { { -return dev_storage + 1865; +return dev_storage + 1862; } } @@ -24748,7 +24691,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr4", 10) == 0) { { -return dev_storage + 1850; +return dev_storage + 1847; } } @@ -24763,7 +24706,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq4", 10) == 0) { { -return dev_storage + 1835; +return dev_storage + 1832; } } @@ -24778,7 +24721,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp4", 10) == 0) { { -return dev_storage + 1820; +return dev_storage + 1817; } } @@ -24793,7 +24736,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco4", 10) == 0) { { -return dev_storage + 1805; +return dev_storage + 1802; } } @@ -24808,7 +24751,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn4", 10) == 0) { { -return dev_storage + 1790; +return dev_storage + 1787; } } @@ -24823,7 +24766,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm4", 10) == 0) { { -return dev_storage + 1775; +return dev_storage + 1772; } } @@ -24838,7 +24781,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl4", 10) == 0) { { -return dev_storage + 1760; +return dev_storage + 1757; } } @@ -24853,7 +24796,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck4", 10) == 0) { { -return dev_storage + 1745; +return dev_storage + 1742; } } @@ -24868,7 +24811,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj4", 10) == 0) { { -return dev_storage + 1730; +return dev_storage + 1727; } } @@ -24883,7 +24826,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci4", 10) == 0) { { -return dev_storage + 1715; +return dev_storage + 1712; } } @@ -24898,7 +24841,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch4", 10) == 0) { { -return dev_storage + 1700; +return dev_storage + 1697; } } @@ -24913,7 +24856,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg4", 10) == 0) { { -return dev_storage + 1685; +return dev_storage + 1682; } } @@ -24928,7 +24871,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf4", 10) == 0) { { -return dev_storage + 1670; +return dev_storage + 1667; } } @@ -24943,7 +24886,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce4", 10) == 0) { { -return dev_storage + 1655; +return dev_storage + 1652; } } @@ -24958,7 +24901,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd4", 10) == 0) { { -return dev_storage + 1640; +return dev_storage + 1637; } } @@ -24973,7 +24916,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc4", 10) == 0) { { -return dev_storage + 1625; +return dev_storage + 1622; } } @@ -24988,7 +24931,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb4", 10) == 0) { { -return dev_storage + 1610; +return dev_storage + 1607; } } @@ -25003,7 +24946,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca4", 10) == 0) { { -return dev_storage + 1595; +return dev_storage + 1592; } } @@ -25018,7 +24961,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc14", 10) == 0) { { -return dev_storage + 387; +return dev_storage + 384; } } @@ -25042,7 +24985,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz4", 10) == 0) { { -return dev_storage + 1554; +return dev_storage + 1551; } } @@ -25057,7 +25000,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby4", 10) == 0) { { -return dev_storage + 1539; +return dev_storage + 1536; } } @@ -25072,7 +25015,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx4", 10) == 0) { { -return dev_storage + 1524; +return dev_storage + 1521; } } @@ -25087,7 +25030,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw4", 10) == 0) { { -return dev_storage + 1509; +return dev_storage + 1506; } } @@ -25102,7 +25045,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv4", 10) == 0) { { -return dev_storage + 1494; +return dev_storage + 1491; } } @@ -25117,7 +25060,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu4", 10) == 0) { { -return dev_storage + 1479; +return dev_storage + 1476; } } @@ -25132,7 +25075,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt4", 10) == 0) { { -return dev_storage + 1464; +return dev_storage + 1461; } } @@ -25147,7 +25090,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs4", 10) == 0) { { -return dev_storage + 1449; +return dev_storage + 1446; } } @@ -25162,7 +25105,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr4", 10) == 0) { { -return dev_storage + 1434; +return dev_storage + 1431; } } @@ -25177,7 +25120,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq4", 10) == 0) { { -return dev_storage + 1419; +return dev_storage + 1416; } } @@ -25192,7 +25135,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp4", 10) == 0) { { -return dev_storage + 1404; +return dev_storage + 1401; } } @@ -25207,7 +25150,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo4", 10) == 0) { { -return dev_storage + 1389; +return dev_storage + 1386; } } @@ -25222,7 +25165,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn4", 10) == 0) { { -return dev_storage + 1374; +return dev_storage + 1371; } } @@ -25237,7 +25180,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm4", 10) == 0) { { -return dev_storage + 1359; +return dev_storage + 1356; } } @@ -25252,7 +25195,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl4", 10) == 0) { { -return dev_storage + 1344; +return dev_storage + 1341; } } @@ -25267,7 +25210,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk4", 10) == 0) { { -return dev_storage + 1329; +return dev_storage + 1326; } } @@ -25282,7 +25225,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj4", 10) == 0) { { -return dev_storage + 1314; +return dev_storage + 1311; } } @@ -25297,7 +25240,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi4", 10) == 0) { { -return dev_storage + 1299; +return dev_storage + 1296; } } @@ -25312,7 +25255,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh4", 10) == 0) { { -return dev_storage + 1284; +return dev_storage + 1281; } } @@ -25327,7 +25270,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg4", 10) == 0) { { -return dev_storage + 1269; +return dev_storage + 1266; } } @@ -25342,7 +25285,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf4", 10) == 0) { { -return dev_storage + 1254; +return dev_storage + 1251; } } @@ -25357,7 +25300,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe4", 10) == 0) { { -return dev_storage + 1239; +return dev_storage + 1236; } } @@ -25372,7 +25315,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd4", 10) == 0) { { -return dev_storage + 1224; +return dev_storage + 1221; } } @@ -25387,7 +25330,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc4", 10) == 0) { { -return dev_storage + 1209; +return dev_storage + 1206; } } @@ -25402,7 +25345,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb4", 10) == 0) { { -return dev_storage + 1194; +return dev_storage + 1191; } } @@ -25417,7 +25360,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba4", 10) == 0) { { -return dev_storage + 1179; +return dev_storage + 1176; } } @@ -25432,7 +25375,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb14", 10) == 0) { { -return dev_storage + 372; +return dev_storage + 369; } } @@ -25456,7 +25399,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz4", 10) == 0) { { -return dev_storage + 1138; +return dev_storage + 1135; } } @@ -25471,7 +25414,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday4", 10) == 0) { { -return dev_storage + 1123; +return dev_storage + 1120; } } @@ -25486,7 +25429,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax4", 10) == 0) { { -return dev_storage + 1108; +return dev_storage + 1105; } } @@ -25501,7 +25444,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw4", 10) == 0) { { -return dev_storage + 1093; +return dev_storage + 1090; } } @@ -25516,7 +25459,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav4", 10) == 0) { { -return dev_storage + 1078; +return dev_storage + 1075; } } @@ -25531,7 +25474,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau4", 10) == 0) { { -return dev_storage + 1063; +return dev_storage + 1060; } } @@ -25546,7 +25489,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat4", 10) == 0) { { -return dev_storage + 1048; +return dev_storage + 1045; } } @@ -25561,7 +25504,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas4", 10) == 0) { { -return dev_storage + 1033; +return dev_storage + 1030; } } @@ -25576,7 +25519,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar4", 10) == 0) { { -return dev_storage + 1018; +return dev_storage + 1015; } } @@ -25591,7 +25534,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq4", 10) == 0) { { -return dev_storage + 1003; +return dev_storage + 1000; } } @@ -25606,7 +25549,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap4", 10) == 0) { { -return dev_storage + 988; +return dev_storage + 985; } } @@ -25621,7 +25564,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao4", 10) == 0) { { -return dev_storage + 973; +return dev_storage + 970; } } @@ -25636,7 +25579,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan4", 10) == 0) { { -return dev_storage + 958; +return dev_storage + 955; } } @@ -25651,7 +25594,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam4", 10) == 0) { { -return dev_storage + 943; +return dev_storage + 940; } } @@ -25666,7 +25609,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal4", 10) == 0) { { -return dev_storage + 928; +return dev_storage + 925; } } @@ -25681,7 +25624,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak4", 10) == 0) { { -return dev_storage + 913; +return dev_storage + 910; } } @@ -25696,7 +25639,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj4", 10) == 0) { { -return dev_storage + 898; +return dev_storage + 895; } } @@ -25711,7 +25654,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai4", 10) == 0) { { -return dev_storage + 883; +return dev_storage + 880; } } @@ -25726,7 +25669,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah4", 10) == 0) { { -return dev_storage + 868; +return dev_storage + 865; } } @@ -25741,7 +25684,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag4", 10) == 0) { { -return dev_storage + 853; +return dev_storage + 850; } } @@ -25756,7 +25699,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf4", 10) == 0) { { -return dev_storage + 838; +return dev_storage + 835; } } @@ -25771,7 +25714,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae4", 10) == 0) { { -return dev_storage + 823; +return dev_storage + 820; } } @@ -25786,7 +25729,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad4", 10) == 0) { { -return dev_storage + 808; +return dev_storage + 805; } } @@ -25801,7 +25744,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac4", 10) == 0) { { -return dev_storage + 793; +return dev_storage + 790; } } @@ -25816,7 +25759,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab4", 10) == 0) { { -return dev_storage + 778; +return dev_storage + 775; } } @@ -25831,7 +25774,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa4", 10) == 0) { { -return dev_storage + 763; +return dev_storage + 760; } } @@ -25846,7 +25789,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda14", 10) == 0) { { -return dev_storage + 357; +return dev_storage + 354; } } @@ -25870,7 +25813,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st124", 10) == 0) { { -return dev_storage + 2506; +return dev_storage + 2503; } } @@ -25885,7 +25828,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st114", 10) == 0) { { -return dev_storage + 2496; +return dev_storage + 2493; } } @@ -25900,7 +25843,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st104", 10) == 0) { { -return dev_storage + 2486; +return dev_storage + 2483; } } @@ -25930,7 +25873,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz13", 10) == 0) { { -return dev_storage + 731; +return dev_storage + 728; } } @@ -25948,7 +25891,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS3", 10) == 0) { { -return dev_storage + 2514; +return dev_storage + 2511; } } @@ -25963,7 +25906,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty63", 10) == 0) { { -return dev_storage + 300; +return dev_storage + 297; } } @@ -25978,7 +25921,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty53", 10) == 0) { { -return dev_storage + 290; +return dev_storage + 287; } } @@ -25993,7 +25936,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty43", 10) == 0) { { -return dev_storage + 280; +return dev_storage + 277; } } @@ -26008,7 +25951,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty33", 10) == 0) { { -return dev_storage + 270; +return dev_storage + 267; } } @@ -26023,7 +25966,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty23", 10) == 0) { { -return dev_storage + 260; +return dev_storage + 257; } } @@ -26041,7 +25984,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy13", 10) == 0) { { -return dev_storage + 716; +return dev_storage + 713; } } @@ -26056,7 +25999,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty13", 10) == 0) { { -return dev_storage + 250; +return dev_storage + 247; } } @@ -26083,7 +26026,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx13", 10) == 0) { { -return dev_storage + 701; +return dev_storage + 698; } } @@ -26098,7 +26041,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw13", 10) == 0) { { -return dev_storage + 686; +return dev_storage + 683; } } @@ -26113,7 +26056,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv13", 10) == 0) { { -return dev_storage + 671; +return dev_storage + 668; } } @@ -26128,7 +26071,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu13", 10) == 0) { { -return dev_storage + 656; +return dev_storage + 653; } } @@ -26146,7 +26089,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst93", 10) == 0) { { -return dev_storage + 199; +return dev_storage + 197; } } @@ -26161,7 +26104,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst83", 10) == 0) { { -return dev_storage + 189; +return dev_storage + 187; } } @@ -26176,7 +26119,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst73", 10) == 0) { { -return dev_storage + 179; +return dev_storage + 177; } } @@ -26191,7 +26134,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst63", 10) == 0) { { -return dev_storage + 169; +return dev_storage + 167; } } @@ -26206,7 +26149,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst53", 10) == 0) { { -return dev_storage + 159; +return dev_storage + 157; } } @@ -26221,7 +26164,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst43", 10) == 0) { { -return dev_storage + 149; +return dev_storage + 147; } } @@ -26236,7 +26179,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst33", 10) == 0) { { -return dev_storage + 139; +return dev_storage + 137; } } @@ -26251,7 +26194,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst23", 10) == 0) { { -return dev_storage + 129; +return dev_storage + 127; } } @@ -26269,7 +26212,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt13", 10) == 0) { { -return dev_storage + 641; +return dev_storage + 638; } } @@ -26284,7 +26227,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst13", 10) == 0) { { -return dev_storage + 119; +return dev_storage + 117; } } @@ -26311,7 +26254,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds13", 10) == 0) { { -return dev_storage + 626; +return dev_storage + 623; } } @@ -26326,7 +26269,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr13", 10) == 0) { { -return dev_storage + 611; +return dev_storage + 608; } } @@ -26341,7 +26284,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq13", 10) == 0) { { -return dev_storage + 596; +return dev_storage + 593; } } @@ -26356,7 +26299,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp13", 10) == 0) { { -return dev_storage + 581; +return dev_storage + 578; } } @@ -26371,7 +26314,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo13", 10) == 0) { { -return dev_storage + 566; +return dev_storage + 563; } } @@ -26389,7 +26332,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn13", 10) == 0) { { -return dev_storage + 551; +return dev_storage + 548; } } @@ -26428,7 +26371,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm13", 10) == 0) { { -return dev_storage + 536; +return dev_storage + 533; } } @@ -26464,7 +26407,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl13", 10) == 0) { { -return dev_storage + 521; +return dev_storage + 518; } } @@ -26479,7 +26422,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk13", 10) == 0) { { -return dev_storage + 506; +return dev_storage + 503; } } @@ -26494,7 +26437,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj13", 10) == 0) { { -return dev_storage + 491; +return dev_storage + 488; } } @@ -26509,7 +26452,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi13", 10) == 0) { { -return dev_storage + 476; +return dev_storage + 473; } } @@ -26524,7 +26467,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh13", 10) == 0) { { -return dev_storage + 461; +return dev_storage + 458; } } @@ -26539,7 +26482,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg13", 10) == 0) { { -return dev_storage + 446; +return dev_storage + 443; } } @@ -26554,7 +26497,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf13", 10) == 0) { { -return dev_storage + 431; +return dev_storage + 428; } } @@ -26569,7 +26512,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde13", 10) == 0) { { -return dev_storage + 416; +return dev_storage + 413; } } @@ -26587,7 +26530,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx3", 10) == 0) { { -return dev_storage + 2353; +return dev_storage + 2350; } } @@ -26602,7 +26545,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw3", 10) == 0) { { -return dev_storage + 2338; +return dev_storage + 2335; } } @@ -26617,7 +26560,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv3", 10) == 0) { { -return dev_storage + 2323; +return dev_storage + 2320; } } @@ -26632,7 +26575,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu3", 10) == 0) { { -return dev_storage + 2308; +return dev_storage + 2305; } } @@ -26647,7 +26590,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt3", 10) == 0) { { -return dev_storage + 2293; +return dev_storage + 2290; } } @@ -26662,7 +26605,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds3", 10) == 0) { { -return dev_storage + 2278; +return dev_storage + 2275; } } @@ -26677,7 +26620,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr3", 10) == 0) { { -return dev_storage + 2263; +return dev_storage + 2260; } } @@ -26692,7 +26635,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq3", 10) == 0) { { -return dev_storage + 2248; +return dev_storage + 2245; } } @@ -26707,7 +26650,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp3", 10) == 0) { { -return dev_storage + 2233; +return dev_storage + 2230; } } @@ -26722,7 +26665,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo3", 10) == 0) { { -return dev_storage + 2218; +return dev_storage + 2215; } } @@ -26737,7 +26680,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn3", 10) == 0) { { -return dev_storage + 2203; +return dev_storage + 2200; } } @@ -26752,7 +26695,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm3", 10) == 0) { { -return dev_storage + 2188; +return dev_storage + 2185; } } @@ -26767,7 +26710,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl3", 10) == 0) { { -return dev_storage + 2173; +return dev_storage + 2170; } } @@ -26782,7 +26725,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk3", 10) == 0) { { -return dev_storage + 2158; +return dev_storage + 2155; } } @@ -26797,7 +26740,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj3", 10) == 0) { { -return dev_storage + 2143; +return dev_storage + 2140; } } @@ -26812,7 +26755,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi3", 10) == 0) { { -return dev_storage + 2128; +return dev_storage + 2125; } } @@ -26827,7 +26770,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh3", 10) == 0) { { -return dev_storage + 2113; +return dev_storage + 2110; } } @@ -26842,7 +26785,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg3", 10) == 0) { { -return dev_storage + 2098; +return dev_storage + 2095; } } @@ -26857,7 +26800,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf3", 10) == 0) { { -return dev_storage + 2083; +return dev_storage + 2080; } } @@ -26872,7 +26815,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde3", 10) == 0) { { -return dev_storage + 2068; +return dev_storage + 2065; } } @@ -26887,7 +26830,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd3", 10) == 0) { { -return dev_storage + 2053; +return dev_storage + 2050; } } @@ -26902,7 +26845,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc3", 10) == 0) { { -return dev_storage + 2038; +return dev_storage + 2035; } } @@ -26917,7 +26860,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb3", 10) == 0) { { -return dev_storage + 2023; +return dev_storage + 2020; } } @@ -26932,7 +26875,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda3", 10) == 0) { { -return dev_storage + 2008; +return dev_storage + 2005; } } @@ -26950,7 +26893,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd13", 10) == 0) { { -return dev_storage + 401; +return dev_storage + 398; } } @@ -26965,7 +26908,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd13", 10) == 0) { { -return dev_storage + 315; +return dev_storage + 312; } } @@ -26995,7 +26938,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz3", 10) == 0) { { -return dev_storage + 1969; +return dev_storage + 1966; } } @@ -27010,7 +26953,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy3", 10) == 0) { { -return dev_storage + 1954; +return dev_storage + 1951; } } @@ -27025,7 +26968,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx3", 10) == 0) { { -return dev_storage + 1939; +return dev_storage + 1936; } } @@ -27040,7 +26983,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw3", 10) == 0) { { -return dev_storage + 1924; +return dev_storage + 1921; } } @@ -27055,7 +26998,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv3", 10) == 0) { { -return dev_storage + 1909; +return dev_storage + 1906; } } @@ -27070,7 +27013,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu3", 10) == 0) { { -return dev_storage + 1894; +return dev_storage + 1891; } } @@ -27085,7 +27028,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct3", 10) == 0) { { -return dev_storage + 1879; +return dev_storage + 1876; } } @@ -27100,7 +27043,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs3", 10) == 0) { { -return dev_storage + 1864; +return dev_storage + 1861; } } @@ -27115,7 +27058,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr3", 10) == 0) { { -return dev_storage + 1849; +return dev_storage + 1846; } } @@ -27130,7 +27073,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq3", 10) == 0) { { -return dev_storage + 1834; +return dev_storage + 1831; } } @@ -27145,7 +27088,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp3", 10) == 0) { { -return dev_storage + 1819; +return dev_storage + 1816; } } @@ -27160,7 +27103,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco3", 10) == 0) { { -return dev_storage + 1804; +return dev_storage + 1801; } } @@ -27175,7 +27118,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn3", 10) == 0) { { -return dev_storage + 1789; +return dev_storage + 1786; } } @@ -27190,7 +27133,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm3", 10) == 0) { { -return dev_storage + 1774; +return dev_storage + 1771; } } @@ -27205,7 +27148,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl3", 10) == 0) { { -return dev_storage + 1759; +return dev_storage + 1756; } } @@ -27220,7 +27163,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck3", 10) == 0) { { -return dev_storage + 1744; +return dev_storage + 1741; } } @@ -27235,7 +27178,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj3", 10) == 0) { { -return dev_storage + 1729; +return dev_storage + 1726; } } @@ -27250,7 +27193,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci3", 10) == 0) { { -return dev_storage + 1714; +return dev_storage + 1711; } } @@ -27265,7 +27208,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch3", 10) == 0) { { -return dev_storage + 1699; +return dev_storage + 1696; } } @@ -27280,7 +27223,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg3", 10) == 0) { { -return dev_storage + 1684; +return dev_storage + 1681; } } @@ -27295,7 +27238,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf3", 10) == 0) { { -return dev_storage + 1669; +return dev_storage + 1666; } } @@ -27310,7 +27253,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce3", 10) == 0) { { -return dev_storage + 1654; +return dev_storage + 1651; } } @@ -27325,7 +27268,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd3", 10) == 0) { { -return dev_storage + 1639; +return dev_storage + 1636; } } @@ -27340,7 +27283,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc3", 10) == 0) { { -return dev_storage + 1624; +return dev_storage + 1621; } } @@ -27355,7 +27298,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb3", 10) == 0) { { -return dev_storage + 1609; +return dev_storage + 1606; } } @@ -27370,7 +27313,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca3", 10) == 0) { { -return dev_storage + 1594; +return dev_storage + 1591; } } @@ -27385,7 +27328,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc13", 10) == 0) { { -return dev_storage + 386; +return dev_storage + 383; } } @@ -27409,7 +27352,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz3", 10) == 0) { { -return dev_storage + 1553; +return dev_storage + 1550; } } @@ -27424,7 +27367,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby3", 10) == 0) { { -return dev_storage + 1538; +return dev_storage + 1535; } } @@ -27439,7 +27382,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx3", 10) == 0) { { -return dev_storage + 1523; +return dev_storage + 1520; } } @@ -27454,7 +27397,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw3", 10) == 0) { { -return dev_storage + 1508; +return dev_storage + 1505; } } @@ -27469,7 +27412,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv3", 10) == 0) { { -return dev_storage + 1493; +return dev_storage + 1490; } } @@ -27484,7 +27427,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu3", 10) == 0) { { -return dev_storage + 1478; +return dev_storage + 1475; } } @@ -27499,7 +27442,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt3", 10) == 0) { { -return dev_storage + 1463; +return dev_storage + 1460; } } @@ -27514,7 +27457,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs3", 10) == 0) { { -return dev_storage + 1448; +return dev_storage + 1445; } } @@ -27529,7 +27472,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr3", 10) == 0) { { -return dev_storage + 1433; +return dev_storage + 1430; } } @@ -27544,7 +27487,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq3", 10) == 0) { { -return dev_storage + 1418; +return dev_storage + 1415; } } @@ -27559,7 +27502,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp3", 10) == 0) { { -return dev_storage + 1403; +return dev_storage + 1400; } } @@ -27574,7 +27517,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo3", 10) == 0) { { -return dev_storage + 1388; +return dev_storage + 1385; } } @@ -27589,7 +27532,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn3", 10) == 0) { { -return dev_storage + 1373; +return dev_storage + 1370; } } @@ -27604,7 +27547,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm3", 10) == 0) { { -return dev_storage + 1358; +return dev_storage + 1355; } } @@ -27619,7 +27562,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl3", 10) == 0) { { -return dev_storage + 1343; +return dev_storage + 1340; } } @@ -27634,7 +27577,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk3", 10) == 0) { { -return dev_storage + 1328; +return dev_storage + 1325; } } @@ -27649,7 +27592,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj3", 10) == 0) { { -return dev_storage + 1313; +return dev_storage + 1310; } } @@ -27664,7 +27607,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi3", 10) == 0) { { -return dev_storage + 1298; +return dev_storage + 1295; } } @@ -27679,7 +27622,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh3", 10) == 0) { { -return dev_storage + 1283; +return dev_storage + 1280; } } @@ -27694,7 +27637,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg3", 10) == 0) { { -return dev_storage + 1268; +return dev_storage + 1265; } } @@ -27709,7 +27652,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf3", 10) == 0) { { -return dev_storage + 1253; +return dev_storage + 1250; } } @@ -27724,7 +27667,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe3", 10) == 0) { { -return dev_storage + 1238; +return dev_storage + 1235; } } @@ -27739,7 +27682,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd3", 10) == 0) { { -return dev_storage + 1223; +return dev_storage + 1220; } } @@ -27754,7 +27697,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc3", 10) == 0) { { -return dev_storage + 1208; +return dev_storage + 1205; } } @@ -27769,7 +27712,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb3", 10) == 0) { { -return dev_storage + 1193; +return dev_storage + 1190; } } @@ -27784,7 +27727,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba3", 10) == 0) { { -return dev_storage + 1178; +return dev_storage + 1175; } } @@ -27799,7 +27742,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb13", 10) == 0) { { -return dev_storage + 371; +return dev_storage + 368; } } @@ -27823,7 +27766,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz3", 10) == 0) { { -return dev_storage + 1137; +return dev_storage + 1134; } } @@ -27838,7 +27781,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday3", 10) == 0) { { -return dev_storage + 1122; +return dev_storage + 1119; } } @@ -27853,7 +27796,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax3", 10) == 0) { { -return dev_storage + 1107; +return dev_storage + 1104; } } @@ -27868,7 +27811,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw3", 10) == 0) { { -return dev_storage + 1092; +return dev_storage + 1089; } } @@ -27883,7 +27826,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav3", 10) == 0) { { -return dev_storage + 1077; +return dev_storage + 1074; } } @@ -27898,7 +27841,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau3", 10) == 0) { { -return dev_storage + 1062; +return dev_storage + 1059; } } @@ -27913,7 +27856,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat3", 10) == 0) { { -return dev_storage + 1047; +return dev_storage + 1044; } } @@ -27928,7 +27871,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas3", 10) == 0) { { -return dev_storage + 1032; +return dev_storage + 1029; } } @@ -27943,7 +27886,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar3", 10) == 0) { { -return dev_storage + 1017; +return dev_storage + 1014; } } @@ -27958,7 +27901,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq3", 10) == 0) { { -return dev_storage + 1002; +return dev_storage + 999; } } @@ -27973,7 +27916,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap3", 10) == 0) { { -return dev_storage + 987; +return dev_storage + 984; } } @@ -27988,7 +27931,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao3", 10) == 0) { { -return dev_storage + 972; +return dev_storage + 969; } } @@ -28003,7 +27946,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan3", 10) == 0) { { -return dev_storage + 957; +return dev_storage + 954; } } @@ -28018,7 +27961,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam3", 10) == 0) { { -return dev_storage + 942; +return dev_storage + 939; } } @@ -28033,7 +27976,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal3", 10) == 0) { { -return dev_storage + 927; +return dev_storage + 924; } } @@ -28048,7 +27991,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak3", 10) == 0) { { -return dev_storage + 912; +return dev_storage + 909; } } @@ -28063,7 +28006,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj3", 10) == 0) { { -return dev_storage + 897; +return dev_storage + 894; } } @@ -28078,7 +28021,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai3", 10) == 0) { { -return dev_storage + 882; +return dev_storage + 879; } } @@ -28093,7 +28036,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah3", 10) == 0) { { -return dev_storage + 867; +return dev_storage + 864; } } @@ -28108,7 +28051,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag3", 10) == 0) { { -return dev_storage + 852; +return dev_storage + 849; } } @@ -28123,7 +28066,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf3", 10) == 0) { { -return dev_storage + 837; +return dev_storage + 834; } } @@ -28138,7 +28081,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae3", 10) == 0) { { -return dev_storage + 822; +return dev_storage + 819; } } @@ -28153,7 +28096,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad3", 10) == 0) { { -return dev_storage + 807; +return dev_storage + 804; } } @@ -28168,7 +28111,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac3", 10) == 0) { { -return dev_storage + 792; +return dev_storage + 789; } } @@ -28183,7 +28126,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab3", 10) == 0) { { -return dev_storage + 777; +return dev_storage + 774; } } @@ -28198,7 +28141,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa3", 10) == 0) { { -return dev_storage + 762; +return dev_storage + 759; } } @@ -28213,7 +28156,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda13", 10) == 0) { { -return dev_storage + 356; +return dev_storage + 353; } } @@ -28237,7 +28180,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st123", 10) == 0) { { -return dev_storage + 2505; +return dev_storage + 2502; } } @@ -28252,7 +28195,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st113", 10) == 0) { { -return dev_storage + 2495; +return dev_storage + 2492; } } @@ -28267,7 +28210,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st103", 10) == 0) { { -return dev_storage + 2485; +return dev_storage + 2482; } } @@ -28297,7 +28240,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz12", 10) == 0) { { -return dev_storage + 730; +return dev_storage + 727; } } @@ -28315,7 +28258,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS2", 10) == 0) { { -return dev_storage + 2513; +return dev_storage + 2510; } } @@ -28330,7 +28273,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty62", 10) == 0) { { -return dev_storage + 299; +return dev_storage + 296; } } @@ -28345,7 +28288,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty52", 10) == 0) { { -return dev_storage + 289; +return dev_storage + 286; } } @@ -28360,7 +28303,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty42", 10) == 0) { { -return dev_storage + 279; +return dev_storage + 276; } } @@ -28375,7 +28318,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty32", 10) == 0) { { -return dev_storage + 269; +return dev_storage + 266; } } @@ -28390,7 +28333,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty22", 10) == 0) { { -return dev_storage + 259; +return dev_storage + 256; } } @@ -28408,7 +28351,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy12", 10) == 0) { { -return dev_storage + 715; +return dev_storage + 712; } } @@ -28423,7 +28366,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty12", 10) == 0) { { -return dev_storage + 249; +return dev_storage + 246; } } @@ -28450,7 +28393,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx12", 10) == 0) { { -return dev_storage + 700; +return dev_storage + 697; } } @@ -28465,7 +28408,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw12", 10) == 0) { { -return dev_storage + 685; +return dev_storage + 682; } } @@ -28480,7 +28423,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv12", 10) == 0) { { -return dev_storage + 670; +return dev_storage + 667; } } @@ -28495,7 +28438,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu12", 10) == 0) { { -return dev_storage + 655; +return dev_storage + 652; } } @@ -28513,7 +28456,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst92", 10) == 0) { { -return dev_storage + 198; +return dev_storage + 196; } } @@ -28528,7 +28471,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst82", 10) == 0) { { -return dev_storage + 188; +return dev_storage + 186; } } @@ -28543,7 +28486,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst72", 10) == 0) { { -return dev_storage + 178; +return dev_storage + 176; } } @@ -28558,7 +28501,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst62", 10) == 0) { { -return dev_storage + 168; +return dev_storage + 166; } } @@ -28573,7 +28516,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst52", 10) == 0) { { -return dev_storage + 158; +return dev_storage + 156; } } @@ -28588,7 +28531,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst42", 10) == 0) { { -return dev_storage + 148; +return dev_storage + 146; } } @@ -28603,7 +28546,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst32", 10) == 0) { { -return dev_storage + 138; +return dev_storage + 136; } } @@ -28618,7 +28561,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst22", 10) == 0) { { -return dev_storage + 128; +return dev_storage + 126; } } @@ -28636,7 +28579,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt12", 10) == 0) { { -return dev_storage + 640; +return dev_storage + 637; } } @@ -28651,7 +28594,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst12", 10) == 0) { { -return dev_storage + 118; +return dev_storage + 116; } } @@ -28678,7 +28621,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds12", 10) == 0) { { -return dev_storage + 625; +return dev_storage + 622; } } @@ -28693,7 +28636,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr12", 10) == 0) { { -return dev_storage + 610; +return dev_storage + 607; } } @@ -28708,7 +28651,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq12", 10) == 0) { { -return dev_storage + 595; +return dev_storage + 592; } } @@ -28723,7 +28666,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp12", 10) == 0) { { -return dev_storage + 580; +return dev_storage + 577; } } @@ -28738,7 +28681,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo12", 10) == 0) { { -return dev_storage + 565; +return dev_storage + 562; } } @@ -28756,7 +28699,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn12", 10) == 0) { { -return dev_storage + 550; +return dev_storage + 547; } } @@ -28795,7 +28738,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm12", 10) == 0) { { -return dev_storage + 535; +return dev_storage + 532; } } @@ -28831,7 +28774,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl12", 10) == 0) { { -return dev_storage + 520; +return dev_storage + 517; } } @@ -28846,7 +28789,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk12", 10) == 0) { { -return dev_storage + 505; +return dev_storage + 502; } } @@ -28861,7 +28804,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj12", 10) == 0) { { -return dev_storage + 490; +return dev_storage + 487; } } @@ -28876,7 +28819,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi12", 10) == 0) { { -return dev_storage + 475; +return dev_storage + 472; } } @@ -28891,7 +28834,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh12", 10) == 0) { { -return dev_storage + 460; +return dev_storage + 457; } } @@ -28906,7 +28849,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg12", 10) == 0) { { -return dev_storage + 445; +return dev_storage + 442; } } @@ -28921,7 +28864,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf12", 10) == 0) { { -return dev_storage + 430; +return dev_storage + 427; } } @@ -28936,7 +28879,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde12", 10) == 0) { { -return dev_storage + 415; +return dev_storage + 412; } } @@ -28954,7 +28897,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx2", 10) == 0) { { -return dev_storage + 2352; +return dev_storage + 2349; } } @@ -28969,7 +28912,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw2", 10) == 0) { { -return dev_storage + 2337; +return dev_storage + 2334; } } @@ -28984,7 +28927,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv2", 10) == 0) { { -return dev_storage + 2322; +return dev_storage + 2319; } } @@ -28999,7 +28942,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu2", 10) == 0) { { -return dev_storage + 2307; +return dev_storage + 2304; } } @@ -29014,7 +28957,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt2", 10) == 0) { { -return dev_storage + 2292; +return dev_storage + 2289; } } @@ -29029,7 +28972,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds2", 10) == 0) { { -return dev_storage + 2277; +return dev_storage + 2274; } } @@ -29044,7 +28987,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr2", 10) == 0) { { -return dev_storage + 2262; +return dev_storage + 2259; } } @@ -29059,7 +29002,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq2", 10) == 0) { { -return dev_storage + 2247; +return dev_storage + 2244; } } @@ -29074,7 +29017,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp2", 10) == 0) { { -return dev_storage + 2232; +return dev_storage + 2229; } } @@ -29089,7 +29032,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo2", 10) == 0) { { -return dev_storage + 2217; +return dev_storage + 2214; } } @@ -29104,7 +29047,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn2", 10) == 0) { { -return dev_storage + 2202; +return dev_storage + 2199; } } @@ -29119,7 +29062,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm2", 10) == 0) { { -return dev_storage + 2187; +return dev_storage + 2184; } } @@ -29134,7 +29077,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl2", 10) == 0) { { -return dev_storage + 2172; +return dev_storage + 2169; } } @@ -29149,7 +29092,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk2", 10) == 0) { { -return dev_storage + 2157; +return dev_storage + 2154; } } @@ -29164,7 +29107,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj2", 10) == 0) { { -return dev_storage + 2142; +return dev_storage + 2139; } } @@ -29179,7 +29122,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi2", 10) == 0) { { -return dev_storage + 2127; +return dev_storage + 2124; } } @@ -29194,7 +29137,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh2", 10) == 0) { { -return dev_storage + 2112; +return dev_storage + 2109; } } @@ -29209,7 +29152,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg2", 10) == 0) { { -return dev_storage + 2097; +return dev_storage + 2094; } } @@ -29224,7 +29167,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf2", 10) == 0) { { -return dev_storage + 2082; +return dev_storage + 2079; } } @@ -29239,7 +29182,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde2", 10) == 0) { { -return dev_storage + 2067; +return dev_storage + 2064; } } @@ -29254,7 +29197,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd2", 10) == 0) { { -return dev_storage + 2052; +return dev_storage + 2049; } } @@ -29269,7 +29212,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc2", 10) == 0) { { -return dev_storage + 2037; +return dev_storage + 2034; } } @@ -29284,7 +29227,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb2", 10) == 0) { { -return dev_storage + 2022; +return dev_storage + 2019; } } @@ -29299,7 +29242,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda2", 10) == 0) { { -return dev_storage + 2007; +return dev_storage + 2004; } } @@ -29317,7 +29260,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd12", 10) == 0) { { -return dev_storage + 400; +return dev_storage + 397; } } @@ -29332,7 +29275,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd12", 10) == 0) { { -return dev_storage + 314; +return dev_storage + 311; } } @@ -29362,7 +29305,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz2", 10) == 0) { { -return dev_storage + 1968; +return dev_storage + 1965; } } @@ -29377,7 +29320,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy2", 10) == 0) { { -return dev_storage + 1953; +return dev_storage + 1950; } } @@ -29392,7 +29335,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx2", 10) == 0) { { -return dev_storage + 1938; +return dev_storage + 1935; } } @@ -29407,7 +29350,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw2", 10) == 0) { { -return dev_storage + 1923; +return dev_storage + 1920; } } @@ -29422,7 +29365,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv2", 10) == 0) { { -return dev_storage + 1908; +return dev_storage + 1905; } } @@ -29437,7 +29380,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu2", 10) == 0) { { -return dev_storage + 1893; +return dev_storage + 1890; } } @@ -29452,7 +29395,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct2", 10) == 0) { { -return dev_storage + 1878; +return dev_storage + 1875; } } @@ -29467,7 +29410,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs2", 10) == 0) { { -return dev_storage + 1863; +return dev_storage + 1860; } } @@ -29482,7 +29425,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr2", 10) == 0) { { -return dev_storage + 1848; +return dev_storage + 1845; } } @@ -29497,7 +29440,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq2", 10) == 0) { { -return dev_storage + 1833; +return dev_storage + 1830; } } @@ -29512,7 +29455,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp2", 10) == 0) { { -return dev_storage + 1818; +return dev_storage + 1815; } } @@ -29527,7 +29470,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco2", 10) == 0) { { -return dev_storage + 1803; +return dev_storage + 1800; } } @@ -29542,7 +29485,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn2", 10) == 0) { { -return dev_storage + 1788; +return dev_storage + 1785; } } @@ -29557,7 +29500,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm2", 10) == 0) { { -return dev_storage + 1773; +return dev_storage + 1770; } } @@ -29572,7 +29515,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl2", 10) == 0) { { -return dev_storage + 1758; +return dev_storage + 1755; } } @@ -29587,7 +29530,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck2", 10) == 0) { { -return dev_storage + 1743; +return dev_storage + 1740; } } @@ -29602,7 +29545,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj2", 10) == 0) { { -return dev_storage + 1728; +return dev_storage + 1725; } } @@ -29617,7 +29560,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci2", 10) == 0) { { -return dev_storage + 1713; +return dev_storage + 1710; } } @@ -29632,7 +29575,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch2", 10) == 0) { { -return dev_storage + 1698; +return dev_storage + 1695; } } @@ -29647,7 +29590,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg2", 10) == 0) { { -return dev_storage + 1683; +return dev_storage + 1680; } } @@ -29662,7 +29605,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf2", 10) == 0) { { -return dev_storage + 1668; +return dev_storage + 1665; } } @@ -29677,7 +29620,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce2", 10) == 0) { { -return dev_storage + 1653; +return dev_storage + 1650; } } @@ -29692,7 +29635,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd2", 10) == 0) { { -return dev_storage + 1638; +return dev_storage + 1635; } } @@ -29707,7 +29650,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc2", 10) == 0) { { -return dev_storage + 1623; +return dev_storage + 1620; } } @@ -29722,7 +29665,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb2", 10) == 0) { { -return dev_storage + 1608; +return dev_storage + 1605; } } @@ -29737,7 +29680,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca2", 10) == 0) { { -return dev_storage + 1593; +return dev_storage + 1590; } } @@ -29752,7 +29695,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc12", 10) == 0) { { -return dev_storage + 385; +return dev_storage + 382; } } @@ -29776,7 +29719,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz2", 10) == 0) { { -return dev_storage + 1552; +return dev_storage + 1549; } } @@ -29791,7 +29734,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby2", 10) == 0) { { -return dev_storage + 1537; +return dev_storage + 1534; } } @@ -29806,7 +29749,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx2", 10) == 0) { { -return dev_storage + 1522; +return dev_storage + 1519; } } @@ -29821,7 +29764,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw2", 10) == 0) { { -return dev_storage + 1507; +return dev_storage + 1504; } } @@ -29836,7 +29779,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv2", 10) == 0) { { -return dev_storage + 1492; +return dev_storage + 1489; } } @@ -29851,7 +29794,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu2", 10) == 0) { { -return dev_storage + 1477; +return dev_storage + 1474; } } @@ -29866,7 +29809,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt2", 10) == 0) { { -return dev_storage + 1462; +return dev_storage + 1459; } } @@ -29881,7 +29824,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs2", 10) == 0) { { -return dev_storage + 1447; +return dev_storage + 1444; } } @@ -29896,7 +29839,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr2", 10) == 0) { { -return dev_storage + 1432; +return dev_storage + 1429; } } @@ -29911,7 +29854,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq2", 10) == 0) { { -return dev_storage + 1417; +return dev_storage + 1414; } } @@ -29926,7 +29869,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp2", 10) == 0) { { -return dev_storage + 1402; +return dev_storage + 1399; } } @@ -29941,7 +29884,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo2", 10) == 0) { { -return dev_storage + 1387; +return dev_storage + 1384; } } @@ -29956,7 +29899,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn2", 10) == 0) { { -return dev_storage + 1372; +return dev_storage + 1369; } } @@ -29971,7 +29914,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm2", 10) == 0) { { -return dev_storage + 1357; +return dev_storage + 1354; } } @@ -29986,7 +29929,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl2", 10) == 0) { { -return dev_storage + 1342; +return dev_storage + 1339; } } @@ -30001,7 +29944,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk2", 10) == 0) { { -return dev_storage + 1327; +return dev_storage + 1324; } } @@ -30016,7 +29959,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj2", 10) == 0) { { -return dev_storage + 1312; +return dev_storage + 1309; } } @@ -30031,7 +29974,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi2", 10) == 0) { { -return dev_storage + 1297; +return dev_storage + 1294; } } @@ -30046,7 +29989,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh2", 10) == 0) { { -return dev_storage + 1282; +return dev_storage + 1279; } } @@ -30061,7 +30004,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg2", 10) == 0) { { -return dev_storage + 1267; +return dev_storage + 1264; } } @@ -30076,7 +30019,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf2", 10) == 0) { { -return dev_storage + 1252; +return dev_storage + 1249; } } @@ -30091,7 +30034,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe2", 10) == 0) { { -return dev_storage + 1237; +return dev_storage + 1234; } } @@ -30106,7 +30049,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd2", 10) == 0) { { -return dev_storage + 1222; +return dev_storage + 1219; } } @@ -30121,7 +30064,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc2", 10) == 0) { { -return dev_storage + 1207; +return dev_storage + 1204; } } @@ -30136,7 +30079,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb2", 10) == 0) { { -return dev_storage + 1192; +return dev_storage + 1189; } } @@ -30151,7 +30094,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba2", 10) == 0) { { -return dev_storage + 1177; +return dev_storage + 1174; } } @@ -30166,7 +30109,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb12", 10) == 0) { { -return dev_storage + 370; +return dev_storage + 367; } } @@ -30190,7 +30133,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz2", 10) == 0) { { -return dev_storage + 1136; +return dev_storage + 1133; } } @@ -30205,7 +30148,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday2", 10) == 0) { { -return dev_storage + 1121; +return dev_storage + 1118; } } @@ -30220,7 +30163,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax2", 10) == 0) { { -return dev_storage + 1106; +return dev_storage + 1103; } } @@ -30235,7 +30178,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw2", 10) == 0) { { -return dev_storage + 1091; +return dev_storage + 1088; } } @@ -30250,7 +30193,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav2", 10) == 0) { { -return dev_storage + 1076; +return dev_storage + 1073; } } @@ -30265,7 +30208,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau2", 10) == 0) { { -return dev_storage + 1061; +return dev_storage + 1058; } } @@ -30280,7 +30223,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat2", 10) == 0) { { -return dev_storage + 1046; +return dev_storage + 1043; } } @@ -30295,7 +30238,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas2", 10) == 0) { { -return dev_storage + 1031; +return dev_storage + 1028; } } @@ -30310,7 +30253,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar2", 10) == 0) { { -return dev_storage + 1016; +return dev_storage + 1013; } } @@ -30325,7 +30268,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq2", 10) == 0) { { -return dev_storage + 1001; +return dev_storage + 998; } } @@ -30340,7 +30283,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap2", 10) == 0) { { -return dev_storage + 986; +return dev_storage + 983; } } @@ -30355,7 +30298,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao2", 10) == 0) { { -return dev_storage + 971; +return dev_storage + 968; } } @@ -30370,7 +30313,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan2", 10) == 0) { { -return dev_storage + 956; +return dev_storage + 953; } } @@ -30385,7 +30328,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam2", 10) == 0) { { -return dev_storage + 941; +return dev_storage + 938; } } @@ -30400,7 +30343,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal2", 10) == 0) { { -return dev_storage + 926; +return dev_storage + 923; } } @@ -30415,7 +30358,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak2", 10) == 0) { { -return dev_storage + 911; +return dev_storage + 908; } } @@ -30430,7 +30373,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj2", 10) == 0) { { -return dev_storage + 896; +return dev_storage + 893; } } @@ -30445,7 +30388,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai2", 10) == 0) { { -return dev_storage + 881; +return dev_storage + 878; } } @@ -30460,7 +30403,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah2", 10) == 0) { { -return dev_storage + 866; +return dev_storage + 863; } } @@ -30475,7 +30418,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag2", 10) == 0) { { -return dev_storage + 851; +return dev_storage + 848; } } @@ -30490,7 +30433,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf2", 10) == 0) { { -return dev_storage + 836; +return dev_storage + 833; } } @@ -30505,7 +30448,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae2", 10) == 0) { { -return dev_storage + 821; +return dev_storage + 818; } } @@ -30520,7 +30463,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad2", 10) == 0) { { -return dev_storage + 806; +return dev_storage + 803; } } @@ -30535,7 +30478,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac2", 10) == 0) { { -return dev_storage + 791; +return dev_storage + 788; } } @@ -30550,7 +30493,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab2", 10) == 0) { { -return dev_storage + 776; +return dev_storage + 773; } } @@ -30565,7 +30508,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa2", 10) == 0) { { -return dev_storage + 761; +return dev_storage + 758; } } @@ -30580,7 +30523,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda12", 10) == 0) { { -return dev_storage + 355; +return dev_storage + 352; } } @@ -30604,7 +30547,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st122", 10) == 0) { { -return dev_storage + 2504; +return dev_storage + 2501; } } @@ -30619,7 +30562,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st112", 10) == 0) { { -return dev_storage + 2494; +return dev_storage + 2491; } } @@ -30634,7 +30577,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st102", 10) == 0) { { -return dev_storage + 2484; +return dev_storage + 2481; } } @@ -30664,7 +30607,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz11", 10) == 0) { { -return dev_storage + 729; +return dev_storage + 726; } } @@ -30682,7 +30625,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS1", 10) == 0) { { -return dev_storage + 2512; +return dev_storage + 2509; } } @@ -30697,7 +30640,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty61", 10) == 0) { { -return dev_storage + 298; +return dev_storage + 295; } } @@ -30712,7 +30655,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty51", 10) == 0) { { -return dev_storage + 288; +return dev_storage + 285; } } @@ -30727,7 +30670,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty41", 10) == 0) { { -return dev_storage + 278; +return dev_storage + 275; } } @@ -30742,7 +30685,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty31", 10) == 0) { { -return dev_storage + 268; +return dev_storage + 265; } } @@ -30757,7 +30700,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty21", 10) == 0) { { -return dev_storage + 258; +return dev_storage + 255; } } @@ -30775,7 +30718,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy11", 10) == 0) { { -return dev_storage + 714; +return dev_storage + 711; } } @@ -30790,7 +30733,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty11", 10) == 0) { { -return dev_storage + 248; +return dev_storage + 245; } } @@ -30817,7 +30760,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx11", 10) == 0) { { -return dev_storage + 699; +return dev_storage + 696; } } @@ -30832,7 +30775,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw11", 10) == 0) { { -return dev_storage + 684; +return dev_storage + 681; } } @@ -30847,7 +30790,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv11", 10) == 0) { { -return dev_storage + 669; +return dev_storage + 666; } } @@ -30862,7 +30805,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu11", 10) == 0) { { -return dev_storage + 654; +return dev_storage + 651; } } @@ -30880,7 +30823,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst91", 10) == 0) { { -return dev_storage + 197; +return dev_storage + 195; } } @@ -30895,7 +30838,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst81", 10) == 0) { { -return dev_storage + 187; +return dev_storage + 185; } } @@ -30910,7 +30853,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst71", 10) == 0) { { -return dev_storage + 177; +return dev_storage + 175; } } @@ -30925,7 +30868,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst61", 10) == 0) { { -return dev_storage + 167; +return dev_storage + 165; } } @@ -30940,7 +30883,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst51", 10) == 0) { { -return dev_storage + 157; +return dev_storage + 155; } } @@ -30955,7 +30898,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst41", 10) == 0) { { -return dev_storage + 147; +return dev_storage + 145; } } @@ -30970,7 +30913,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst31", 10) == 0) { { -return dev_storage + 137; +return dev_storage + 135; } } @@ -30985,7 +30928,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst21", 10) == 0) { { -return dev_storage + 127; +return dev_storage + 125; } } @@ -31003,7 +30946,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt11", 10) == 0) { { -return dev_storage + 639; +return dev_storage + 636; } } @@ -31018,7 +30961,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst11", 10) == 0) { { -return dev_storage + 117; +return dev_storage + 115; } } @@ -31045,7 +30988,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds11", 10) == 0) { { -return dev_storage + 624; +return dev_storage + 621; } } @@ -31060,7 +31003,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr11", 10) == 0) { { -return dev_storage + 609; +return dev_storage + 606; } } @@ -31075,7 +31018,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq11", 10) == 0) { { -return dev_storage + 594; +return dev_storage + 591; } } @@ -31090,7 +31033,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp11", 10) == 0) { { -return dev_storage + 579; +return dev_storage + 576; } } @@ -31105,7 +31048,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo11", 10) == 0) { { -return dev_storage + 564; +return dev_storage + 561; } } @@ -31123,7 +31066,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn11", 10) == 0) { { -return dev_storage + 549; +return dev_storage + 546; } } @@ -31162,7 +31105,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm11", 10) == 0) { { -return dev_storage + 534; +return dev_storage + 531; } } @@ -31198,7 +31141,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl11", 10) == 0) { { -return dev_storage + 519; +return dev_storage + 516; } } @@ -31213,7 +31156,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk11", 10) == 0) { { -return dev_storage + 504; +return dev_storage + 501; } } @@ -31228,7 +31171,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj11", 10) == 0) { { -return dev_storage + 489; +return dev_storage + 486; } } @@ -31243,7 +31186,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi11", 10) == 0) { { -return dev_storage + 474; +return dev_storage + 471; } } @@ -31258,7 +31201,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh11", 10) == 0) { { -return dev_storage + 459; +return dev_storage + 456; } } @@ -31273,7 +31216,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg11", 10) == 0) { { -return dev_storage + 444; +return dev_storage + 441; } } @@ -31288,7 +31231,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf11", 10) == 0) { { -return dev_storage + 429; +return dev_storage + 426; } } @@ -31303,7 +31246,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde11", 10) == 0) { { -return dev_storage + 414; +return dev_storage + 411; } } @@ -31321,7 +31264,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx1", 10) == 0) { { -return dev_storage + 2351; +return dev_storage + 2348; } } @@ -31336,7 +31279,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw1", 10) == 0) { { -return dev_storage + 2336; +return dev_storage + 2333; } } @@ -31351,7 +31294,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv1", 10) == 0) { { -return dev_storage + 2321; +return dev_storage + 2318; } } @@ -31366,7 +31309,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu1", 10) == 0) { { -return dev_storage + 2306; +return dev_storage + 2303; } } @@ -31381,7 +31324,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt1", 10) == 0) { { -return dev_storage + 2291; +return dev_storage + 2288; } } @@ -31396,7 +31339,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds1", 10) == 0) { { -return dev_storage + 2276; +return dev_storage + 2273; } } @@ -31411,7 +31354,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr1", 10) == 0) { { -return dev_storage + 2261; +return dev_storage + 2258; } } @@ -31426,7 +31369,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq1", 10) == 0) { { -return dev_storage + 2246; +return dev_storage + 2243; } } @@ -31441,7 +31384,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp1", 10) == 0) { { -return dev_storage + 2231; +return dev_storage + 2228; } } @@ -31456,7 +31399,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo1", 10) == 0) { { -return dev_storage + 2216; +return dev_storage + 2213; } } @@ -31471,7 +31414,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn1", 10) == 0) { { -return dev_storage + 2201; +return dev_storage + 2198; } } @@ -31486,7 +31429,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm1", 10) == 0) { { -return dev_storage + 2186; +return dev_storage + 2183; } } @@ -31501,7 +31444,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl1", 10) == 0) { { -return dev_storage + 2171; +return dev_storage + 2168; } } @@ -31516,7 +31459,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk1", 10) == 0) { { -return dev_storage + 2156; +return dev_storage + 2153; } } @@ -31531,7 +31474,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj1", 10) == 0) { { -return dev_storage + 2141; +return dev_storage + 2138; } } @@ -31546,7 +31489,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi1", 10) == 0) { { -return dev_storage + 2126; +return dev_storage + 2123; } } @@ -31561,7 +31504,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh1", 10) == 0) { { -return dev_storage + 2111; +return dev_storage + 2108; } } @@ -31576,7 +31519,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg1", 10) == 0) { { -return dev_storage + 2096; +return dev_storage + 2093; } } @@ -31591,7 +31534,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf1", 10) == 0) { { -return dev_storage + 2081; +return dev_storage + 2078; } } @@ -31606,7 +31549,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde1", 10) == 0) { { -return dev_storage + 2066; +return dev_storage + 2063; } } @@ -31621,7 +31564,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd1", 10) == 0) { { -return dev_storage + 2051; +return dev_storage + 2048; } } @@ -31636,7 +31579,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc1", 10) == 0) { { -return dev_storage + 2036; +return dev_storage + 2033; } } @@ -31651,7 +31594,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb1", 10) == 0) { { -return dev_storage + 2021; +return dev_storage + 2018; } } @@ -31666,7 +31609,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda1", 10) == 0) { { -return dev_storage + 2006; +return dev_storage + 2003; } } @@ -31684,7 +31627,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd11", 10) == 0) { { -return dev_storage + 399; +return dev_storage + 396; } } @@ -31699,7 +31642,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd11", 10) == 0) { { -return dev_storage + 313; +return dev_storage + 310; } } @@ -31729,7 +31672,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz1", 10) == 0) { { -return dev_storage + 1967; +return dev_storage + 1964; } } @@ -31744,7 +31687,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy1", 10) == 0) { { -return dev_storage + 1952; +return dev_storage + 1949; } } @@ -31759,7 +31702,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx1", 10) == 0) { { -return dev_storage + 1937; +return dev_storage + 1934; } } @@ -31774,7 +31717,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw1", 10) == 0) { { -return dev_storage + 1922; +return dev_storage + 1919; } } @@ -31789,7 +31732,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv1", 10) == 0) { { -return dev_storage + 1907; +return dev_storage + 1904; } } @@ -31804,7 +31747,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu1", 10) == 0) { { -return dev_storage + 1892; +return dev_storage + 1889; } } @@ -31819,7 +31762,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct1", 10) == 0) { { -return dev_storage + 1877; +return dev_storage + 1874; } } @@ -31834,7 +31777,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs1", 10) == 0) { { -return dev_storage + 1862; +return dev_storage + 1859; } } @@ -31849,7 +31792,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr1", 10) == 0) { { -return dev_storage + 1847; +return dev_storage + 1844; } } @@ -31864,7 +31807,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq1", 10) == 0) { { -return dev_storage + 1832; +return dev_storage + 1829; } } @@ -31879,7 +31822,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp1", 10) == 0) { { -return dev_storage + 1817; +return dev_storage + 1814; } } @@ -31894,7 +31837,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco1", 10) == 0) { { -return dev_storage + 1802; +return dev_storage + 1799; } } @@ -31909,7 +31852,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn1", 10) == 0) { { -return dev_storage + 1787; +return dev_storage + 1784; } } @@ -31924,7 +31867,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm1", 10) == 0) { { -return dev_storage + 1772; +return dev_storage + 1769; } } @@ -31939,7 +31882,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl1", 10) == 0) { { -return dev_storage + 1757; +return dev_storage + 1754; } } @@ -31954,7 +31897,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck1", 10) == 0) { { -return dev_storage + 1742; +return dev_storage + 1739; } } @@ -31969,7 +31912,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj1", 10) == 0) { { -return dev_storage + 1727; +return dev_storage + 1724; } } @@ -31984,7 +31927,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci1", 10) == 0) { { -return dev_storage + 1712; +return dev_storage + 1709; } } @@ -31999,7 +31942,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch1", 10) == 0) { { -return dev_storage + 1697; +return dev_storage + 1694; } } @@ -32014,7 +31957,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg1", 10) == 0) { { -return dev_storage + 1682; +return dev_storage + 1679; } } @@ -32029,7 +31972,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf1", 10) == 0) { { -return dev_storage + 1667; +return dev_storage + 1664; } } @@ -32044,7 +31987,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce1", 10) == 0) { { -return dev_storage + 1652; +return dev_storage + 1649; } } @@ -32059,7 +32002,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd1", 10) == 0) { { -return dev_storage + 1637; +return dev_storage + 1634; } } @@ -32074,7 +32017,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc1", 10) == 0) { { -return dev_storage + 1622; +return dev_storage + 1619; } } @@ -32089,7 +32032,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb1", 10) == 0) { { -return dev_storage + 1607; +return dev_storage + 1604; } } @@ -32104,7 +32047,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca1", 10) == 0) { { -return dev_storage + 1592; +return dev_storage + 1589; } } @@ -32119,7 +32062,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc11", 10) == 0) { { -return dev_storage + 384; +return dev_storage + 381; } } @@ -32143,7 +32086,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz1", 10) == 0) { { -return dev_storage + 1551; +return dev_storage + 1548; } } @@ -32158,7 +32101,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby1", 10) == 0) { { -return dev_storage + 1536; +return dev_storage + 1533; } } @@ -32173,7 +32116,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx1", 10) == 0) { { -return dev_storage + 1521; +return dev_storage + 1518; } } @@ -32188,7 +32131,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw1", 10) == 0) { { -return dev_storage + 1506; +return dev_storage + 1503; } } @@ -32203,7 +32146,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv1", 10) == 0) { { -return dev_storage + 1491; +return dev_storage + 1488; } } @@ -32218,7 +32161,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu1", 10) == 0) { { -return dev_storage + 1476; +return dev_storage + 1473; } } @@ -32233,7 +32176,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt1", 10) == 0) { { -return dev_storage + 1461; +return dev_storage + 1458; } } @@ -32248,7 +32191,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs1", 10) == 0) { { -return dev_storage + 1446; +return dev_storage + 1443; } } @@ -32263,7 +32206,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr1", 10) == 0) { { -return dev_storage + 1431; +return dev_storage + 1428; } } @@ -32278,7 +32221,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq1", 10) == 0) { { -return dev_storage + 1416; +return dev_storage + 1413; } } @@ -32293,7 +32236,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp1", 10) == 0) { { -return dev_storage + 1401; +return dev_storage + 1398; } } @@ -32308,7 +32251,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo1", 10) == 0) { { -return dev_storage + 1386; +return dev_storage + 1383; } } @@ -32323,7 +32266,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn1", 10) == 0) { { -return dev_storage + 1371; +return dev_storage + 1368; } } @@ -32338,7 +32281,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm1", 10) == 0) { { -return dev_storage + 1356; +return dev_storage + 1353; } } @@ -32353,7 +32296,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl1", 10) == 0) { { -return dev_storage + 1341; +return dev_storage + 1338; } } @@ -32368,7 +32311,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk1", 10) == 0) { { -return dev_storage + 1326; +return dev_storage + 1323; } } @@ -32383,7 +32326,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj1", 10) == 0) { { -return dev_storage + 1311; +return dev_storage + 1308; } } @@ -32398,7 +32341,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi1", 10) == 0) { { -return dev_storage + 1296; +return dev_storage + 1293; } } @@ -32413,7 +32356,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh1", 10) == 0) { { -return dev_storage + 1281; +return dev_storage + 1278; } } @@ -32428,7 +32371,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg1", 10) == 0) { { -return dev_storage + 1266; +return dev_storage + 1263; } } @@ -32443,7 +32386,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf1", 10) == 0) { { -return dev_storage + 1251; +return dev_storage + 1248; } } @@ -32458,7 +32401,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe1", 10) == 0) { { -return dev_storage + 1236; +return dev_storage + 1233; } } @@ -32473,7 +32416,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd1", 10) == 0) { { -return dev_storage + 1221; +return dev_storage + 1218; } } @@ -32488,7 +32431,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc1", 10) == 0) { { -return dev_storage + 1206; +return dev_storage + 1203; } } @@ -32503,7 +32446,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb1", 10) == 0) { { -return dev_storage + 1191; +return dev_storage + 1188; } } @@ -32518,7 +32461,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba1", 10) == 0) { { -return dev_storage + 1176; +return dev_storage + 1173; } } @@ -32533,7 +32476,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb11", 10) == 0) { { -return dev_storage + 369; +return dev_storage + 366; } } @@ -32557,7 +32500,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz1", 10) == 0) { { -return dev_storage + 1135; +return dev_storage + 1132; } } @@ -32572,7 +32515,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday1", 10) == 0) { { -return dev_storage + 1120; +return dev_storage + 1117; } } @@ -32587,7 +32530,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax1", 10) == 0) { { -return dev_storage + 1105; +return dev_storage + 1102; } } @@ -32602,7 +32545,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw1", 10) == 0) { { -return dev_storage + 1090; +return dev_storage + 1087; } } @@ -32617,7 +32560,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav1", 10) == 0) { { -return dev_storage + 1075; +return dev_storage + 1072; } } @@ -32632,7 +32575,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau1", 10) == 0) { { -return dev_storage + 1060; +return dev_storage + 1057; } } @@ -32647,7 +32590,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat1", 10) == 0) { { -return dev_storage + 1045; +return dev_storage + 1042; } } @@ -32662,7 +32605,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas1", 10) == 0) { { -return dev_storage + 1030; +return dev_storage + 1027; } } @@ -32677,7 +32620,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar1", 10) == 0) { { -return dev_storage + 1015; +return dev_storage + 1012; } } @@ -32692,7 +32635,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq1", 10) == 0) { { -return dev_storage + 1000; +return dev_storage + 997; } } @@ -32707,7 +32650,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap1", 10) == 0) { { -return dev_storage + 985; +return dev_storage + 982; } } @@ -32722,7 +32665,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao1", 10) == 0) { { -return dev_storage + 970; +return dev_storage + 967; } } @@ -32737,7 +32680,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan1", 10) == 0) { { -return dev_storage + 955; +return dev_storage + 952; } } @@ -32752,7 +32695,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam1", 10) == 0) { { -return dev_storage + 940; +return dev_storage + 937; } } @@ -32767,7 +32710,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal1", 10) == 0) { { -return dev_storage + 925; +return dev_storage + 922; } } @@ -32782,7 +32725,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak1", 10) == 0) { { -return dev_storage + 910; +return dev_storage + 907; } } @@ -32797,7 +32740,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj1", 10) == 0) { { -return dev_storage + 895; +return dev_storage + 892; } } @@ -32812,7 +32755,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai1", 10) == 0) { { -return dev_storage + 880; +return dev_storage + 877; } } @@ -32827,7 +32770,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah1", 10) == 0) { { -return dev_storage + 865; +return dev_storage + 862; } } @@ -32842,7 +32785,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag1", 10) == 0) { { -return dev_storage + 850; +return dev_storage + 847; } } @@ -32857,7 +32800,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf1", 10) == 0) { { -return dev_storage + 835; +return dev_storage + 832; } } @@ -32872,7 +32815,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae1", 10) == 0) { { -return dev_storage + 820; +return dev_storage + 817; } } @@ -32887,7 +32830,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad1", 10) == 0) { { -return dev_storage + 805; +return dev_storage + 802; } } @@ -32902,7 +32845,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac1", 10) == 0) { { -return dev_storage + 790; +return dev_storage + 787; } } @@ -32917,7 +32860,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab1", 10) == 0) { { -return dev_storage + 775; +return dev_storage + 772; } } @@ -32932,7 +32875,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa1", 10) == 0) { { -return dev_storage + 760; +return dev_storage + 757; } } @@ -32947,7 +32890,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda11", 10) == 0) { { -return dev_storage + 354; +return dev_storage + 351; } } @@ -32971,7 +32914,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st121", 10) == 0) { { -return dev_storage + 2503; +return dev_storage + 2500; } } @@ -32986,7 +32929,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st111", 10) == 0) { { -return dev_storage + 2493; +return dev_storage + 2490; } } @@ -33001,7 +32944,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st101", 10) == 0) { { -return dev_storage + 2483; +return dev_storage + 2480; } } @@ -33031,7 +32974,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdz10", 10) == 0) { { -return dev_storage + 728; +return dev_storage + 725; } } @@ -33049,7 +32992,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS0", 10) == 0) { { -return dev_storage + 2511; +return dev_storage + 2508; } } @@ -33064,7 +33007,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty60", 10) == 0) { { -return dev_storage + 297; +return dev_storage + 294; } } @@ -33079,7 +33022,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty50", 10) == 0) { { -return dev_storage + 287; +return dev_storage + 284; } } @@ -33094,7 +33037,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty40", 10) == 0) { { -return dev_storage + 277; +return dev_storage + 274; } } @@ -33109,7 +33052,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty30", 10) == 0) { { -return dev_storage + 267; +return dev_storage + 264; } } @@ -33124,7 +33067,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty20", 10) == 0) { { -return dev_storage + 257; +return dev_storage + 254; } } @@ -33142,7 +33085,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdy10", 10) == 0) { { -return dev_storage + 713; +return dev_storage + 710; } } @@ -33157,7 +33100,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty10", 10) == 0) { { -return dev_storage + 247; +return dev_storage + 244; } } @@ -33184,7 +33127,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdx10", 10) == 0) { { -return dev_storage + 698; +return dev_storage + 695; } } @@ -33199,7 +33142,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdw10", 10) == 0) { { -return dev_storage + 683; +return dev_storage + 680; } } @@ -33214,7 +33157,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdv10", 10) == 0) { { -return dev_storage + 668; +return dev_storage + 665; } } @@ -33229,7 +33172,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdu10", 10) == 0) { { -return dev_storage + 653; +return dev_storage + 650; } } @@ -33247,7 +33190,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst90", 10) == 0) { { -return dev_storage + 196; +return dev_storage + 194; } } @@ -33262,7 +33205,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst80", 10) == 0) { { -return dev_storage + 186; +return dev_storage + 184; } } @@ -33277,7 +33220,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst70", 10) == 0) { { -return dev_storage + 176; +return dev_storage + 174; } } @@ -33292,7 +33235,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst60", 10) == 0) { { -return dev_storage + 166; +return dev_storage + 164; } } @@ -33307,7 +33250,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst50", 10) == 0) { { -return dev_storage + 156; +return dev_storage + 154; } } @@ -33322,7 +33265,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst40", 10) == 0) { { -return dev_storage + 146; +return dev_storage + 144; } } @@ -33337,7 +33280,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst30", 10) == 0) { { -return dev_storage + 136; +return dev_storage + 134; } } @@ -33352,7 +33295,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst20", 10) == 0) { { -return dev_storage + 126; +return dev_storage + 124; } } @@ -33370,7 +33313,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdt10", 10) == 0) { { -return dev_storage + 638; +return dev_storage + 635; } } @@ -33385,7 +33328,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst10", 10) == 0) { { -return dev_storage + 116; +return dev_storage + 114; } } @@ -33412,7 +33355,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sds10", 10) == 0) { { -return dev_storage + 623; +return dev_storage + 620; } } @@ -33427,7 +33370,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdr10", 10) == 0) { { -return dev_storage + 608; +return dev_storage + 605; } } @@ -33442,7 +33385,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdq10", 10) == 0) { { -return dev_storage + 593; +return dev_storage + 590; } } @@ -33457,7 +33400,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdp10", 10) == 0) { { -return dev_storage + 578; +return dev_storage + 575; } } @@ -33472,7 +33415,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdo10", 10) == 0) { { -return dev_storage + 563; +return dev_storage + 560; } } @@ -33490,7 +33433,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdn10", 10) == 0) { { -return dev_storage + 548; +return dev_storage + 545; } } @@ -33529,7 +33472,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdm10", 10) == 0) { { -return dev_storage + 533; +return dev_storage + 530; } } @@ -33565,7 +33508,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdl10", 10) == 0) { { -return dev_storage + 518; +return dev_storage + 515; } } @@ -33580,7 +33523,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdk10", 10) == 0) { { -return dev_storage + 503; +return dev_storage + 500; } } @@ -33595,7 +33538,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdj10", 10) == 0) { { -return dev_storage + 488; +return dev_storage + 485; } } @@ -33610,7 +33553,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdi10", 10) == 0) { { -return dev_storage + 473; +return dev_storage + 470; } } @@ -33625,7 +33568,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdh10", 10) == 0) { { -return dev_storage + 458; +return dev_storage + 455; } } @@ -33640,7 +33583,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdg10", 10) == 0) { { -return dev_storage + 443; +return dev_storage + 440; } } @@ -33655,7 +33598,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdf10", 10) == 0) { { -return dev_storage + 428; +return dev_storage + 425; } } @@ -33670,7 +33613,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sde10", 10) == 0) { { -return dev_storage + 413; +return dev_storage + 410; } } @@ -33688,7 +33631,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdd10", 10) == 0) { { -return dev_storage + 398; +return dev_storage + 395; } } @@ -33703,7 +33646,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd10", 10) == 0) { { -return dev_storage + 312; +return dev_storage + 309; } } @@ -33724,7 +33667,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdc10", 10) == 0) { { -return dev_storage + 383; +return dev_storage + 380; } } @@ -33739,7 +33682,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdb10", 10) == 0) { { -return dev_storage + 368; +return dev_storage + 365; } } @@ -33754,7 +33697,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sda10", 10) == 0) { { -return dev_storage + 353; +return dev_storage + 350; } } @@ -33772,7 +33715,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st120", 10) == 0) { { -return dev_storage + 2502; +return dev_storage + 2499; } } @@ -33787,7 +33730,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st110", 10) == 0) { { -return dev_storage + 2492; +return dev_storage + 2489; } } @@ -33802,7 +33745,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st100", 10) == 0) { { -return dev_storage + 2482; +return dev_storage + 2479; } } @@ -33853,7 +33796,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/random", 11) == 0) { { -return dev_storage + 301; +return dev_storage + 298; } } @@ -33874,7 +33817,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS59", 11) == 0) { { -return dev_storage + 2570; +return dev_storage + 2567; } } @@ -33913,7 +33856,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS49", 11) == 0) { { -return dev_storage + 2560; +return dev_storage + 2557; } } @@ -33952,7 +33895,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS39", 11) == 0) { { -return dev_storage + 2550; +return dev_storage + 2547; } } @@ -33991,7 +33934,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS29", 11) == 0) { { -return dev_storage + 2540; +return dev_storage + 2537; } } @@ -34030,7 +33973,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS19", 11) == 0) { { -return dev_storage + 2530; +return dev_storage + 2527; } } @@ -34045,7 +33988,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst119", 11) == 0) { { -return dev_storage + 225; +return dev_storage + 223; } } @@ -34081,7 +34024,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst109", 11) == 0) { { -return dev_storage + 215; +return dev_storage + 213; } } @@ -34108,7 +34051,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS58", 11) == 0) { { -return dev_storage + 2569; +return dev_storage + 2566; } } @@ -34147,7 +34090,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS48", 11) == 0) { { -return dev_storage + 2559; +return dev_storage + 2556; } } @@ -34186,7 +34129,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS38", 11) == 0) { { -return dev_storage + 2549; +return dev_storage + 2546; } } @@ -34225,7 +34168,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS28", 11) == 0) { { -return dev_storage + 2539; +return dev_storage + 2536; } } @@ -34264,7 +34207,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS18", 11) == 0) { { -return dev_storage + 2529; +return dev_storage + 2526; } } @@ -34279,7 +34222,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst118", 11) == 0) { { -return dev_storage + 224; +return dev_storage + 222; } } @@ -34315,7 +34258,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst108", 11) == 0) { { -return dev_storage + 214; +return dev_storage + 212; } } @@ -34342,7 +34285,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS57", 11) == 0) { { -return dev_storage + 2568; +return dev_storage + 2565; } } @@ -34381,7 +34324,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS47", 11) == 0) { { -return dev_storage + 2558; +return dev_storage + 2555; } } @@ -34420,7 +34363,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS37", 11) == 0) { { -return dev_storage + 2548; +return dev_storage + 2545; } } @@ -34459,7 +34402,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS27", 11) == 0) { { -return dev_storage + 2538; +return dev_storage + 2535; } } @@ -34474,7 +34417,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst127", 11) == 0) { { -return dev_storage + 233; +return dev_storage + 231; } } @@ -34513,7 +34456,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS17", 11) == 0) { { -return dev_storage + 2528; +return dev_storage + 2525; } } @@ -34528,7 +34471,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst117", 11) == 0) { { -return dev_storage + 223; +return dev_storage + 221; } } @@ -34564,7 +34507,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst107", 11) == 0) { { -return dev_storage + 213; +return dev_storage + 211; } } @@ -34591,7 +34534,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS56", 11) == 0) { { -return dev_storage + 2567; +return dev_storage + 2564; } } @@ -34630,7 +34573,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS46", 11) == 0) { { -return dev_storage + 2557; +return dev_storage + 2554; } } @@ -34669,7 +34612,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS36", 11) == 0) { { -return dev_storage + 2547; +return dev_storage + 2544; } } @@ -34708,7 +34651,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS26", 11) == 0) { { -return dev_storage + 2537; +return dev_storage + 2534; } } @@ -34723,7 +34666,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst126", 11) == 0) { { -return dev_storage + 232; +return dev_storage + 230; } } @@ -34762,7 +34705,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS16", 11) == 0) { { -return dev_storage + 2527; +return dev_storage + 2524; } } @@ -34777,7 +34720,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst116", 11) == 0) { { -return dev_storage + 222; +return dev_storage + 220; } } @@ -34813,7 +34756,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst106", 11) == 0) { { -return dev_storage + 212; +return dev_storage + 210; } } @@ -34840,7 +34783,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS55", 11) == 0) { { -return dev_storage + 2566; +return dev_storage + 2563; } } @@ -34855,7 +34798,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS45", 11) == 0) { { -return dev_storage + 2556; +return dev_storage + 2553; } } @@ -34870,7 +34813,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS35", 11) == 0) { { -return dev_storage + 2546; +return dev_storage + 2543; } } @@ -34885,7 +34828,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS25", 11) == 0) { { -return dev_storage + 2536; +return dev_storage + 2533; } } @@ -34900,7 +34843,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS15", 11) == 0) { { -return dev_storage + 2526; +return dev_storage + 2523; } } @@ -34924,7 +34867,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst125", 11) == 0) { { -return dev_storage + 231; +return dev_storage + 229; } } @@ -34939,7 +34882,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst115", 11) == 0) { { -return dev_storage + 221; +return dev_storage + 219; } } @@ -34954,7 +34897,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst105", 11) == 0) { { -return dev_storage + 211; +return dev_storage + 209; } } @@ -35062,7 +35005,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx15", 11) == 0) { { -return dev_storage + 2365; +return dev_storage + 2362; } } @@ -35077,7 +35020,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw15", 11) == 0) { { -return dev_storage + 2350; +return dev_storage + 2347; } } @@ -35092,7 +35035,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv15", 11) == 0) { { -return dev_storage + 2335; +return dev_storage + 2332; } } @@ -35107,7 +35050,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu15", 11) == 0) { { -return dev_storage + 2320; +return dev_storage + 2317; } } @@ -35122,7 +35065,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt15", 11) == 0) { { -return dev_storage + 2305; +return dev_storage + 2302; } } @@ -35137,7 +35080,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds15", 11) == 0) { { -return dev_storage + 2290; +return dev_storage + 2287; } } @@ -35152,7 +35095,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr15", 11) == 0) { { -return dev_storage + 2275; +return dev_storage + 2272; } } @@ -35167,7 +35110,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq15", 11) == 0) { { -return dev_storage + 2260; +return dev_storage + 2257; } } @@ -35182,7 +35125,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp15", 11) == 0) { { -return dev_storage + 2245; +return dev_storage + 2242; } } @@ -35197,7 +35140,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo15", 11) == 0) { { -return dev_storage + 2230; +return dev_storage + 2227; } } @@ -35212,7 +35155,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn15", 11) == 0) { { -return dev_storage + 2215; +return dev_storage + 2212; } } @@ -35227,7 +35170,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm15", 11) == 0) { { -return dev_storage + 2200; +return dev_storage + 2197; } } @@ -35242,7 +35185,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl15", 11) == 0) { { -return dev_storage + 2185; +return dev_storage + 2182; } } @@ -35257,7 +35200,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk15", 11) == 0) { { -return dev_storage + 2170; +return dev_storage + 2167; } } @@ -35272,7 +35215,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj15", 11) == 0) { { -return dev_storage + 2155; +return dev_storage + 2152; } } @@ -35287,7 +35230,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi15", 11) == 0) { { -return dev_storage + 2140; +return dev_storage + 2137; } } @@ -35302,7 +35245,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh15", 11) == 0) { { -return dev_storage + 2125; +return dev_storage + 2122; } } @@ -35317,7 +35260,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg15", 11) == 0) { { -return dev_storage + 2110; +return dev_storage + 2107; } } @@ -35332,7 +35275,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf15", 11) == 0) { { -return dev_storage + 2095; +return dev_storage + 2092; } } @@ -35347,7 +35290,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde15", 11) == 0) { { -return dev_storage + 2080; +return dev_storage + 2077; } } @@ -35362,7 +35305,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd15", 11) == 0) { { -return dev_storage + 2065; +return dev_storage + 2062; } } @@ -35377,7 +35320,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc15", 11) == 0) { { -return dev_storage + 2050; +return dev_storage + 2047; } } @@ -35392,7 +35335,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb15", 11) == 0) { { -return dev_storage + 2035; +return dev_storage + 2032; } } @@ -35407,7 +35350,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda15", 11) == 0) { { -return dev_storage + 2020; +return dev_storage + 2017; } } @@ -35431,7 +35374,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz15", 11) == 0) { { -return dev_storage + 1981; +return dev_storage + 1978; } } @@ -35446,7 +35389,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy15", 11) == 0) { { -return dev_storage + 1966; +return dev_storage + 1963; } } @@ -35461,7 +35404,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx15", 11) == 0) { { -return dev_storage + 1951; +return dev_storage + 1948; } } @@ -35476,7 +35419,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw15", 11) == 0) { { -return dev_storage + 1936; +return dev_storage + 1933; } } @@ -35491,7 +35434,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv15", 11) == 0) { { -return dev_storage + 1921; +return dev_storage + 1918; } } @@ -35506,7 +35449,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu15", 11) == 0) { { -return dev_storage + 1906; +return dev_storage + 1903; } } @@ -35521,7 +35464,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct15", 11) == 0) { { -return dev_storage + 1891; +return dev_storage + 1888; } } @@ -35536,7 +35479,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs15", 11) == 0) { { -return dev_storage + 1876; +return dev_storage + 1873; } } @@ -35551,7 +35494,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr15", 11) == 0) { { -return dev_storage + 1861; +return dev_storage + 1858; } } @@ -35566,7 +35509,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq15", 11) == 0) { { -return dev_storage + 1846; +return dev_storage + 1843; } } @@ -35581,7 +35524,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp15", 11) == 0) { { -return dev_storage + 1831; +return dev_storage + 1828; } } @@ -35596,7 +35539,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco15", 11) == 0) { { -return dev_storage + 1816; +return dev_storage + 1813; } } @@ -35611,7 +35554,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn15", 11) == 0) { { -return dev_storage + 1801; +return dev_storage + 1798; } } @@ -35626,7 +35569,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm15", 11) == 0) { { -return dev_storage + 1786; +return dev_storage + 1783; } } @@ -35641,7 +35584,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl15", 11) == 0) { { -return dev_storage + 1771; +return dev_storage + 1768; } } @@ -35656,7 +35599,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck15", 11) == 0) { { -return dev_storage + 1756; +return dev_storage + 1753; } } @@ -35671,7 +35614,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj15", 11) == 0) { { -return dev_storage + 1741; +return dev_storage + 1738; } } @@ -35686,7 +35629,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci15", 11) == 0) { { -return dev_storage + 1726; +return dev_storage + 1723; } } @@ -35701,7 +35644,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch15", 11) == 0) { { -return dev_storage + 1711; +return dev_storage + 1708; } } @@ -35716,7 +35659,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg15", 11) == 0) { { -return dev_storage + 1696; +return dev_storage + 1693; } } @@ -35731,7 +35674,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf15", 11) == 0) { { -return dev_storage + 1681; +return dev_storage + 1678; } } @@ -35746,7 +35689,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce15", 11) == 0) { { -return dev_storage + 1666; +return dev_storage + 1663; } } @@ -35761,7 +35704,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd15", 11) == 0) { { -return dev_storage + 1651; +return dev_storage + 1648; } } @@ -35776,7 +35719,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc15", 11) == 0) { { -return dev_storage + 1636; +return dev_storage + 1633; } } @@ -35791,7 +35734,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb15", 11) == 0) { { -return dev_storage + 1621; +return dev_storage + 1618; } } @@ -35806,7 +35749,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca15", 11) == 0) { { -return dev_storage + 1606; +return dev_storage + 1603; } } @@ -35830,7 +35773,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz15", 11) == 0) { { -return dev_storage + 1565; +return dev_storage + 1562; } } @@ -35845,7 +35788,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby15", 11) == 0) { { -return dev_storage + 1550; +return dev_storage + 1547; } } @@ -35860,7 +35803,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx15", 11) == 0) { { -return dev_storage + 1535; +return dev_storage + 1532; } } @@ -35875,7 +35818,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw15", 11) == 0) { { -return dev_storage + 1520; +return dev_storage + 1517; } } @@ -35890,7 +35833,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv15", 11) == 0) { { -return dev_storage + 1505; +return dev_storage + 1502; } } @@ -35905,7 +35848,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu15", 11) == 0) { { -return dev_storage + 1490; +return dev_storage + 1487; } } @@ -35920,7 +35863,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt15", 11) == 0) { { -return dev_storage + 1475; +return dev_storage + 1472; } } @@ -35935,7 +35878,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs15", 11) == 0) { { -return dev_storage + 1460; +return dev_storage + 1457; } } @@ -35950,7 +35893,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr15", 11) == 0) { { -return dev_storage + 1445; +return dev_storage + 1442; } } @@ -35965,7 +35908,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq15", 11) == 0) { { -return dev_storage + 1430; +return dev_storage + 1427; } } @@ -35980,7 +35923,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp15", 11) == 0) { { -return dev_storage + 1415; +return dev_storage + 1412; } } @@ -35995,7 +35938,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo15", 11) == 0) { { -return dev_storage + 1400; +return dev_storage + 1397; } } @@ -36010,7 +35953,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn15", 11) == 0) { { -return dev_storage + 1385; +return dev_storage + 1382; } } @@ -36025,7 +35968,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm15", 11) == 0) { { -return dev_storage + 1370; +return dev_storage + 1367; } } @@ -36040,7 +35983,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl15", 11) == 0) { { -return dev_storage + 1355; +return dev_storage + 1352; } } @@ -36055,7 +35998,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk15", 11) == 0) { { -return dev_storage + 1340; +return dev_storage + 1337; } } @@ -36070,7 +36013,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj15", 11) == 0) { { -return dev_storage + 1325; +return dev_storage + 1322; } } @@ -36085,7 +36028,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi15", 11) == 0) { { -return dev_storage + 1310; +return dev_storage + 1307; } } @@ -36100,7 +36043,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh15", 11) == 0) { { -return dev_storage + 1295; +return dev_storage + 1292; } } @@ -36115,7 +36058,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg15", 11) == 0) { { -return dev_storage + 1280; +return dev_storage + 1277; } } @@ -36130,7 +36073,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf15", 11) == 0) { { -return dev_storage + 1265; +return dev_storage + 1262; } } @@ -36145,7 +36088,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe15", 11) == 0) { { -return dev_storage + 1250; +return dev_storage + 1247; } } @@ -36160,7 +36103,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd15", 11) == 0) { { -return dev_storage + 1235; +return dev_storage + 1232; } } @@ -36175,7 +36118,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc15", 11) == 0) { { -return dev_storage + 1220; +return dev_storage + 1217; } } @@ -36190,7 +36133,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb15", 11) == 0) { { -return dev_storage + 1205; +return dev_storage + 1202; } } @@ -36205,7 +36148,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba15", 11) == 0) { { -return dev_storage + 1190; +return dev_storage + 1187; } } @@ -36229,7 +36172,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz15", 11) == 0) { { -return dev_storage + 1149; +return dev_storage + 1146; } } @@ -36244,7 +36187,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday15", 11) == 0) { { -return dev_storage + 1134; +return dev_storage + 1131; } } @@ -36259,7 +36202,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax15", 11) == 0) { { -return dev_storage + 1119; +return dev_storage + 1116; } } @@ -36274,7 +36217,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw15", 11) == 0) { { -return dev_storage + 1104; +return dev_storage + 1101; } } @@ -36289,7 +36232,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav15", 11) == 0) { { -return dev_storage + 1089; +return dev_storage + 1086; } } @@ -36304,7 +36247,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau15", 11) == 0) { { -return dev_storage + 1074; +return dev_storage + 1071; } } @@ -36319,7 +36262,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat15", 11) == 0) { { -return dev_storage + 1059; +return dev_storage + 1056; } } @@ -36334,7 +36277,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas15", 11) == 0) { { -return dev_storage + 1044; +return dev_storage + 1041; } } @@ -36349,7 +36292,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar15", 11) == 0) { { -return dev_storage + 1029; +return dev_storage + 1026; } } @@ -36364,7 +36307,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq15", 11) == 0) { { -return dev_storage + 1014; +return dev_storage + 1011; } } @@ -36379,7 +36322,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap15", 11) == 0) { { -return dev_storage + 999; +return dev_storage + 996; } } @@ -36394,7 +36337,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao15", 11) == 0) { { -return dev_storage + 984; +return dev_storage + 981; } } @@ -36409,7 +36352,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan15", 11) == 0) { { -return dev_storage + 969; +return dev_storage + 966; } } @@ -36424,7 +36367,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam15", 11) == 0) { { -return dev_storage + 954; +return dev_storage + 951; } } @@ -36439,7 +36382,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal15", 11) == 0) { { -return dev_storage + 939; +return dev_storage + 936; } } @@ -36454,7 +36397,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak15", 11) == 0) { { -return dev_storage + 924; +return dev_storage + 921; } } @@ -36469,7 +36412,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj15", 11) == 0) { { -return dev_storage + 909; +return dev_storage + 906; } } @@ -36484,7 +36427,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai15", 11) == 0) { { -return dev_storage + 894; +return dev_storage + 891; } } @@ -36499,7 +36442,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah15", 11) == 0) { { -return dev_storage + 879; +return dev_storage + 876; } } @@ -36514,7 +36457,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag15", 11) == 0) { { -return dev_storage + 864; +return dev_storage + 861; } } @@ -36529,7 +36472,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf15", 11) == 0) { { -return dev_storage + 849; +return dev_storage + 846; } } @@ -36544,7 +36487,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae15", 11) == 0) { { -return dev_storage + 834; +return dev_storage + 831; } } @@ -36559,7 +36502,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad15", 11) == 0) { { -return dev_storage + 819; +return dev_storage + 816; } } @@ -36574,7 +36517,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac15", 11) == 0) { { -return dev_storage + 804; +return dev_storage + 801; } } @@ -36589,7 +36532,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab15", 11) == 0) { { -return dev_storage + 789; +return dev_storage + 786; } } @@ -36604,7 +36547,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa15", 11) == 0) { { -return dev_storage + 774; +return dev_storage + 771; } } @@ -36637,7 +36580,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS54", 11) == 0) { { -return dev_storage + 2565; +return dev_storage + 2562; } } @@ -36652,7 +36595,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS44", 11) == 0) { { -return dev_storage + 2555; +return dev_storage + 2552; } } @@ -36667,7 +36610,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS34", 11) == 0) { { -return dev_storage + 2545; +return dev_storage + 2542; } } @@ -36682,7 +36625,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS24", 11) == 0) { { -return dev_storage + 2535; +return dev_storage + 2532; } } @@ -36697,7 +36640,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS14", 11) == 0) { { -return dev_storage + 2525; +return dev_storage + 2522; } } @@ -36721,7 +36664,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst124", 11) == 0) { { -return dev_storage + 230; +return dev_storage + 228; } } @@ -36736,7 +36679,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst114", 11) == 0) { { -return dev_storage + 220; +return dev_storage + 218; } } @@ -36751,7 +36694,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst104", 11) == 0) { { -return dev_storage + 210; +return dev_storage + 208; } } @@ -36859,7 +36802,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx14", 11) == 0) { { -return dev_storage + 2364; +return dev_storage + 2361; } } @@ -36874,7 +36817,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw14", 11) == 0) { { -return dev_storage + 2349; +return dev_storage + 2346; } } @@ -36889,7 +36832,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv14", 11) == 0) { { -return dev_storage + 2334; +return dev_storage + 2331; } } @@ -36904,7 +36847,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu14", 11) == 0) { { -return dev_storage + 2319; +return dev_storage + 2316; } } @@ -36919,7 +36862,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt14", 11) == 0) { { -return dev_storage + 2304; +return dev_storage + 2301; } } @@ -36934,7 +36877,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds14", 11) == 0) { { -return dev_storage + 2289; +return dev_storage + 2286; } } @@ -36949,7 +36892,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr14", 11) == 0) { { -return dev_storage + 2274; +return dev_storage + 2271; } } @@ -36964,7 +36907,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq14", 11) == 0) { { -return dev_storage + 2259; +return dev_storage + 2256; } } @@ -36979,7 +36922,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp14", 11) == 0) { { -return dev_storage + 2244; +return dev_storage + 2241; } } @@ -36994,7 +36937,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo14", 11) == 0) { { -return dev_storage + 2229; +return dev_storage + 2226; } } @@ -37009,7 +36952,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn14", 11) == 0) { { -return dev_storage + 2214; +return dev_storage + 2211; } } @@ -37024,7 +36967,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm14", 11) == 0) { { -return dev_storage + 2199; +return dev_storage + 2196; } } @@ -37039,7 +36982,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl14", 11) == 0) { { -return dev_storage + 2184; +return dev_storage + 2181; } } @@ -37054,7 +36997,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk14", 11) == 0) { { -return dev_storage + 2169; +return dev_storage + 2166; } } @@ -37069,7 +37012,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj14", 11) == 0) { { -return dev_storage + 2154; +return dev_storage + 2151; } } @@ -37084,7 +37027,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi14", 11) == 0) { { -return dev_storage + 2139; +return dev_storage + 2136; } } @@ -37099,7 +37042,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh14", 11) == 0) { { -return dev_storage + 2124; +return dev_storage + 2121; } } @@ -37114,7 +37057,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg14", 11) == 0) { { -return dev_storage + 2109; +return dev_storage + 2106; } } @@ -37129,7 +37072,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf14", 11) == 0) { { -return dev_storage + 2094; +return dev_storage + 2091; } } @@ -37144,7 +37087,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde14", 11) == 0) { { -return dev_storage + 2079; +return dev_storage + 2076; } } @@ -37159,7 +37102,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd14", 11) == 0) { { -return dev_storage + 2064; +return dev_storage + 2061; } } @@ -37174,7 +37117,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc14", 11) == 0) { { -return dev_storage + 2049; +return dev_storage + 2046; } } @@ -37189,7 +37132,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb14", 11) == 0) { { -return dev_storage + 2034; +return dev_storage + 2031; } } @@ -37204,7 +37147,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda14", 11) == 0) { { -return dev_storage + 2019; +return dev_storage + 2016; } } @@ -37228,7 +37171,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz14", 11) == 0) { { -return dev_storage + 1980; +return dev_storage + 1977; } } @@ -37243,7 +37186,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy14", 11) == 0) { { -return dev_storage + 1965; +return dev_storage + 1962; } } @@ -37258,7 +37201,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx14", 11) == 0) { { -return dev_storage + 1950; +return dev_storage + 1947; } } @@ -37273,7 +37216,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw14", 11) == 0) { { -return dev_storage + 1935; +return dev_storage + 1932; } } @@ -37288,7 +37231,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv14", 11) == 0) { { -return dev_storage + 1920; +return dev_storage + 1917; } } @@ -37303,7 +37246,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu14", 11) == 0) { { -return dev_storage + 1905; +return dev_storage + 1902; } } @@ -37318,7 +37261,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct14", 11) == 0) { { -return dev_storage + 1890; +return dev_storage + 1887; } } @@ -37333,7 +37276,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs14", 11) == 0) { { -return dev_storage + 1875; +return dev_storage + 1872; } } @@ -37348,7 +37291,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr14", 11) == 0) { { -return dev_storage + 1860; +return dev_storage + 1857; } } @@ -37363,7 +37306,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq14", 11) == 0) { { -return dev_storage + 1845; +return dev_storage + 1842; } } @@ -37378,7 +37321,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp14", 11) == 0) { { -return dev_storage + 1830; +return dev_storage + 1827; } } @@ -37393,7 +37336,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco14", 11) == 0) { { -return dev_storage + 1815; +return dev_storage + 1812; } } @@ -37408,7 +37351,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn14", 11) == 0) { { -return dev_storage + 1800; +return dev_storage + 1797; } } @@ -37423,7 +37366,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm14", 11) == 0) { { -return dev_storage + 1785; +return dev_storage + 1782; } } @@ -37438,7 +37381,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl14", 11) == 0) { { -return dev_storage + 1770; +return dev_storage + 1767; } } @@ -37453,7 +37396,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck14", 11) == 0) { { -return dev_storage + 1755; +return dev_storage + 1752; } } @@ -37468,7 +37411,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj14", 11) == 0) { { -return dev_storage + 1740; +return dev_storage + 1737; } } @@ -37483,7 +37426,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci14", 11) == 0) { { -return dev_storage + 1725; +return dev_storage + 1722; } } @@ -37498,7 +37441,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch14", 11) == 0) { { -return dev_storage + 1710; +return dev_storage + 1707; } } @@ -37513,7 +37456,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg14", 11) == 0) { { -return dev_storage + 1695; +return dev_storage + 1692; } } @@ -37528,7 +37471,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf14", 11) == 0) { { -return dev_storage + 1680; +return dev_storage + 1677; } } @@ -37543,7 +37486,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce14", 11) == 0) { { -return dev_storage + 1665; +return dev_storage + 1662; } } @@ -37558,7 +37501,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd14", 11) == 0) { { -return dev_storage + 1650; +return dev_storage + 1647; } } @@ -37573,7 +37516,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc14", 11) == 0) { { -return dev_storage + 1635; +return dev_storage + 1632; } } @@ -37588,7 +37531,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb14", 11) == 0) { { -return dev_storage + 1620; +return dev_storage + 1617; } } @@ -37603,7 +37546,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca14", 11) == 0) { { -return dev_storage + 1605; +return dev_storage + 1602; } } @@ -37627,7 +37570,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz14", 11) == 0) { { -return dev_storage + 1564; +return dev_storage + 1561; } } @@ -37642,7 +37585,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby14", 11) == 0) { { -return dev_storage + 1549; +return dev_storage + 1546; } } @@ -37657,7 +37600,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx14", 11) == 0) { { -return dev_storage + 1534; +return dev_storage + 1531; } } @@ -37672,7 +37615,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw14", 11) == 0) { { -return dev_storage + 1519; +return dev_storage + 1516; } } @@ -37687,7 +37630,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv14", 11) == 0) { { -return dev_storage + 1504; +return dev_storage + 1501; } } @@ -37702,7 +37645,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu14", 11) == 0) { { -return dev_storage + 1489; +return dev_storage + 1486; } } @@ -37717,7 +37660,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt14", 11) == 0) { { -return dev_storage + 1474; +return dev_storage + 1471; } } @@ -37732,7 +37675,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs14", 11) == 0) { { -return dev_storage + 1459; +return dev_storage + 1456; } } @@ -37747,7 +37690,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr14", 11) == 0) { { -return dev_storage + 1444; +return dev_storage + 1441; } } @@ -37762,7 +37705,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq14", 11) == 0) { { -return dev_storage + 1429; +return dev_storage + 1426; } } @@ -37777,7 +37720,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp14", 11) == 0) { { -return dev_storage + 1414; +return dev_storage + 1411; } } @@ -37792,7 +37735,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo14", 11) == 0) { { -return dev_storage + 1399; +return dev_storage + 1396; } } @@ -37807,7 +37750,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn14", 11) == 0) { { -return dev_storage + 1384; +return dev_storage + 1381; } } @@ -37822,7 +37765,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm14", 11) == 0) { { -return dev_storage + 1369; +return dev_storage + 1366; } } @@ -37837,7 +37780,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl14", 11) == 0) { { -return dev_storage + 1354; +return dev_storage + 1351; } } @@ -37852,7 +37795,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk14", 11) == 0) { { -return dev_storage + 1339; +return dev_storage + 1336; } } @@ -37867,7 +37810,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj14", 11) == 0) { { -return dev_storage + 1324; +return dev_storage + 1321; } } @@ -37882,7 +37825,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi14", 11) == 0) { { -return dev_storage + 1309; +return dev_storage + 1306; } } @@ -37897,7 +37840,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh14", 11) == 0) { { -return dev_storage + 1294; +return dev_storage + 1291; } } @@ -37912,7 +37855,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg14", 11) == 0) { { -return dev_storage + 1279; +return dev_storage + 1276; } } @@ -37927,7 +37870,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf14", 11) == 0) { { -return dev_storage + 1264; +return dev_storage + 1261; } } @@ -37942,7 +37885,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe14", 11) == 0) { { -return dev_storage + 1249; +return dev_storage + 1246; } } @@ -37957,7 +37900,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd14", 11) == 0) { { -return dev_storage + 1234; +return dev_storage + 1231; } } @@ -37972,7 +37915,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc14", 11) == 0) { { -return dev_storage + 1219; +return dev_storage + 1216; } } @@ -37987,7 +37930,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb14", 11) == 0) { { -return dev_storage + 1204; +return dev_storage + 1201; } } @@ -38002,7 +37945,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba14", 11) == 0) { { -return dev_storage + 1189; +return dev_storage + 1186; } } @@ -38026,7 +37969,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz14", 11) == 0) { { -return dev_storage + 1148; +return dev_storage + 1145; } } @@ -38041,7 +37984,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday14", 11) == 0) { { -return dev_storage + 1133; +return dev_storage + 1130; } } @@ -38056,7 +37999,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax14", 11) == 0) { { -return dev_storage + 1118; +return dev_storage + 1115; } } @@ -38071,7 +38014,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw14", 11) == 0) { { -return dev_storage + 1103; +return dev_storage + 1100; } } @@ -38086,7 +38029,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav14", 11) == 0) { { -return dev_storage + 1088; +return dev_storage + 1085; } } @@ -38101,7 +38044,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau14", 11) == 0) { { -return dev_storage + 1073; +return dev_storage + 1070; } } @@ -38116,7 +38059,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat14", 11) == 0) { { -return dev_storage + 1058; +return dev_storage + 1055; } } @@ -38131,7 +38074,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas14", 11) == 0) { { -return dev_storage + 1043; +return dev_storage + 1040; } } @@ -38146,7 +38089,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar14", 11) == 0) { { -return dev_storage + 1028; +return dev_storage + 1025; } } @@ -38161,7 +38104,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq14", 11) == 0) { { -return dev_storage + 1013; +return dev_storage + 1010; } } @@ -38176,7 +38119,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap14", 11) == 0) { { -return dev_storage + 998; +return dev_storage + 995; } } @@ -38191,7 +38134,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao14", 11) == 0) { { -return dev_storage + 983; +return dev_storage + 980; } } @@ -38206,7 +38149,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan14", 11) == 0) { { -return dev_storage + 968; +return dev_storage + 965; } } @@ -38221,7 +38164,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam14", 11) == 0) { { -return dev_storage + 953; +return dev_storage + 950; } } @@ -38236,7 +38179,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal14", 11) == 0) { { -return dev_storage + 938; +return dev_storage + 935; } } @@ -38251,7 +38194,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak14", 11) == 0) { { -return dev_storage + 923; +return dev_storage + 920; } } @@ -38266,7 +38209,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj14", 11) == 0) { { -return dev_storage + 908; +return dev_storage + 905; } } @@ -38281,7 +38224,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai14", 11) == 0) { { -return dev_storage + 893; +return dev_storage + 890; } } @@ -38296,7 +38239,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah14", 11) == 0) { { -return dev_storage + 878; +return dev_storage + 875; } } @@ -38311,7 +38254,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag14", 11) == 0) { { -return dev_storage + 863; +return dev_storage + 860; } } @@ -38326,7 +38269,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf14", 11) == 0) { { -return dev_storage + 848; +return dev_storage + 845; } } @@ -38341,7 +38284,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae14", 11) == 0) { { -return dev_storage + 833; +return dev_storage + 830; } } @@ -38356,7 +38299,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad14", 11) == 0) { { -return dev_storage + 818; +return dev_storage + 815; } } @@ -38371,7 +38314,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac14", 11) == 0) { { -return dev_storage + 803; +return dev_storage + 800; } } @@ -38386,7 +38329,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab14", 11) == 0) { { -return dev_storage + 788; +return dev_storage + 785; } } @@ -38401,7 +38344,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa14", 11) == 0) { { -return dev_storage + 773; +return dev_storage + 770; } } @@ -38434,7 +38377,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS63", 11) == 0) { { -return dev_storage + 2574; +return dev_storage + 2571; } } @@ -38449,7 +38392,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS53", 11) == 0) { { -return dev_storage + 2564; +return dev_storage + 2561; } } @@ -38464,7 +38407,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS43", 11) == 0) { { -return dev_storage + 2554; +return dev_storage + 2551; } } @@ -38479,7 +38422,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS33", 11) == 0) { { -return dev_storage + 2544; +return dev_storage + 2541; } } @@ -38494,7 +38437,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS23", 11) == 0) { { -return dev_storage + 2534; +return dev_storage + 2531; } } @@ -38509,7 +38452,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS13", 11) == 0) { { -return dev_storage + 2524; +return dev_storage + 2521; } } @@ -38533,7 +38476,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst123", 11) == 0) { { -return dev_storage + 229; +return dev_storage + 227; } } @@ -38548,7 +38491,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst113", 11) == 0) { { -return dev_storage + 219; +return dev_storage + 217; } } @@ -38563,7 +38506,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst103", 11) == 0) { { -return dev_storage + 209; +return dev_storage + 207; } } @@ -38686,7 +38629,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx13", 11) == 0) { { -return dev_storage + 2363; +return dev_storage + 2360; } } @@ -38701,7 +38644,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw13", 11) == 0) { { -return dev_storage + 2348; +return dev_storage + 2345; } } @@ -38716,7 +38659,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv13", 11) == 0) { { -return dev_storage + 2333; +return dev_storage + 2330; } } @@ -38731,7 +38674,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu13", 11) == 0) { { -return dev_storage + 2318; +return dev_storage + 2315; } } @@ -38746,7 +38689,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt13", 11) == 0) { { -return dev_storage + 2303; +return dev_storage + 2300; } } @@ -38761,7 +38704,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds13", 11) == 0) { { -return dev_storage + 2288; +return dev_storage + 2285; } } @@ -38776,7 +38719,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr13", 11) == 0) { { -return dev_storage + 2273; +return dev_storage + 2270; } } @@ -38791,7 +38734,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq13", 11) == 0) { { -return dev_storage + 2258; +return dev_storage + 2255; } } @@ -38806,7 +38749,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp13", 11) == 0) { { -return dev_storage + 2243; +return dev_storage + 2240; } } @@ -38821,7 +38764,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo13", 11) == 0) { { -return dev_storage + 2228; +return dev_storage + 2225; } } @@ -38836,7 +38779,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn13", 11) == 0) { { -return dev_storage + 2213; +return dev_storage + 2210; } } @@ -38851,7 +38794,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm13", 11) == 0) { { -return dev_storage + 2198; +return dev_storage + 2195; } } @@ -38866,7 +38809,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl13", 11) == 0) { { -return dev_storage + 2183; +return dev_storage + 2180; } } @@ -38881,7 +38824,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk13", 11) == 0) { { -return dev_storage + 2168; +return dev_storage + 2165; } } @@ -38896,7 +38839,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj13", 11) == 0) { { -return dev_storage + 2153; +return dev_storage + 2150; } } @@ -38911,7 +38854,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi13", 11) == 0) { { -return dev_storage + 2138; +return dev_storage + 2135; } } @@ -38926,7 +38869,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh13", 11) == 0) { { -return dev_storage + 2123; +return dev_storage + 2120; } } @@ -38941,7 +38884,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg13", 11) == 0) { { -return dev_storage + 2108; +return dev_storage + 2105; } } @@ -38956,7 +38899,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf13", 11) == 0) { { -return dev_storage + 2093; +return dev_storage + 2090; } } @@ -38971,7 +38914,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde13", 11) == 0) { { -return dev_storage + 2078; +return dev_storage + 2075; } } @@ -38986,7 +38929,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd13", 11) == 0) { { -return dev_storage + 2063; +return dev_storage + 2060; } } @@ -39001,7 +38944,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc13", 11) == 0) { { -return dev_storage + 2048; +return dev_storage + 2045; } } @@ -39016,7 +38959,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb13", 11) == 0) { { -return dev_storage + 2033; +return dev_storage + 2030; } } @@ -39031,7 +38974,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda13", 11) == 0) { { -return dev_storage + 2018; +return dev_storage + 2015; } } @@ -39055,7 +38998,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz13", 11) == 0) { { -return dev_storage + 1979; +return dev_storage + 1976; } } @@ -39070,7 +39013,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy13", 11) == 0) { { -return dev_storage + 1964; +return dev_storage + 1961; } } @@ -39085,7 +39028,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx13", 11) == 0) { { -return dev_storage + 1949; +return dev_storage + 1946; } } @@ -39100,7 +39043,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw13", 11) == 0) { { -return dev_storage + 1934; +return dev_storage + 1931; } } @@ -39115,7 +39058,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv13", 11) == 0) { { -return dev_storage + 1919; +return dev_storage + 1916; } } @@ -39130,7 +39073,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu13", 11) == 0) { { -return dev_storage + 1904; +return dev_storage + 1901; } } @@ -39145,7 +39088,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct13", 11) == 0) { { -return dev_storage + 1889; +return dev_storage + 1886; } } @@ -39160,7 +39103,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs13", 11) == 0) { { -return dev_storage + 1874; +return dev_storage + 1871; } } @@ -39175,7 +39118,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr13", 11) == 0) { { -return dev_storage + 1859; +return dev_storage + 1856; } } @@ -39190,7 +39133,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq13", 11) == 0) { { -return dev_storage + 1844; +return dev_storage + 1841; } } @@ -39205,7 +39148,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp13", 11) == 0) { { -return dev_storage + 1829; +return dev_storage + 1826; } } @@ -39220,7 +39163,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco13", 11) == 0) { { -return dev_storage + 1814; +return dev_storage + 1811; } } @@ -39235,7 +39178,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn13", 11) == 0) { { -return dev_storage + 1799; +return dev_storage + 1796; } } @@ -39250,7 +39193,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm13", 11) == 0) { { -return dev_storage + 1784; +return dev_storage + 1781; } } @@ -39265,7 +39208,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl13", 11) == 0) { { -return dev_storage + 1769; +return dev_storage + 1766; } } @@ -39280,7 +39223,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck13", 11) == 0) { { -return dev_storage + 1754; +return dev_storage + 1751; } } @@ -39295,7 +39238,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj13", 11) == 0) { { -return dev_storage + 1739; +return dev_storage + 1736; } } @@ -39310,7 +39253,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci13", 11) == 0) { { -return dev_storage + 1724; +return dev_storage + 1721; } } @@ -39325,7 +39268,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch13", 11) == 0) { { -return dev_storage + 1709; +return dev_storage + 1706; } } @@ -39340,7 +39283,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg13", 11) == 0) { { -return dev_storage + 1694; +return dev_storage + 1691; } } @@ -39355,7 +39298,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf13", 11) == 0) { { -return dev_storage + 1679; +return dev_storage + 1676; } } @@ -39370,7 +39313,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce13", 11) == 0) { { -return dev_storage + 1664; +return dev_storage + 1661; } } @@ -39385,7 +39328,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd13", 11) == 0) { { -return dev_storage + 1649; +return dev_storage + 1646; } } @@ -39400,7 +39343,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc13", 11) == 0) { { -return dev_storage + 1634; +return dev_storage + 1631; } } @@ -39415,7 +39358,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb13", 11) == 0) { { -return dev_storage + 1619; +return dev_storage + 1616; } } @@ -39430,7 +39373,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca13", 11) == 0) { { -return dev_storage + 1604; +return dev_storage + 1601; } } @@ -39454,7 +39397,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz13", 11) == 0) { { -return dev_storage + 1563; +return dev_storage + 1560; } } @@ -39469,7 +39412,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby13", 11) == 0) { { -return dev_storage + 1548; +return dev_storage + 1545; } } @@ -39484,7 +39427,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx13", 11) == 0) { { -return dev_storage + 1533; +return dev_storage + 1530; } } @@ -39499,7 +39442,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw13", 11) == 0) { { -return dev_storage + 1518; +return dev_storage + 1515; } } @@ -39514,7 +39457,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv13", 11) == 0) { { -return dev_storage + 1503; +return dev_storage + 1500; } } @@ -39529,7 +39472,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu13", 11) == 0) { { -return dev_storage + 1488; +return dev_storage + 1485; } } @@ -39544,7 +39487,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt13", 11) == 0) { { -return dev_storage + 1473; +return dev_storage + 1470; } } @@ -39559,7 +39502,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs13", 11) == 0) { { -return dev_storage + 1458; +return dev_storage + 1455; } } @@ -39574,7 +39517,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr13", 11) == 0) { { -return dev_storage + 1443; +return dev_storage + 1440; } } @@ -39589,7 +39532,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq13", 11) == 0) { { -return dev_storage + 1428; +return dev_storage + 1425; } } @@ -39604,7 +39547,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp13", 11) == 0) { { -return dev_storage + 1413; +return dev_storage + 1410; } } @@ -39619,7 +39562,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo13", 11) == 0) { { -return dev_storage + 1398; +return dev_storage + 1395; } } @@ -39634,7 +39577,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn13", 11) == 0) { { -return dev_storage + 1383; +return dev_storage + 1380; } } @@ -39649,7 +39592,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm13", 11) == 0) { { -return dev_storage + 1368; +return dev_storage + 1365; } } @@ -39664,7 +39607,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl13", 11) == 0) { { -return dev_storage + 1353; +return dev_storage + 1350; } } @@ -39679,7 +39622,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk13", 11) == 0) { { -return dev_storage + 1338; +return dev_storage + 1335; } } @@ -39694,7 +39637,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj13", 11) == 0) { { -return dev_storage + 1323; +return dev_storage + 1320; } } @@ -39709,7 +39652,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi13", 11) == 0) { { -return dev_storage + 1308; +return dev_storage + 1305; } } @@ -39724,7 +39667,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh13", 11) == 0) { { -return dev_storage + 1293; +return dev_storage + 1290; } } @@ -39739,7 +39682,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg13", 11) == 0) { { -return dev_storage + 1278; +return dev_storage + 1275; } } @@ -39754,7 +39697,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf13", 11) == 0) { { -return dev_storage + 1263; +return dev_storage + 1260; } } @@ -39769,7 +39712,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe13", 11) == 0) { { -return dev_storage + 1248; +return dev_storage + 1245; } } @@ -39784,7 +39727,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd13", 11) == 0) { { -return dev_storage + 1233; +return dev_storage + 1230; } } @@ -39799,7 +39742,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc13", 11) == 0) { { -return dev_storage + 1218; +return dev_storage + 1215; } } @@ -39814,7 +39757,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb13", 11) == 0) { { -return dev_storage + 1203; +return dev_storage + 1200; } } @@ -39829,7 +39772,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba13", 11) == 0) { { -return dev_storage + 1188; +return dev_storage + 1185; } } @@ -39853,7 +39796,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz13", 11) == 0) { { -return dev_storage + 1147; +return dev_storage + 1144; } } @@ -39868,7 +39811,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday13", 11) == 0) { { -return dev_storage + 1132; +return dev_storage + 1129; } } @@ -39883,7 +39826,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax13", 11) == 0) { { -return dev_storage + 1117; +return dev_storage + 1114; } } @@ -39898,7 +39841,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw13", 11) == 0) { { -return dev_storage + 1102; +return dev_storage + 1099; } } @@ -39913,7 +39856,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav13", 11) == 0) { { -return dev_storage + 1087; +return dev_storage + 1084; } } @@ -39928,7 +39871,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau13", 11) == 0) { { -return dev_storage + 1072; +return dev_storage + 1069; } } @@ -39943,7 +39886,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat13", 11) == 0) { { -return dev_storage + 1057; +return dev_storage + 1054; } } @@ -39958,7 +39901,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas13", 11) == 0) { { -return dev_storage + 1042; +return dev_storage + 1039; } } @@ -39973,7 +39916,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar13", 11) == 0) { { -return dev_storage + 1027; +return dev_storage + 1024; } } @@ -39988,7 +39931,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq13", 11) == 0) { { -return dev_storage + 1012; +return dev_storage + 1009; } } @@ -40003,7 +39946,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap13", 11) == 0) { { -return dev_storage + 997; +return dev_storage + 994; } } @@ -40018,7 +39961,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao13", 11) == 0) { { -return dev_storage + 982; +return dev_storage + 979; } } @@ -40033,7 +39976,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan13", 11) == 0) { { -return dev_storage + 967; +return dev_storage + 964; } } @@ -40048,7 +39991,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam13", 11) == 0) { { -return dev_storage + 952; +return dev_storage + 949; } } @@ -40063,7 +40006,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal13", 11) == 0) { { -return dev_storage + 937; +return dev_storage + 934; } } @@ -40078,7 +40021,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak13", 11) == 0) { { -return dev_storage + 922; +return dev_storage + 919; } } @@ -40093,7 +40036,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj13", 11) == 0) { { -return dev_storage + 907; +return dev_storage + 904; } } @@ -40108,7 +40051,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai13", 11) == 0) { { -return dev_storage + 892; +return dev_storage + 889; } } @@ -40123,7 +40066,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah13", 11) == 0) { { -return dev_storage + 877; +return dev_storage + 874; } } @@ -40138,7 +40081,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag13", 11) == 0) { { -return dev_storage + 862; +return dev_storage + 859; } } @@ -40153,7 +40096,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf13", 11) == 0) { { -return dev_storage + 847; +return dev_storage + 844; } } @@ -40168,7 +40111,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae13", 11) == 0) { { -return dev_storage + 832; +return dev_storage + 829; } } @@ -40183,7 +40126,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad13", 11) == 0) { { -return dev_storage + 817; +return dev_storage + 814; } } @@ -40198,7 +40141,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac13", 11) == 0) { { -return dev_storage + 802; +return dev_storage + 799; } } @@ -40213,7 +40156,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab13", 11) == 0) { { -return dev_storage + 787; +return dev_storage + 784; } } @@ -40228,7 +40171,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa13", 11) == 0) { { -return dev_storage + 772; +return dev_storage + 769; } } @@ -40261,7 +40204,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS62", 11) == 0) { { -return dev_storage + 2573; +return dev_storage + 2570; } } @@ -40276,7 +40219,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS52", 11) == 0) { { -return dev_storage + 2563; +return dev_storage + 2560; } } @@ -40291,7 +40234,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS42", 11) == 0) { { -return dev_storage + 2553; +return dev_storage + 2550; } } @@ -40306,7 +40249,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS32", 11) == 0) { { -return dev_storage + 2543; +return dev_storage + 2540; } } @@ -40321,7 +40264,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS22", 11) == 0) { { -return dev_storage + 2533; +return dev_storage + 2530; } } @@ -40336,7 +40279,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS12", 11) == 0) { { -return dev_storage + 2523; +return dev_storage + 2520; } } @@ -40360,7 +40303,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst122", 11) == 0) { { -return dev_storage + 228; +return dev_storage + 226; } } @@ -40375,7 +40318,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst112", 11) == 0) { { -return dev_storage + 218; +return dev_storage + 216; } } @@ -40390,7 +40333,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst102", 11) == 0) { { -return dev_storage + 208; +return dev_storage + 206; } } @@ -40513,7 +40456,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx12", 11) == 0) { { -return dev_storage + 2362; +return dev_storage + 2359; } } @@ -40528,7 +40471,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw12", 11) == 0) { { -return dev_storage + 2347; +return dev_storage + 2344; } } @@ -40543,7 +40486,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv12", 11) == 0) { { -return dev_storage + 2332; +return dev_storage + 2329; } } @@ -40558,7 +40501,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu12", 11) == 0) { { -return dev_storage + 2317; +return dev_storage + 2314; } } @@ -40573,7 +40516,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt12", 11) == 0) { { -return dev_storage + 2302; +return dev_storage + 2299; } } @@ -40588,7 +40531,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds12", 11) == 0) { { -return dev_storage + 2287; +return dev_storage + 2284; } } @@ -40603,7 +40546,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr12", 11) == 0) { { -return dev_storage + 2272; +return dev_storage + 2269; } } @@ -40618,7 +40561,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq12", 11) == 0) { { -return dev_storage + 2257; +return dev_storage + 2254; } } @@ -40633,7 +40576,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp12", 11) == 0) { { -return dev_storage + 2242; +return dev_storage + 2239; } } @@ -40648,7 +40591,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo12", 11) == 0) { { -return dev_storage + 2227; +return dev_storage + 2224; } } @@ -40663,7 +40606,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn12", 11) == 0) { { -return dev_storage + 2212; +return dev_storage + 2209; } } @@ -40678,7 +40621,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm12", 11) == 0) { { -return dev_storage + 2197; +return dev_storage + 2194; } } @@ -40693,7 +40636,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl12", 11) == 0) { { -return dev_storage + 2182; +return dev_storage + 2179; } } @@ -40708,7 +40651,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk12", 11) == 0) { { -return dev_storage + 2167; +return dev_storage + 2164; } } @@ -40723,7 +40666,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj12", 11) == 0) { { -return dev_storage + 2152; +return dev_storage + 2149; } } @@ -40738,7 +40681,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi12", 11) == 0) { { -return dev_storage + 2137; +return dev_storage + 2134; } } @@ -40753,7 +40696,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh12", 11) == 0) { { -return dev_storage + 2122; +return dev_storage + 2119; } } @@ -40768,7 +40711,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg12", 11) == 0) { { -return dev_storage + 2107; +return dev_storage + 2104; } } @@ -40783,7 +40726,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf12", 11) == 0) { { -return dev_storage + 2092; +return dev_storage + 2089; } } @@ -40798,7 +40741,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde12", 11) == 0) { { -return dev_storage + 2077; +return dev_storage + 2074; } } @@ -40813,7 +40756,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd12", 11) == 0) { { -return dev_storage + 2062; +return dev_storage + 2059; } } @@ -40828,7 +40771,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc12", 11) == 0) { { -return dev_storage + 2047; +return dev_storage + 2044; } } @@ -40843,7 +40786,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb12", 11) == 0) { { -return dev_storage + 2032; +return dev_storage + 2029; } } @@ -40858,7 +40801,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda12", 11) == 0) { { -return dev_storage + 2017; +return dev_storage + 2014; } } @@ -40882,7 +40825,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz12", 11) == 0) { { -return dev_storage + 1978; +return dev_storage + 1975; } } @@ -40897,7 +40840,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy12", 11) == 0) { { -return dev_storage + 1963; +return dev_storage + 1960; } } @@ -40912,7 +40855,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx12", 11) == 0) { { -return dev_storage + 1948; +return dev_storage + 1945; } } @@ -40927,7 +40870,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw12", 11) == 0) { { -return dev_storage + 1933; +return dev_storage + 1930; } } @@ -40942,7 +40885,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv12", 11) == 0) { { -return dev_storage + 1918; +return dev_storage + 1915; } } @@ -40957,7 +40900,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu12", 11) == 0) { { -return dev_storage + 1903; +return dev_storage + 1900; } } @@ -40972,7 +40915,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct12", 11) == 0) { { -return dev_storage + 1888; +return dev_storage + 1885; } } @@ -40987,7 +40930,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs12", 11) == 0) { { -return dev_storage + 1873; +return dev_storage + 1870; } } @@ -41002,7 +40945,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr12", 11) == 0) { { -return dev_storage + 1858; +return dev_storage + 1855; } } @@ -41017,7 +40960,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq12", 11) == 0) { { -return dev_storage + 1843; +return dev_storage + 1840; } } @@ -41032,7 +40975,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp12", 11) == 0) { { -return dev_storage + 1828; +return dev_storage + 1825; } } @@ -41047,7 +40990,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco12", 11) == 0) { { -return dev_storage + 1813; +return dev_storage + 1810; } } @@ -41062,7 +41005,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn12", 11) == 0) { { -return dev_storage + 1798; +return dev_storage + 1795; } } @@ -41077,7 +41020,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm12", 11) == 0) { { -return dev_storage + 1783; +return dev_storage + 1780; } } @@ -41092,7 +41035,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl12", 11) == 0) { { -return dev_storage + 1768; +return dev_storage + 1765; } } @@ -41107,7 +41050,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck12", 11) == 0) { { -return dev_storage + 1753; +return dev_storage + 1750; } } @@ -41122,7 +41065,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj12", 11) == 0) { { -return dev_storage + 1738; +return dev_storage + 1735; } } @@ -41137,7 +41080,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci12", 11) == 0) { { -return dev_storage + 1723; +return dev_storage + 1720; } } @@ -41152,7 +41095,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch12", 11) == 0) { { -return dev_storage + 1708; +return dev_storage + 1705; } } @@ -41167,7 +41110,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg12", 11) == 0) { { -return dev_storage + 1693; +return dev_storage + 1690; } } @@ -41182,7 +41125,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf12", 11) == 0) { { -return dev_storage + 1678; +return dev_storage + 1675; } } @@ -41197,7 +41140,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce12", 11) == 0) { { -return dev_storage + 1663; +return dev_storage + 1660; } } @@ -41212,7 +41155,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd12", 11) == 0) { { -return dev_storage + 1648; +return dev_storage + 1645; } } @@ -41227,7 +41170,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc12", 11) == 0) { { -return dev_storage + 1633; +return dev_storage + 1630; } } @@ -41242,7 +41185,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb12", 11) == 0) { { -return dev_storage + 1618; +return dev_storage + 1615; } } @@ -41257,7 +41200,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca12", 11) == 0) { { -return dev_storage + 1603; +return dev_storage + 1600; } } @@ -41281,7 +41224,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz12", 11) == 0) { { -return dev_storage + 1562; +return dev_storage + 1559; } } @@ -41296,7 +41239,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby12", 11) == 0) { { -return dev_storage + 1547; +return dev_storage + 1544; } } @@ -41311,7 +41254,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx12", 11) == 0) { { -return dev_storage + 1532; +return dev_storage + 1529; } } @@ -41326,7 +41269,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw12", 11) == 0) { { -return dev_storage + 1517; +return dev_storage + 1514; } } @@ -41341,7 +41284,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv12", 11) == 0) { { -return dev_storage + 1502; +return dev_storage + 1499; } } @@ -41356,7 +41299,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu12", 11) == 0) { { -return dev_storage + 1487; +return dev_storage + 1484; } } @@ -41371,7 +41314,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt12", 11) == 0) { { -return dev_storage + 1472; +return dev_storage + 1469; } } @@ -41386,7 +41329,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs12", 11) == 0) { { -return dev_storage + 1457; +return dev_storage + 1454; } } @@ -41401,7 +41344,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr12", 11) == 0) { { -return dev_storage + 1442; +return dev_storage + 1439; } } @@ -41416,7 +41359,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq12", 11) == 0) { { -return dev_storage + 1427; +return dev_storage + 1424; } } @@ -41431,7 +41374,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp12", 11) == 0) { { -return dev_storage + 1412; +return dev_storage + 1409; } } @@ -41446,7 +41389,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo12", 11) == 0) { { -return dev_storage + 1397; +return dev_storage + 1394; } } @@ -41461,7 +41404,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn12", 11) == 0) { { -return dev_storage + 1382; +return dev_storage + 1379; } } @@ -41476,7 +41419,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm12", 11) == 0) { { -return dev_storage + 1367; +return dev_storage + 1364; } } @@ -41491,7 +41434,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl12", 11) == 0) { { -return dev_storage + 1352; +return dev_storage + 1349; } } @@ -41506,7 +41449,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk12", 11) == 0) { { -return dev_storage + 1337; +return dev_storage + 1334; } } @@ -41521,7 +41464,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj12", 11) == 0) { { -return dev_storage + 1322; +return dev_storage + 1319; } } @@ -41536,7 +41479,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi12", 11) == 0) { { -return dev_storage + 1307; +return dev_storage + 1304; } } @@ -41551,7 +41494,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh12", 11) == 0) { { -return dev_storage + 1292; +return dev_storage + 1289; } } @@ -41566,7 +41509,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg12", 11) == 0) { { -return dev_storage + 1277; +return dev_storage + 1274; } } @@ -41581,7 +41524,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf12", 11) == 0) { { -return dev_storage + 1262; +return dev_storage + 1259; } } @@ -41596,7 +41539,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe12", 11) == 0) { { -return dev_storage + 1247; +return dev_storage + 1244; } } @@ -41611,7 +41554,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd12", 11) == 0) { { -return dev_storage + 1232; +return dev_storage + 1229; } } @@ -41626,7 +41569,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc12", 11) == 0) { { -return dev_storage + 1217; +return dev_storage + 1214; } } @@ -41641,7 +41584,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb12", 11) == 0) { { -return dev_storage + 1202; +return dev_storage + 1199; } } @@ -41656,7 +41599,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba12", 11) == 0) { { -return dev_storage + 1187; +return dev_storage + 1184; } } @@ -41680,7 +41623,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz12", 11) == 0) { { -return dev_storage + 1146; +return dev_storage + 1143; } } @@ -41695,7 +41638,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday12", 11) == 0) { { -return dev_storage + 1131; +return dev_storage + 1128; } } @@ -41710,7 +41653,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax12", 11) == 0) { { -return dev_storage + 1116; +return dev_storage + 1113; } } @@ -41725,7 +41668,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw12", 11) == 0) { { -return dev_storage + 1101; +return dev_storage + 1098; } } @@ -41740,7 +41683,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav12", 11) == 0) { { -return dev_storage + 1086; +return dev_storage + 1083; } } @@ -41755,7 +41698,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau12", 11) == 0) { { -return dev_storage + 1071; +return dev_storage + 1068; } } @@ -41770,7 +41713,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat12", 11) == 0) { { -return dev_storage + 1056; +return dev_storage + 1053; } } @@ -41785,7 +41728,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas12", 11) == 0) { { -return dev_storage + 1041; +return dev_storage + 1038; } } @@ -41800,7 +41743,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar12", 11) == 0) { { -return dev_storage + 1026; +return dev_storage + 1023; } } @@ -41815,7 +41758,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq12", 11) == 0) { { -return dev_storage + 1011; +return dev_storage + 1008; } } @@ -41830,7 +41773,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap12", 11) == 0) { { -return dev_storage + 996; +return dev_storage + 993; } } @@ -41845,7 +41788,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao12", 11) == 0) { { -return dev_storage + 981; +return dev_storage + 978; } } @@ -41860,7 +41803,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan12", 11) == 0) { { -return dev_storage + 966; +return dev_storage + 963; } } @@ -41875,7 +41818,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam12", 11) == 0) { { -return dev_storage + 951; +return dev_storage + 948; } } @@ -41890,7 +41833,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal12", 11) == 0) { { -return dev_storage + 936; +return dev_storage + 933; } } @@ -41905,7 +41848,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak12", 11) == 0) { { -return dev_storage + 921; +return dev_storage + 918; } } @@ -41920,7 +41863,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj12", 11) == 0) { { -return dev_storage + 906; +return dev_storage + 903; } } @@ -41935,7 +41878,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai12", 11) == 0) { { -return dev_storage + 891; +return dev_storage + 888; } } @@ -41950,7 +41893,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah12", 11) == 0) { { -return dev_storage + 876; +return dev_storage + 873; } } @@ -41965,7 +41908,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag12", 11) == 0) { { -return dev_storage + 861; +return dev_storage + 858; } } @@ -41980,7 +41923,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf12", 11) == 0) { { -return dev_storage + 846; +return dev_storage + 843; } } @@ -41995,7 +41938,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae12", 11) == 0) { { -return dev_storage + 831; +return dev_storage + 828; } } @@ -42010,7 +41953,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad12", 11) == 0) { { -return dev_storage + 816; +return dev_storage + 813; } } @@ -42025,7 +41968,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac12", 11) == 0) { { -return dev_storage + 801; +return dev_storage + 798; } } @@ -42040,7 +41983,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab12", 11) == 0) { { -return dev_storage + 786; +return dev_storage + 783; } } @@ -42055,7 +41998,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa12", 11) == 0) { { -return dev_storage + 771; +return dev_storage + 768; } } @@ -42088,7 +42031,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS61", 11) == 0) { { -return dev_storage + 2572; +return dev_storage + 2569; } } @@ -42103,7 +42046,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS51", 11) == 0) { { -return dev_storage + 2562; +return dev_storage + 2559; } } @@ -42118,7 +42061,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS41", 11) == 0) { { -return dev_storage + 2552; +return dev_storage + 2549; } } @@ -42133,7 +42076,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS31", 11) == 0) { { -return dev_storage + 2542; +return dev_storage + 2539; } } @@ -42148,7 +42091,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS21", 11) == 0) { { -return dev_storage + 2532; +return dev_storage + 2529; } } @@ -42163,7 +42106,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS11", 11) == 0) { { -return dev_storage + 2522; +return dev_storage + 2519; } } @@ -42187,7 +42130,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst121", 11) == 0) { { -return dev_storage + 227; +return dev_storage + 225; } } @@ -42202,7 +42145,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst111", 11) == 0) { { -return dev_storage + 217; +return dev_storage + 215; } } @@ -42217,7 +42160,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst101", 11) == 0) { { -return dev_storage + 207; +return dev_storage + 205; } } @@ -42340,7 +42283,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx11", 11) == 0) { { -return dev_storage + 2361; +return dev_storage + 2358; } } @@ -42355,7 +42298,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw11", 11) == 0) { { -return dev_storage + 2346; +return dev_storage + 2343; } } @@ -42370,7 +42313,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv11", 11) == 0) { { -return dev_storage + 2331; +return dev_storage + 2328; } } @@ -42385,7 +42328,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu11", 11) == 0) { { -return dev_storage + 2316; +return dev_storage + 2313; } } @@ -42400,7 +42343,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt11", 11) == 0) { { -return dev_storage + 2301; +return dev_storage + 2298; } } @@ -42415,7 +42358,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds11", 11) == 0) { { -return dev_storage + 2286; +return dev_storage + 2283; } } @@ -42430,7 +42373,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr11", 11) == 0) { { -return dev_storage + 2271; +return dev_storage + 2268; } } @@ -42445,7 +42388,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq11", 11) == 0) { { -return dev_storage + 2256; +return dev_storage + 2253; } } @@ -42460,7 +42403,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp11", 11) == 0) { { -return dev_storage + 2241; +return dev_storage + 2238; } } @@ -42475,7 +42418,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo11", 11) == 0) { { -return dev_storage + 2226; +return dev_storage + 2223; } } @@ -42490,7 +42433,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn11", 11) == 0) { { -return dev_storage + 2211; +return dev_storage + 2208; } } @@ -42505,7 +42448,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm11", 11) == 0) { { -return dev_storage + 2196; +return dev_storage + 2193; } } @@ -42520,7 +42463,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl11", 11) == 0) { { -return dev_storage + 2181; +return dev_storage + 2178; } } @@ -42535,7 +42478,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk11", 11) == 0) { { -return dev_storage + 2166; +return dev_storage + 2163; } } @@ -42550,7 +42493,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj11", 11) == 0) { { -return dev_storage + 2151; +return dev_storage + 2148; } } @@ -42565,7 +42508,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi11", 11) == 0) { { -return dev_storage + 2136; +return dev_storage + 2133; } } @@ -42580,7 +42523,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh11", 11) == 0) { { -return dev_storage + 2121; +return dev_storage + 2118; } } @@ -42595,7 +42538,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg11", 11) == 0) { { -return dev_storage + 2106; +return dev_storage + 2103; } } @@ -42610,7 +42553,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf11", 11) == 0) { { -return dev_storage + 2091; +return dev_storage + 2088; } } @@ -42625,7 +42568,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde11", 11) == 0) { { -return dev_storage + 2076; +return dev_storage + 2073; } } @@ -42640,7 +42583,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd11", 11) == 0) { { -return dev_storage + 2061; +return dev_storage + 2058; } } @@ -42655,7 +42598,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc11", 11) == 0) { { -return dev_storage + 2046; +return dev_storage + 2043; } } @@ -42670,7 +42613,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb11", 11) == 0) { { -return dev_storage + 2031; +return dev_storage + 2028; } } @@ -42685,7 +42628,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda11", 11) == 0) { { -return dev_storage + 2016; +return dev_storage + 2013; } } @@ -42709,7 +42652,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz11", 11) == 0) { { -return dev_storage + 1977; +return dev_storage + 1974; } } @@ -42724,7 +42667,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy11", 11) == 0) { { -return dev_storage + 1962; +return dev_storage + 1959; } } @@ -42739,7 +42682,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx11", 11) == 0) { { -return dev_storage + 1947; +return dev_storage + 1944; } } @@ -42754,7 +42697,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw11", 11) == 0) { { -return dev_storage + 1932; +return dev_storage + 1929; } } @@ -42769,7 +42712,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv11", 11) == 0) { { -return dev_storage + 1917; +return dev_storage + 1914; } } @@ -42784,7 +42727,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu11", 11) == 0) { { -return dev_storage + 1902; +return dev_storage + 1899; } } @@ -42799,7 +42742,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct11", 11) == 0) { { -return dev_storage + 1887; +return dev_storage + 1884; } } @@ -42814,7 +42757,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs11", 11) == 0) { { -return dev_storage + 1872; +return dev_storage + 1869; } } @@ -42829,7 +42772,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr11", 11) == 0) { { -return dev_storage + 1857; +return dev_storage + 1854; } } @@ -42844,7 +42787,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq11", 11) == 0) { { -return dev_storage + 1842; +return dev_storage + 1839; } } @@ -42859,7 +42802,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp11", 11) == 0) { { -return dev_storage + 1827; +return dev_storage + 1824; } } @@ -42874,7 +42817,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco11", 11) == 0) { { -return dev_storage + 1812; +return dev_storage + 1809; } } @@ -42889,7 +42832,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn11", 11) == 0) { { -return dev_storage + 1797; +return dev_storage + 1794; } } @@ -42904,7 +42847,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm11", 11) == 0) { { -return dev_storage + 1782; +return dev_storage + 1779; } } @@ -42919,7 +42862,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl11", 11) == 0) { { -return dev_storage + 1767; +return dev_storage + 1764; } } @@ -42934,7 +42877,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck11", 11) == 0) { { -return dev_storage + 1752; +return dev_storage + 1749; } } @@ -42949,7 +42892,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj11", 11) == 0) { { -return dev_storage + 1737; +return dev_storage + 1734; } } @@ -42964,7 +42907,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci11", 11) == 0) { { -return dev_storage + 1722; +return dev_storage + 1719; } } @@ -42979,7 +42922,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch11", 11) == 0) { { -return dev_storage + 1707; +return dev_storage + 1704; } } @@ -42994,7 +42937,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg11", 11) == 0) { { -return dev_storage + 1692; +return dev_storage + 1689; } } @@ -43009,7 +42952,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf11", 11) == 0) { { -return dev_storage + 1677; +return dev_storage + 1674; } } @@ -43024,7 +42967,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce11", 11) == 0) { { -return dev_storage + 1662; +return dev_storage + 1659; } } @@ -43039,7 +42982,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd11", 11) == 0) { { -return dev_storage + 1647; +return dev_storage + 1644; } } @@ -43054,7 +42997,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc11", 11) == 0) { { -return dev_storage + 1632; +return dev_storage + 1629; } } @@ -43069,7 +43012,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb11", 11) == 0) { { -return dev_storage + 1617; +return dev_storage + 1614; } } @@ -43084,7 +43027,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca11", 11) == 0) { { -return dev_storage + 1602; +return dev_storage + 1599; } } @@ -43108,7 +43051,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz11", 11) == 0) { { -return dev_storage + 1561; +return dev_storage + 1558; } } @@ -43123,7 +43066,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby11", 11) == 0) { { -return dev_storage + 1546; +return dev_storage + 1543; } } @@ -43138,7 +43081,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx11", 11) == 0) { { -return dev_storage + 1531; +return dev_storage + 1528; } } @@ -43153,7 +43096,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw11", 11) == 0) { { -return dev_storage + 1516; +return dev_storage + 1513; } } @@ -43168,7 +43111,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv11", 11) == 0) { { -return dev_storage + 1501; +return dev_storage + 1498; } } @@ -43183,7 +43126,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu11", 11) == 0) { { -return dev_storage + 1486; +return dev_storage + 1483; } } @@ -43198,7 +43141,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt11", 11) == 0) { { -return dev_storage + 1471; +return dev_storage + 1468; } } @@ -43213,7 +43156,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs11", 11) == 0) { { -return dev_storage + 1456; +return dev_storage + 1453; } } @@ -43228,7 +43171,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr11", 11) == 0) { { -return dev_storage + 1441; +return dev_storage + 1438; } } @@ -43243,7 +43186,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq11", 11) == 0) { { -return dev_storage + 1426; +return dev_storage + 1423; } } @@ -43258,7 +43201,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp11", 11) == 0) { { -return dev_storage + 1411; +return dev_storage + 1408; } } @@ -43273,7 +43216,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo11", 11) == 0) { { -return dev_storage + 1396; +return dev_storage + 1393; } } @@ -43288,7 +43231,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn11", 11) == 0) { { -return dev_storage + 1381; +return dev_storage + 1378; } } @@ -43303,7 +43246,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm11", 11) == 0) { { -return dev_storage + 1366; +return dev_storage + 1363; } } @@ -43318,7 +43261,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl11", 11) == 0) { { -return dev_storage + 1351; +return dev_storage + 1348; } } @@ -43333,7 +43276,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk11", 11) == 0) { { -return dev_storage + 1336; +return dev_storage + 1333; } } @@ -43348,7 +43291,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj11", 11) == 0) { { -return dev_storage + 1321; +return dev_storage + 1318; } } @@ -43363,7 +43306,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi11", 11) == 0) { { -return dev_storage + 1306; +return dev_storage + 1303; } } @@ -43378,7 +43321,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh11", 11) == 0) { { -return dev_storage + 1291; +return dev_storage + 1288; } } @@ -43393,7 +43336,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg11", 11) == 0) { { -return dev_storage + 1276; +return dev_storage + 1273; } } @@ -43408,7 +43351,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf11", 11) == 0) { { -return dev_storage + 1261; +return dev_storage + 1258; } } @@ -43423,7 +43366,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe11", 11) == 0) { { -return dev_storage + 1246; +return dev_storage + 1243; } } @@ -43438,7 +43381,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd11", 11) == 0) { { -return dev_storage + 1231; +return dev_storage + 1228; } } @@ -43453,7 +43396,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc11", 11) == 0) { { -return dev_storage + 1216; +return dev_storage + 1213; } } @@ -43468,7 +43411,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb11", 11) == 0) { { -return dev_storage + 1201; +return dev_storage + 1198; } } @@ -43483,7 +43426,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba11", 11) == 0) { { -return dev_storage + 1186; +return dev_storage + 1183; } } @@ -43507,7 +43450,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz11", 11) == 0) { { -return dev_storage + 1145; +return dev_storage + 1142; } } @@ -43522,7 +43465,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday11", 11) == 0) { { -return dev_storage + 1130; +return dev_storage + 1127; } } @@ -43537,7 +43480,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax11", 11) == 0) { { -return dev_storage + 1115; +return dev_storage + 1112; } } @@ -43552,7 +43495,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw11", 11) == 0) { { -return dev_storage + 1100; +return dev_storage + 1097; } } @@ -43567,7 +43510,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav11", 11) == 0) { { -return dev_storage + 1085; +return dev_storage + 1082; } } @@ -43582,7 +43525,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau11", 11) == 0) { { -return dev_storage + 1070; +return dev_storage + 1067; } } @@ -43597,7 +43540,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat11", 11) == 0) { { -return dev_storage + 1055; +return dev_storage + 1052; } } @@ -43612,7 +43555,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas11", 11) == 0) { { -return dev_storage + 1040; +return dev_storage + 1037; } } @@ -43627,7 +43570,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar11", 11) == 0) { { -return dev_storage + 1025; +return dev_storage + 1022; } } @@ -43642,7 +43585,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq11", 11) == 0) { { -return dev_storage + 1010; +return dev_storage + 1007; } } @@ -43657,7 +43600,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap11", 11) == 0) { { -return dev_storage + 995; +return dev_storage + 992; } } @@ -43672,7 +43615,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao11", 11) == 0) { { -return dev_storage + 980; +return dev_storage + 977; } } @@ -43687,7 +43630,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan11", 11) == 0) { { -return dev_storage + 965; +return dev_storage + 962; } } @@ -43702,7 +43645,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam11", 11) == 0) { { -return dev_storage + 950; +return dev_storage + 947; } } @@ -43717,7 +43660,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal11", 11) == 0) { { -return dev_storage + 935; +return dev_storage + 932; } } @@ -43732,7 +43675,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak11", 11) == 0) { { -return dev_storage + 920; +return dev_storage + 917; } } @@ -43747,7 +43690,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj11", 11) == 0) { { -return dev_storage + 905; +return dev_storage + 902; } } @@ -43762,7 +43705,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai11", 11) == 0) { { -return dev_storage + 890; +return dev_storage + 887; } } @@ -43777,7 +43720,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah11", 11) == 0) { { -return dev_storage + 875; +return dev_storage + 872; } } @@ -43792,7 +43735,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag11", 11) == 0) { { -return dev_storage + 860; +return dev_storage + 857; } } @@ -43807,7 +43750,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf11", 11) == 0) { { -return dev_storage + 845; +return dev_storage + 842; } } @@ -43822,7 +43765,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae11", 11) == 0) { { -return dev_storage + 830; +return dev_storage + 827; } } @@ -43837,7 +43780,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad11", 11) == 0) { { -return dev_storage + 815; +return dev_storage + 812; } } @@ -43852,7 +43795,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac11", 11) == 0) { { -return dev_storage + 800; +return dev_storage + 797; } } @@ -43867,7 +43810,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab11", 11) == 0) { { -return dev_storage + 785; +return dev_storage + 782; } } @@ -43882,7 +43825,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa11", 11) == 0) { { -return dev_storage + 770; +return dev_storage + 767; } } @@ -43915,7 +43858,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS60", 11) == 0) { { -return dev_storage + 2571; +return dev_storage + 2568; } } @@ -43930,7 +43873,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS50", 11) == 0) { { -return dev_storage + 2561; +return dev_storage + 2558; } } @@ -43945,7 +43888,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS40", 11) == 0) { { -return dev_storage + 2551; +return dev_storage + 2548; } } @@ -43960,7 +43903,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS30", 11) == 0) { { -return dev_storage + 2541; +return dev_storage + 2538; } } @@ -43975,7 +43918,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS20", 11) == 0) { { -return dev_storage + 2531; +return dev_storage + 2528; } } @@ -43990,7 +43933,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS10", 11) == 0) { { -return dev_storage + 2521; +return dev_storage + 2518; } } @@ -44014,7 +43957,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst120", 11) == 0) { { -return dev_storage + 226; +return dev_storage + 224; } } @@ -44029,7 +43972,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst110", 11) == 0) { { -return dev_storage + 216; +return dev_storage + 214; } } @@ -44044,7 +43987,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst100", 11) == 0) { { -return dev_storage + 206; +return dev_storage + 204; } } @@ -44167,7 +44110,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddx10", 11) == 0) { { -return dev_storage + 2360; +return dev_storage + 2357; } } @@ -44182,7 +44125,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddw10", 11) == 0) { { -return dev_storage + 2345; +return dev_storage + 2342; } } @@ -44197,7 +44140,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddv10", 11) == 0) { { -return dev_storage + 2330; +return dev_storage + 2327; } } @@ -44212,7 +44155,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddu10", 11) == 0) { { -return dev_storage + 2315; +return dev_storage + 2312; } } @@ -44227,7 +44170,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddt10", 11) == 0) { { -return dev_storage + 2300; +return dev_storage + 2297; } } @@ -44242,7 +44185,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdds10", 11) == 0) { { -return dev_storage + 2285; +return dev_storage + 2282; } } @@ -44257,7 +44200,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddr10", 11) == 0) { { -return dev_storage + 2270; +return dev_storage + 2267; } } @@ -44272,7 +44215,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddq10", 11) == 0) { { -return dev_storage + 2255; +return dev_storage + 2252; } } @@ -44287,7 +44230,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddp10", 11) == 0) { { -return dev_storage + 2240; +return dev_storage + 2237; } } @@ -44302,7 +44245,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddo10", 11) == 0) { { -return dev_storage + 2225; +return dev_storage + 2222; } } @@ -44317,7 +44260,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddn10", 11) == 0) { { -return dev_storage + 2210; +return dev_storage + 2207; } } @@ -44332,7 +44275,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddm10", 11) == 0) { { -return dev_storage + 2195; +return dev_storage + 2192; } } @@ -44347,7 +44290,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddl10", 11) == 0) { { -return dev_storage + 2180; +return dev_storage + 2177; } } @@ -44362,7 +44305,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddk10", 11) == 0) { { -return dev_storage + 2165; +return dev_storage + 2162; } } @@ -44377,7 +44320,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddj10", 11) == 0) { { -return dev_storage + 2150; +return dev_storage + 2147; } } @@ -44392,7 +44335,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddi10", 11) == 0) { { -return dev_storage + 2135; +return dev_storage + 2132; } } @@ -44407,7 +44350,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddh10", 11) == 0) { { -return dev_storage + 2120; +return dev_storage + 2117; } } @@ -44422,7 +44365,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddg10", 11) == 0) { { -return dev_storage + 2105; +return dev_storage + 2102; } } @@ -44437,7 +44380,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddf10", 11) == 0) { { -return dev_storage + 2090; +return dev_storage + 2087; } } @@ -44452,7 +44395,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdde10", 11) == 0) { { -return dev_storage + 2075; +return dev_storage + 2072; } } @@ -44467,7 +44410,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddd10", 11) == 0) { { -return dev_storage + 2060; +return dev_storage + 2057; } } @@ -44482,7 +44425,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddc10", 11) == 0) { { -return dev_storage + 2045; +return dev_storage + 2042; } } @@ -44497,7 +44440,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sddb10", 11) == 0) { { -return dev_storage + 2030; +return dev_storage + 2027; } } @@ -44512,7 +44455,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdda10", 11) == 0) { { -return dev_storage + 2015; +return dev_storage + 2012; } } @@ -44536,7 +44479,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcz10", 11) == 0) { { -return dev_storage + 1976; +return dev_storage + 1973; } } @@ -44551,7 +44494,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcy10", 11) == 0) { { -return dev_storage + 1961; +return dev_storage + 1958; } } @@ -44566,7 +44509,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcx10", 11) == 0) { { -return dev_storage + 1946; +return dev_storage + 1943; } } @@ -44581,7 +44524,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcw10", 11) == 0) { { -return dev_storage + 1931; +return dev_storage + 1928; } } @@ -44596,7 +44539,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcv10", 11) == 0) { { -return dev_storage + 1916; +return dev_storage + 1913; } } @@ -44611,7 +44554,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcu10", 11) == 0) { { -return dev_storage + 1901; +return dev_storage + 1898; } } @@ -44626,7 +44569,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdct10", 11) == 0) { { -return dev_storage + 1886; +return dev_storage + 1883; } } @@ -44641,7 +44584,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcs10", 11) == 0) { { -return dev_storage + 1871; +return dev_storage + 1868; } } @@ -44656,7 +44599,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcr10", 11) == 0) { { -return dev_storage + 1856; +return dev_storage + 1853; } } @@ -44671,7 +44614,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcq10", 11) == 0) { { -return dev_storage + 1841; +return dev_storage + 1838; } } @@ -44686,7 +44629,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcp10", 11) == 0) { { -return dev_storage + 1826; +return dev_storage + 1823; } } @@ -44701,7 +44644,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdco10", 11) == 0) { { -return dev_storage + 1811; +return dev_storage + 1808; } } @@ -44716,7 +44659,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcn10", 11) == 0) { { -return dev_storage + 1796; +return dev_storage + 1793; } } @@ -44731,7 +44674,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcm10", 11) == 0) { { -return dev_storage + 1781; +return dev_storage + 1778; } } @@ -44746,7 +44689,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcl10", 11) == 0) { { -return dev_storage + 1766; +return dev_storage + 1763; } } @@ -44761,7 +44704,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdck10", 11) == 0) { { -return dev_storage + 1751; +return dev_storage + 1748; } } @@ -44776,7 +44719,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcj10", 11) == 0) { { -return dev_storage + 1736; +return dev_storage + 1733; } } @@ -44791,7 +44734,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdci10", 11) == 0) { { -return dev_storage + 1721; +return dev_storage + 1718; } } @@ -44806,7 +44749,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdch10", 11) == 0) { { -return dev_storage + 1706; +return dev_storage + 1703; } } @@ -44821,7 +44764,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcg10", 11) == 0) { { -return dev_storage + 1691; +return dev_storage + 1688; } } @@ -44836,7 +44779,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcf10", 11) == 0) { { -return dev_storage + 1676; +return dev_storage + 1673; } } @@ -44851,7 +44794,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdce10", 11) == 0) { { -return dev_storage + 1661; +return dev_storage + 1658; } } @@ -44866,7 +44809,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcd10", 11) == 0) { { -return dev_storage + 1646; +return dev_storage + 1643; } } @@ -44881,7 +44824,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcc10", 11) == 0) { { -return dev_storage + 1631; +return dev_storage + 1628; } } @@ -44896,7 +44839,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdcb10", 11) == 0) { { -return dev_storage + 1616; +return dev_storage + 1613; } } @@ -44911,7 +44854,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdca10", 11) == 0) { { -return dev_storage + 1601; +return dev_storage + 1598; } } @@ -44935,7 +44878,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbz10", 11) == 0) { { -return dev_storage + 1560; +return dev_storage + 1557; } } @@ -44950,7 +44893,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdby10", 11) == 0) { { -return dev_storage + 1545; +return dev_storage + 1542; } } @@ -44965,7 +44908,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbx10", 11) == 0) { { -return dev_storage + 1530; +return dev_storage + 1527; } } @@ -44980,7 +44923,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbw10", 11) == 0) { { -return dev_storage + 1515; +return dev_storage + 1512; } } @@ -44995,7 +44938,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbv10", 11) == 0) { { -return dev_storage + 1500; +return dev_storage + 1497; } } @@ -45010,7 +44953,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbu10", 11) == 0) { { -return dev_storage + 1485; +return dev_storage + 1482; } } @@ -45025,7 +44968,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbt10", 11) == 0) { { -return dev_storage + 1470; +return dev_storage + 1467; } } @@ -45040,7 +44983,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbs10", 11) == 0) { { -return dev_storage + 1455; +return dev_storage + 1452; } } @@ -45055,7 +44998,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbr10", 11) == 0) { { -return dev_storage + 1440; +return dev_storage + 1437; } } @@ -45070,7 +45013,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbq10", 11) == 0) { { -return dev_storage + 1425; +return dev_storage + 1422; } } @@ -45085,7 +45028,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbp10", 11) == 0) { { -return dev_storage + 1410; +return dev_storage + 1407; } } @@ -45100,7 +45043,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbo10", 11) == 0) { { -return dev_storage + 1395; +return dev_storage + 1392; } } @@ -45115,7 +45058,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbn10", 11) == 0) { { -return dev_storage + 1380; +return dev_storage + 1377; } } @@ -45130,7 +45073,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbm10", 11) == 0) { { -return dev_storage + 1365; +return dev_storage + 1362; } } @@ -45145,7 +45088,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbl10", 11) == 0) { { -return dev_storage + 1350; +return dev_storage + 1347; } } @@ -45160,7 +45103,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbk10", 11) == 0) { { -return dev_storage + 1335; +return dev_storage + 1332; } } @@ -45175,7 +45118,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbj10", 11) == 0) { { -return dev_storage + 1320; +return dev_storage + 1317; } } @@ -45190,7 +45133,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbi10", 11) == 0) { { -return dev_storage + 1305; +return dev_storage + 1302; } } @@ -45205,7 +45148,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbh10", 11) == 0) { { -return dev_storage + 1290; +return dev_storage + 1287; } } @@ -45220,7 +45163,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbg10", 11) == 0) { { -return dev_storage + 1275; +return dev_storage + 1272; } } @@ -45235,7 +45178,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbf10", 11) == 0) { { -return dev_storage + 1260; +return dev_storage + 1257; } } @@ -45250,7 +45193,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbe10", 11) == 0) { { -return dev_storage + 1245; +return dev_storage + 1242; } } @@ -45265,7 +45208,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbd10", 11) == 0) { { -return dev_storage + 1230; +return dev_storage + 1227; } } @@ -45280,7 +45223,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbc10", 11) == 0) { { -return dev_storage + 1215; +return dev_storage + 1212; } } @@ -45295,7 +45238,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdbb10", 11) == 0) { { -return dev_storage + 1200; +return dev_storage + 1197; } } @@ -45310,7 +45253,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdba10", 11) == 0) { { -return dev_storage + 1185; +return dev_storage + 1182; } } @@ -45334,7 +45277,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaz10", 11) == 0) { { -return dev_storage + 1144; +return dev_storage + 1141; } } @@ -45349,7 +45292,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sday10", 11) == 0) { { -return dev_storage + 1129; +return dev_storage + 1126; } } @@ -45364,7 +45307,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdax10", 11) == 0) { { -return dev_storage + 1114; +return dev_storage + 1111; } } @@ -45379,7 +45322,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaw10", 11) == 0) { { -return dev_storage + 1099; +return dev_storage + 1096; } } @@ -45394,7 +45337,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdav10", 11) == 0) { { -return dev_storage + 1084; +return dev_storage + 1081; } } @@ -45409,7 +45352,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdau10", 11) == 0) { { -return dev_storage + 1069; +return dev_storage + 1066; } } @@ -45424,7 +45367,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdat10", 11) == 0) { { -return dev_storage + 1054; +return dev_storage + 1051; } } @@ -45439,7 +45382,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdas10", 11) == 0) { { -return dev_storage + 1039; +return dev_storage + 1036; } } @@ -45454,7 +45397,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdar10", 11) == 0) { { -return dev_storage + 1024; +return dev_storage + 1021; } } @@ -45469,7 +45412,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaq10", 11) == 0) { { -return dev_storage + 1009; +return dev_storage + 1006; } } @@ -45484,7 +45427,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdap10", 11) == 0) { { -return dev_storage + 994; +return dev_storage + 991; } } @@ -45499,7 +45442,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdao10", 11) == 0) { { -return dev_storage + 979; +return dev_storage + 976; } } @@ -45514,7 +45457,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdan10", 11) == 0) { { -return dev_storage + 964; +return dev_storage + 961; } } @@ -45529,7 +45472,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdam10", 11) == 0) { { -return dev_storage + 949; +return dev_storage + 946; } } @@ -45544,7 +45487,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdal10", 11) == 0) { { -return dev_storage + 934; +return dev_storage + 931; } } @@ -45559,7 +45502,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdak10", 11) == 0) { { -return dev_storage + 919; +return dev_storage + 916; } } @@ -45574,7 +45517,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaj10", 11) == 0) { { -return dev_storage + 904; +return dev_storage + 901; } } @@ -45589,7 +45532,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdai10", 11) == 0) { { -return dev_storage + 889; +return dev_storage + 886; } } @@ -45604,7 +45547,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdah10", 11) == 0) { { -return dev_storage + 874; +return dev_storage + 871; } } @@ -45619,7 +45562,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdag10", 11) == 0) { { -return dev_storage + 859; +return dev_storage + 856; } } @@ -45634,7 +45577,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaf10", 11) == 0) { { -return dev_storage + 844; +return dev_storage + 841; } } @@ -45649,7 +45592,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdae10", 11) == 0) { { -return dev_storage + 829; +return dev_storage + 826; } } @@ -45664,7 +45607,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdad10", 11) == 0) { { -return dev_storage + 814; +return dev_storage + 811; } } @@ -45679,7 +45622,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdac10", 11) == 0) { { -return dev_storage + 799; +return dev_storage + 796; } } @@ -45694,7 +45637,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdab10", 11) == 0) { { -return dev_storage + 784; +return dev_storage + 781; } } @@ -45709,7 +45652,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sdaa10", 11) == 0) { { -return dev_storage + 769; +return dev_storage + 766; } } @@ -45745,7 +45688,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/windows", 12) == 0) { { -return dev_storage + 2576; +return dev_storage + 2573; } } @@ -45760,7 +45703,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/urandom", 12) == 0) { { -return dev_storage + 2575; +return dev_storage + 2572; } } diff --git a/winsup/cygwin/devices.h b/winsup/cygwin/devices.h index bdddb8ce4..21120bdfc 100644 --- a/winsup/cygwin/devices.h +++ b/winsup/cygwin/devices.h @@ -232,10 +232,7 @@ enum fh_devices FH_SDDX = FHDEV (DEV_SD7_MAJOR, 240), DEV_MEM_MAJOR = 1, - FH_MEM = FHDEV (DEV_MEM_MAJOR, 1), - FH_KMEM = FHDEV (DEV_MEM_MAJOR, 2), /* not implemented yet */ FH_NULL = FHDEV (DEV_MEM_MAJOR, 3), - FH_PORT = FHDEV (DEV_MEM_MAJOR, 4), FH_ZERO = FHDEV (DEV_MEM_MAJOR, 5), FH_FULL = FHDEV (DEV_MEM_MAJOR, 7), FH_RANDOM = FHDEV (DEV_MEM_MAJOR, 8), diff --git a/winsup/cygwin/devices.in b/winsup/cygwin/devices.in index dd1689fc3..785aff0bf 100644 --- a/winsup/cygwin/devices.in +++ b/winsup/cygwin/devices.in @@ -156,10 +156,7 @@ const device dev_error_storage = "/dev/full", BRACK(FH_FULL), "/dev/full", exists, S_IFCHR "/dev/random", BRACK(FH_RANDOM), "/dev/random", exists, S_IFCHR "/dev/urandom", BRACK(FH_URANDOM), "/dev/urandom", exists, S_IFCHR, =urandom_dev -"/dev/mem", BRACK(FH_MEM), "/dev/mem", exists, S_IFCHR -"/dev/kmem", BRACK(FH_KMEM), "/dev/kmem", exists, S_IFCHR "/dev/clipboard", BRACK(FH_CLIPBOARD), "/dev/clipboard", exists, S_IFCHR -"/dev/port", BRACK(FH_PORT), "/dev/port", exists, S_IFCHR "/dev/com%(1-16)d", BRACK(FHDEV(DEV_SERIAL_MAJOR, {$1 - 1})), "\\??\\COM{$1}", exists_ntdev_silent, S_IFCHR "/dev/ttyS%(0-63)d", BRACK(FHDEV(DEV_SERIAL_MAJOR, {$1})), "\\??\\COM{$1 + 1}", exists_ntdev, S_IFCHR ":pipe", BRACK(FH_PIPE), "/dev/pipe", exists_internal, S_IFCHR diff --git a/winsup/cygwin/dtable.cc b/winsup/cygwin/dtable.cc index b5781e8ae..2501a26fd 100644 --- a/winsup/cygwin/dtable.cc +++ b/winsup/cygwin/dtable.cc @@ -528,11 +528,6 @@ fh_alloc (path_conv& pc) case FH_URANDOM: fh = cnew (fhandler_dev_random); break; - case FH_MEM: - case FH_KMEM: - case FH_PORT: - fh = cnew (fhandler_dev_mem); - break; case FH_CLIPBOARD: fh = cnew (fhandler_dev_clipboard); break; diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h index f5e4bc0d6..fe5e3accd 100644 --- a/winsup/cygwin/fhandler.h +++ b/winsup/cygwin/fhandler.h @@ -1687,46 +1687,6 @@ class fhandler_dev_random: public fhandler_base } }; -class fhandler_dev_mem: public fhandler_base -{ - protected: - SIZE_T mem_size; - off_t pos; - - public: - fhandler_dev_mem (); - ~fhandler_dev_mem (); - - int open (int flags, mode_t mode = 0); - ssize_t __stdcall write (const void *ptr, size_t ulen); - void __reg3 read (void *ptr, size_t& len); - off_t lseek (off_t offset, int whence); - int __reg2 fstat (struct stat *buf); - - HANDLE mmap (caddr_t *addr, size_t len, int prot, int flags, off_t off); - int munmap (HANDLE h, caddr_t addr, size_t len); - int msync (HANDLE h, caddr_t addr, size_t len, int flags); - bool fixup_mmap_after_fork (HANDLE h, int prot, int flags, - off_t offset, DWORD size, void *address); - - fhandler_dev_mem (void *) {} - - void copyto (fhandler_base *x) - { - x->pc.free_strings (); - *reinterpret_cast (x) = *this; - x->reset (this); - } - - fhandler_dev_mem *clone (cygheap_types malloc_type = HEAP_FHANDLER) - { - void *ptr = (void *) ccalloc (malloc_type, 1, 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 { off_t pos; @@ -2148,7 +2108,6 @@ typedef union char __dev_clipboard[sizeof (fhandler_dev_clipboard)]; char __dev_dsp[sizeof (fhandler_dev_dsp)]; char __dev_floppy[sizeof (fhandler_dev_floppy)]; - char __dev_mem[sizeof (fhandler_dev_mem)]; char __dev_null[sizeof (fhandler_dev_null)]; char __dev_random[sizeof (fhandler_dev_random)]; char __dev_raw[sizeof (fhandler_dev_raw)]; diff --git a/winsup/cygwin/fhandler_mem.cc b/winsup/cygwin/fhandler_mem.cc deleted file mode 100644 index b3f8def80..000000000 --- a/winsup/cygwin/fhandler_mem.cc +++ /dev/null @@ -1,258 +0,0 @@ -/* fhandler_mem.cc. See fhandler.h for a description of the fhandler classes. - - Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008, 2009, 2010, 2011, - 2012, 2013 Red Hat, Inc. - - This file is part of Cygwin. - - This software is a copyrighted work licensed under the terms of the - Cygwin license. Please consult the file "CYGWIN_LICENSE" for - details. */ - -#include "winsup.h" -#include - -#include "cygerrno.h" -#include "path.h" -#include "fhandler.h" -#include "ntdll.h" - -/**********************************************************************/ -/* fhandler_dev_mem */ - -fhandler_dev_mem::fhandler_dev_mem () - : fhandler_base () -{ -} - -fhandler_dev_mem::~fhandler_dev_mem () -{ -} - -int -fhandler_dev_mem::open (int flags, mode_t) -{ - NTSTATUS status; - - if (!wincap.has_physical_mem_access ()) - { - set_errno (EACCES); - debug_printf ("%s is accessible under XP only", dev ().name); - return 0; - } - - if (dev () == FH_MEM) /* /dev/mem */ - { - SYSTEM_BASIC_INFORMATION sbi; - status = NtQuerySystemInformation (SystemBasicInformation, (PVOID) &sbi, - sizeof sbi, NULL); - if (NT_SUCCESS (status)) - { - __seterrno_from_nt_status (status); - debug_printf("NtQuerySystemInformation: status %p", status); - mem_size = 0; - } - else - mem_size = (SIZE_T) sbi.PhysicalPageSize - * (SIZE_T) sbi.NumberOfPhysicalPages; - debug_printf ("MemSize: %ld MB", mem_size >> 20); - } - else if (dev () == FH_KMEM) /* /dev/kmem - Not yet supported */ - { - mem_size = 0; - debug_printf ("KMemSize: %ld MB", mem_size >> 20); - } - else if (dev () == FH_PORT) /* /dev/port == First 64K of /dev/mem */ - { - mem_size = 65536; - debug_printf ("PortSize: 64 KB"); - } - else - { - mem_size = 0; - debug_printf ("Illegal minor number"); - } - - /* Check for illegal flags. */ - if (flags & (O_APPEND | O_TRUNC | O_EXCL)) - { - set_errno (EINVAL); - return 0; - } - - OBJECT_ATTRIBUTES attr; - InitializeObjectAttributes (&attr, &ro_u_pmem, - OBJ_CASE_INSENSITIVE - | (flags & O_CLOEXEC ? 0 : OBJ_INHERIT), - NULL, NULL); - - ACCESS_MASK section_access; - if ((flags & O_ACCMODE) == O_RDONLY) - { - set_access (GENERIC_READ); - section_access = SECTION_MAP_READ; - } - else if ((flags & O_ACCMODE) == O_WRONLY) - { - set_access (GENERIC_WRITE); - section_access = SECTION_MAP_READ | SECTION_MAP_WRITE; - } - else - { - set_access (GENERIC_READ | GENERIC_WRITE); - section_access = SECTION_MAP_READ | SECTION_MAP_WRITE; - } - - HANDLE mem; - status = NtOpenSection (&mem, section_access, &attr); - if (!NT_SUCCESS (status)) - { - __seterrno_from_nt_status (status); - set_io_handle (NULL); - return 0; - } - - set_io_handle (mem); - set_open_status (); - return 1; -} - -ssize_t __stdcall -fhandler_dev_mem::write (const void *ptr, size_t ulen) -{ - if (!ulen || pos >= (off_t) mem_size) - return 0; - - if (!(get_access () & GENERIC_WRITE)) - { - set_errno (EINVAL); - return -1; - } - - if (pos + ulen > mem_size) - ulen = (off_t) mem_size - pos; - - PHYSICAL_ADDRESS phys; - NTSTATUS status; - void *viewmem = NULL; - SIZE_T len = ulen + wincap.page_size () - 1; - - phys.QuadPart = (ULONGLONG) pos; - status = NtMapViewOfSection (get_handle (), INVALID_HANDLE_VALUE, &viewmem, - 0L, len, &phys, &len, ViewShare, 0, - PAGE_READONLY); - if (!NT_SUCCESS (status)) - { - __seterrno_from_nt_status (status); - return -1; - } - - memcpy ((char *) viewmem + (pos - phys.QuadPart), ptr, ulen); - - status = NtUnmapViewOfSection (INVALID_HANDLE_VALUE, viewmem); - if (!NT_SUCCESS (status)) - { - __seterrno_from_nt_status (status); - return -1; - } - - pos += ulen; - return ulen; -} - -void __reg3 -fhandler_dev_mem::read (void *ptr, size_t& ulen) -{ - if (!ulen || pos >= (off_t) mem_size) - { - ulen = 0; - return; - } - - if (!(get_access () & GENERIC_READ)) - { - set_errno (EINVAL); - ulen = (size_t) -1; - return; - } - - if (pos + ulen > mem_size) - ulen = (off_t) mem_size - pos; - - PHYSICAL_ADDRESS phys; - NTSTATUS status; - void *viewmem = NULL; - SIZE_T len = ulen + wincap.page_size () - 1; - - phys.QuadPart = (ULONGLONG) pos; - status = NtMapViewOfSection (get_handle (), INVALID_HANDLE_VALUE, &viewmem, - 0L, len, &phys, &len, ViewShare, 0, - PAGE_READONLY); - if (!NT_SUCCESS (status)) - { - __seterrno_from_nt_status (status); - ulen = (size_t) -1; - return; - } - - memcpy (ptr, (char *) viewmem + (pos - phys.QuadPart), ulen); - - status = NtUnmapViewOfSection (INVALID_HANDLE_VALUE, viewmem); - if (!NT_SUCCESS (status)) - { - __seterrno_from_nt_status (status); - ulen = (size_t) -1; - return; - } - - pos += ulen; -} - -off_t -fhandler_dev_mem::lseek (off_t offset, int whence) -{ - switch (whence) - { - case SEEK_SET: - pos = offset; - break; - - case SEEK_CUR: - pos += offset; - break; - - case SEEK_END: - pos = (off_t) mem_size; - pos += offset; - break; - - default: - set_errno (EINVAL); - return ILLEGAL_SEEK; - } - - if (pos > (off_t) mem_size) - { - set_errno (EINVAL); - return ILLEGAL_SEEK; - } - - return pos; -} - -int __reg2 -fhandler_dev_mem::fstat (struct stat *buf) -{ - fhandler_base::fstat (buf); - buf->st_blksize = wincap.page_size (); - if (is_auto_device ()) - { - buf->st_mode = S_IFCHR; - if (wincap.has_physical_mem_access ()) - buf->st_mode |= S_IRUSR | S_IWUSR | - S_IRGRP | S_IWGRP | - S_IROTH | S_IWOTH; - } - - return 0; -} diff --git a/winsup/cygwin/globals.cc b/winsup/cygwin/globals.cc index da732a493..3cbf8f4c1 100644 --- a/winsup/cygwin/globals.cc +++ b/winsup/cygwin/globals.cc @@ -127,7 +127,6 @@ extern "C" { extern UNICODE_STRING _RDATA ro_u_sys = _ROU (L".sys"); extern UNICODE_STRING _RDATA ro_u_proc = _ROU (L"proc"); extern UNICODE_STRING _RDATA ro_u_dev = _ROU (L"dev"); - extern UNICODE_STRING _RDATA ro_u_pmem = _ROU (L"\\Device\\PhysicalMemory"); extern UNICODE_STRING _RDATA ro_u_natp = _ROU (L"\\??\\"); extern UNICODE_STRING _RDATA ro_u_uncp = _ROU (L"\\??\\UNC\\"); extern UNICODE_STRING _RDATA ro_u_mtx = _ROU (L"mtx"); diff --git a/winsup/cygwin/mmap.cc b/winsup/cygwin/mmap.cc index 697ec4099..c68d4195e 100644 --- a/winsup/cygwin/mmap.cc +++ b/winsup/cygwin/mmap.cc @@ -1811,100 +1811,6 @@ fhandler_disk_file::fixup_mmap_after_fork (HANDLE h, int prot, int flags, return base == address; } -HANDLE -fhandler_dev_mem::mmap (caddr_t *addr, size_t len, int prot, - int flags, off_t off) -{ - if (off >= (off_t) mem_size - || len >= mem_size - || off + len >= mem_size) - { - set_errno (EINVAL); - debug_printf ("-1 = mmap(): illegal parameter, set EINVAL"); - return INVALID_HANDLE_VALUE; - } - - OBJECT_ATTRIBUTES attr; - InitializeObjectAttributes (&attr, &ro_u_pmem, - OBJ_CASE_INSENSITIVE | OBJ_INHERIT, - NULL, NULL); - - /* Section access is bit-wise ored, while on the Win32 level access - is only one of the values. It's not quite clear if the section - access has to be defined this way, or if SECTION_ALL_ACCESS would - be sufficient but this worked fine so far, so why change? */ - ACCESS_MASK section_access; - if (prot & PROT_WRITE) - section_access = SECTION_MAP_READ | SECTION_MAP_WRITE; - else - section_access = SECTION_MAP_READ; - - HANDLE h; - NTSTATUS status = NtOpenSection (&h, section_access, &attr); - if (!NT_SUCCESS (status)) - { - __seterrno_from_nt_status (status); - debug_printf ("-1 = mmap(): NtOpenSection failed with %E"); - return INVALID_HANDLE_VALUE; - } - - void *base = MapView (h, *addr, len, get_access (), prot, - flags | MAP_ANONYMOUS, off); - if (!base || (fixed (flags) && base != *addr)) - { - if (!base) - __seterrno (); - else - { - NtUnmapViewOfSection (NtCurrentProcess (), base); - set_errno (EINVAL); - debug_printf ("MapView: address shift with MAP_FIXED given"); - } - NtClose (h); - return INVALID_HANDLE_VALUE; - } - - *addr = (caddr_t) base; - return h; -} - -int -fhandler_dev_mem::munmap (HANDLE h, caddr_t addr, size_t len) -{ - NTSTATUS status; - if (!NT_SUCCESS (status = NtUnmapViewOfSection (NtCurrentProcess (), addr))) - { - __seterrno_from_nt_status (status); - return -1; - } - NtClose (h); - return 0; -} - -int -fhandler_dev_mem::msync (HANDLE h, caddr_t addr, size_t len, int flags) -{ - return 0; -} - -bool -fhandler_dev_mem::fixup_mmap_after_fork (HANDLE h, int prot, int flags, - off_t offset, DWORD size, - void *address) -{ - void *base = MapView (h, address, size, get_access (), prot, - flags | MAP_ANONYMOUS, offset); - if (base != address) - { - MEMORY_BASIC_INFORMATION m; - VirtualQuery (address, &m, sizeof (m)); - system_printf ("requested %p != %p mem alloc base %p, state %y, " - "size %lu, %E", address, base, m.AllocationBase, m.State, - m.RegionSize); - } - return base == address; -} - /* Call to re-create all the file mappings in a forked child. Called from the child in initialization. At this point we are passed a valid mmapped_areas map, and all the HANDLE's are valid for the child, but diff --git a/winsup/cygwin/release/1.7.22 b/winsup/cygwin/release/1.7.22 new file mode 100644 index 000000000..c8af840f3 --- /dev/null +++ b/winsup/cygwin/release/1.7.22 @@ -0,0 +1,14 @@ +What's new: +----------- + + +What changed: +----------- + +- Support for /dev/mem, /dev/kmem and /dev/port removed, since OS support + was limited to 32 bit Windows XP only. + + +Bug fixes: +---------- +