From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 211AA3858C20; Sun, 5 Nov 2023 19:59:07 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 211AA3858C20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1699214347; bh=QXtEOboqe+YUaOJ2xACXg3QS4jbmGLwuVRBldCi6jOs=; h=From:To:Subject:Date:From; b=llzbcfCnshKQ8cexzbrBHvub1JwvvzRpOd+n3g0mKIkUXVApaKIou7lDyHTd6YK/H SOXzzwVcx1jW9xGGbgHZctipCfKr6QMyYJZ0hZKVhcIBorkETyb4vIo/BDhN2gE6xO smZnwvbnBkTDCDhAx+Zy86+w6jxhQhZfIXDYfTBU= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Corinna Vinschen To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin/main] Cygwin: Add /dev/disk/by-id symlinks X-Act-Checkin: newlib-cygwin X-Git-Author: Christian Franke X-Git-Refname: refs/heads/main X-Git-Oldrev: 12e3bac3ce562007e83c3c67243c85fcb5ee70a4 X-Git-Newrev: c8cf1933ba04edf40181545b4c258be059d66f87 Message-Id: <20231105195907.211AA3858C20@sourceware.org> Date: Sun, 5 Nov 2023 19:59:07 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3Dc8cf1933ba0= 4edf40181545b4c258be059d66f87 commit c8cf1933ba04edf40181545b4c258be059d66f87 Author: Christian Franke AuthorDate: Sun Nov 5 15:54:23 2023 +0100 Commit: Corinna Vinschen CommitDate: Sun Nov 5 17:01:43 2023 +0100 Cygwin: Add /dev/disk/by-id symlinks =20 The new directory '/dev/disk/by-id' provides symlinks for each disk and its partitions: 'BUSTYPE-[VENDOR_]PRODUCT_SERIAL[-partN]' -> '../../sdX[N]'. This is based on strings provided by STORAGE_DEVICE_DESCRIPTOR. If this information is too short, a 128-bit hash of the STORAGE_DEVICE_UNIQUE_IDENTIFIER raw data is added. Administrator privileges are not required. =20 Signed-off-by: Christian Franke Diff: --- winsup/cygwin/Makefile.am | 1 + winsup/cygwin/devices.cc | 1433 ++++++++++++++++-----------= ---- winsup/cygwin/devices.in | 4 + winsup/cygwin/dtable.cc | 3 + winsup/cygwin/fhandler/dev_disk.cc | 621 ++++++++++++++ winsup/cygwin/local_includes/devices.h | 6 +- winsup/cygwin/local_includes/fhandler.h | 47 + winsup/cygwin/mount.cc | 10 + 8 files changed, 1417 insertions(+), 708 deletions(-) diff --git a/winsup/cygwin/Makefile.am b/winsup/cygwin/Makefile.am index 64b252a22636..376c79fc3c76 100644 --- a/winsup/cygwin/Makefile.am +++ b/winsup/cygwin/Makefile.am @@ -84,6 +84,7 @@ FHANDLER_FILES=3D \ fhandler/console.cc \ fhandler/cygdrive.cc \ fhandler/dev.cc \ + fhandler/dev_disk.cc \ fhandler/dev_fd.cc \ fhandler/disk_file.cc \ fhandler/dsp.cc \ diff --git a/winsup/cygwin/devices.cc b/winsup/cygwin/devices.cc index acdc5441242f..167b0e4b4c02 100644 --- a/winsup/cygwin/devices.cc +++ b/winsup/cygwin/devices.cc @@ -119,6 +119,9 @@ const _device dev_cygdrive_storage =3D const _device dev_fs_storage =3D {"", {FH_FS}, "", exists}; =20 +const _device dev_dev_disk_storage =3D + {"", {FH_DEV_DISK}, "", exists}; + const _device dev_proc_storage =3D {"", {FH_PROC}, "", exists}; =20 @@ -322,6 +325,7 @@ const _RDATA _device dev_storage[] =3D {"/dev/cons126", BRACK(FHDEV(DEV_CONS_MAJOR, 126)), "/dev/cons126", exis= ts_console, S_IFCHR, true}, {"/dev/cons127", BRACK(FHDEV(DEV_CONS_MAJOR, 127)), "/dev/cons127", exis= ts_console, S_IFCHR, true}, {"/dev/console", BRACK(FH_CONSOLE), "/dev/console", exists_console, S_IF= CHR, true}, + {"/dev/disk", BRACK(FH_DEV_DISK), "", exists, S_IFDIR, true}, {"/dev/dsp", BRACK(FH_OSS_DSP), "\\Device\\Null", exists_ntdev, S_IFCHR,= true}, {"/dev/fd", BRACK(FH_DEV_FD), "/proc/self/fd", exists, S_IFLNK, true}, {"/dev/fd0", BRACK(FHDEV(DEV_FLOPPY_MAJOR, 0)), "\\Device\\Floppy0", exi= sts_ntdev, S_IFBLK, true}, @@ -1030,9 +1034,9 @@ const _RDATA _device dev_storage[] =3D =20 const _device *cons_dev =3D dev_storage + 20; const _device *console_dev =3D dev_storage + 148; -const _device *ptym_dev =3D dev_storage + 725; -const _device *ptys_dev =3D dev_storage + 299; -const _device *urandom_dev =3D dev_storage + 720; +const _device *ptym_dev =3D dev_storage + 726; +const _device *ptys_dev =3D dev_storage + 300; +const _device *urandom_dev =3D dev_storage + 721; =20 =20 static KR_device_t KR_find_keyword (const char *KR_keyword, int KR_length) @@ -1062,7 +1066,7 @@ return NULL; if (strncmp (KR_keyword, ":pipe", 5) =3D=3D 0) { { -return dev_storage + 724; +return dev_storage + 725; =20 } } @@ -1077,7 +1081,7 @@ return NULL; if (strncmp (KR_keyword, ":fifo", 5) =3D=3D 0) { { -return dev_storage + 723; +return dev_storage + 724; =20 } } @@ -1101,7 +1105,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym9", 6) =3D=3D 0) { { -return dev_storage + 734; +return dev_storage + 735; =20 } } @@ -1116,7 +1120,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym8", 6) =3D=3D 0) { { -return dev_storage + 733; +return dev_storage + 734; =20 } } @@ -1131,7 +1135,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym7", 6) =3D=3D 0) { { -return dev_storage + 732; +return dev_storage + 733; =20 } } @@ -1146,7 +1150,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym6", 6) =3D=3D 0) { { -return dev_storage + 731; +return dev_storage + 732; =20 } } @@ -1161,7 +1165,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym5", 6) =3D=3D 0) { { -return dev_storage + 730; +return dev_storage + 731; =20 } } @@ -1176,7 +1180,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym4", 6) =3D=3D 0) { { -return dev_storage + 729; +return dev_storage + 730; =20 } } @@ -1191,7 +1195,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym3", 6) =3D=3D 0) { { -return dev_storage + 728; +return dev_storage + 729; =20 } } @@ -1206,7 +1210,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym2", 6) =3D=3D 0) { { -return dev_storage + 727; +return dev_storage + 728; =20 } } @@ -1221,7 +1225,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym1", 6) =3D=3D 0) { { -return dev_storage + 726; +return dev_storage + 727; =20 } } @@ -1236,7 +1240,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym0", 6) =3D=3D 0) { { -return dev_storage + 725; +return dev_storage + 726; =20 } } @@ -1260,7 +1264,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/fd", 7) =3D=3D 0) { { -return dev_storage + 150; +return dev_storage + 151; =20 } } @@ -1278,7 +1282,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym99", 7) =3D=3D 0) { { -return dev_storage + 824; +return dev_storage + 825; =20 } } @@ -1293,7 +1297,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym98", 7) =3D=3D 0) { { -return dev_storage + 823; +return dev_storage + 824; =20 } } @@ -1308,7 +1312,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym97", 7) =3D=3D 0) { { -return dev_storage + 822; +return dev_storage + 823; =20 } } @@ -1323,7 +1327,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym96", 7) =3D=3D 0) { { -return dev_storage + 821; +return dev_storage + 822; =20 } } @@ -1338,7 +1342,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym95", 7) =3D=3D 0) { { -return dev_storage + 820; +return dev_storage + 821; =20 } } @@ -1353,7 +1357,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym94", 7) =3D=3D 0) { { -return dev_storage + 819; +return dev_storage + 820; =20 } } @@ -1368,7 +1372,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym93", 7) =3D=3D 0) { { -return dev_storage + 818; +return dev_storage + 819; =20 } } @@ -1383,7 +1387,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym92", 7) =3D=3D 0) { { -return dev_storage + 817; +return dev_storage + 818; =20 } } @@ -1398,7 +1402,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym91", 7) =3D=3D 0) { { -return dev_storage + 816; +return dev_storage + 817; =20 } } @@ -1413,7 +1417,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym90", 7) =3D=3D 0) { { -return dev_storage + 815; +return dev_storage + 816; =20 } } @@ -1437,7 +1441,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym89", 7) =3D=3D 0) { { -return dev_storage + 814; +return dev_storage + 815; =20 } } @@ -1452,7 +1456,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym88", 7) =3D=3D 0) { { -return dev_storage + 813; +return dev_storage + 814; =20 } } @@ -1467,7 +1471,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym87", 7) =3D=3D 0) { { -return dev_storage + 812; +return dev_storage + 813; =20 } } @@ -1482,7 +1486,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym86", 7) =3D=3D 0) { { -return dev_storage + 811; +return dev_storage + 812; =20 } } @@ -1497,7 +1501,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym85", 7) =3D=3D 0) { { -return dev_storage + 810; +return dev_storage + 811; =20 } } @@ -1512,7 +1516,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym84", 7) =3D=3D 0) { { -return dev_storage + 809; +return dev_storage + 810; =20 } } @@ -1527,7 +1531,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym83", 7) =3D=3D 0) { { -return dev_storage + 808; +return dev_storage + 809; =20 } } @@ -1542,7 +1546,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym82", 7) =3D=3D 0) { { -return dev_storage + 807; +return dev_storage + 808; =20 } } @@ -1557,7 +1561,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym81", 7) =3D=3D 0) { { -return dev_storage + 806; +return dev_storage + 807; =20 } } @@ -1572,7 +1576,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym80", 7) =3D=3D 0) { { -return dev_storage + 805; +return dev_storage + 806; =20 } } @@ -1596,7 +1600,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym79", 7) =3D=3D 0) { { -return dev_storage + 804; +return dev_storage + 805; =20 } } @@ -1611,7 +1615,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym78", 7) =3D=3D 0) { { -return dev_storage + 803; +return dev_storage + 804; =20 } } @@ -1626,7 +1630,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym77", 7) =3D=3D 0) { { -return dev_storage + 802; +return dev_storage + 803; =20 } } @@ -1641,7 +1645,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym76", 7) =3D=3D 0) { { -return dev_storage + 801; +return dev_storage + 802; =20 } } @@ -1656,7 +1660,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym75", 7) =3D=3D 0) { { -return dev_storage + 800; +return dev_storage + 801; =20 } } @@ -1671,7 +1675,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym74", 7) =3D=3D 0) { { -return dev_storage + 799; +return dev_storage + 800; =20 } } @@ -1686,7 +1690,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym73", 7) =3D=3D 0) { { -return dev_storage + 798; +return dev_storage + 799; =20 } } @@ -1701,7 +1705,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym72", 7) =3D=3D 0) { { -return dev_storage + 797; +return dev_storage + 798; =20 } } @@ -1716,7 +1720,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym71", 7) =3D=3D 0) { { -return dev_storage + 796; +return dev_storage + 797; =20 } } @@ -1731,7 +1735,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym70", 7) =3D=3D 0) { { -return dev_storage + 795; +return dev_storage + 796; =20 } } @@ -1755,7 +1759,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym69", 7) =3D=3D 0) { { -return dev_storage + 794; +return dev_storage + 795; =20 } } @@ -1770,7 +1774,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym68", 7) =3D=3D 0) { { -return dev_storage + 793; +return dev_storage + 794; =20 } } @@ -1785,7 +1789,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym67", 7) =3D=3D 0) { { -return dev_storage + 792; +return dev_storage + 793; =20 } } @@ -1800,7 +1804,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym66", 7) =3D=3D 0) { { -return dev_storage + 791; +return dev_storage + 792; =20 } } @@ -1815,7 +1819,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym65", 7) =3D=3D 0) { { -return dev_storage + 790; +return dev_storage + 791; =20 } } @@ -1830,7 +1834,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym64", 7) =3D=3D 0) { { -return dev_storage + 789; +return dev_storage + 790; =20 } } @@ -1845,7 +1849,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym63", 7) =3D=3D 0) { { -return dev_storage + 788; +return dev_storage + 789; =20 } } @@ -1860,7 +1864,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym62", 7) =3D=3D 0) { { -return dev_storage + 787; +return dev_storage + 788; =20 } } @@ -1875,7 +1879,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym61", 7) =3D=3D 0) { { -return dev_storage + 786; +return dev_storage + 787; =20 } } @@ -1890,7 +1894,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym60", 7) =3D=3D 0) { { -return dev_storage + 785; +return dev_storage + 786; =20 } } @@ -1914,7 +1918,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym59", 7) =3D=3D 0) { { -return dev_storage + 784; +return dev_storage + 785; =20 } } @@ -1929,7 +1933,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym58", 7) =3D=3D 0) { { -return dev_storage + 783; +return dev_storage + 784; =20 } } @@ -1944,7 +1948,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym57", 7) =3D=3D 0) { { -return dev_storage + 782; +return dev_storage + 783; =20 } } @@ -1959,7 +1963,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym56", 7) =3D=3D 0) { { -return dev_storage + 781; +return dev_storage + 782; =20 } } @@ -1974,7 +1978,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym55", 7) =3D=3D 0) { { -return dev_storage + 780; +return dev_storage + 781; =20 } } @@ -1989,7 +1993,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym54", 7) =3D=3D 0) { { -return dev_storage + 779; +return dev_storage + 780; =20 } } @@ -2004,7 +2008,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym53", 7) =3D=3D 0) { { -return dev_storage + 778; +return dev_storage + 779; =20 } } @@ -2019,7 +2023,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym52", 7) =3D=3D 0) { { -return dev_storage + 777; +return dev_storage + 778; =20 } } @@ -2034,7 +2038,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym51", 7) =3D=3D 0) { { -return dev_storage + 776; +return dev_storage + 777; =20 } } @@ -2049,7 +2053,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym50", 7) =3D=3D 0) { { -return dev_storage + 775; +return dev_storage + 776; =20 } } @@ -2073,7 +2077,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym49", 7) =3D=3D 0) { { -return dev_storage + 774; +return dev_storage + 775; =20 } } @@ -2088,7 +2092,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym48", 7) =3D=3D 0) { { -return dev_storage + 773; +return dev_storage + 774; =20 } } @@ -2103,7 +2107,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym47", 7) =3D=3D 0) { { -return dev_storage + 772; +return dev_storage + 773; =20 } } @@ -2118,7 +2122,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym46", 7) =3D=3D 0) { { -return dev_storage + 771; +return dev_storage + 772; =20 } } @@ -2133,7 +2137,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym45", 7) =3D=3D 0) { { -return dev_storage + 770; +return dev_storage + 771; =20 } } @@ -2148,7 +2152,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym44", 7) =3D=3D 0) { { -return dev_storage + 769; +return dev_storage + 770; =20 } } @@ -2163,7 +2167,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym43", 7) =3D=3D 0) { { -return dev_storage + 768; +return dev_storage + 769; =20 } } @@ -2178,7 +2182,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym42", 7) =3D=3D 0) { { -return dev_storage + 767; +return dev_storage + 768; =20 } } @@ -2193,7 +2197,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym41", 7) =3D=3D 0) { { -return dev_storage + 766; +return dev_storage + 767; =20 } } @@ -2208,7 +2212,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym40", 7) =3D=3D 0) { { -return dev_storage + 765; +return dev_storage + 766; =20 } } @@ -2232,7 +2236,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym39", 7) =3D=3D 0) { { -return dev_storage + 764; +return dev_storage + 765; =20 } } @@ -2247,7 +2251,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym38", 7) =3D=3D 0) { { -return dev_storage + 763; +return dev_storage + 764; =20 } } @@ -2262,7 +2266,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym37", 7) =3D=3D 0) { { -return dev_storage + 762; +return dev_storage + 763; =20 } } @@ -2277,7 +2281,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym36", 7) =3D=3D 0) { { -return dev_storage + 761; +return dev_storage + 762; =20 } } @@ -2292,7 +2296,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym35", 7) =3D=3D 0) { { -return dev_storage + 760; +return dev_storage + 761; =20 } } @@ -2307,7 +2311,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym34", 7) =3D=3D 0) { { -return dev_storage + 759; +return dev_storage + 760; =20 } } @@ -2322,7 +2326,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym33", 7) =3D=3D 0) { { -return dev_storage + 758; +return dev_storage + 759; =20 } } @@ -2337,7 +2341,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym32", 7) =3D=3D 0) { { -return dev_storage + 757; +return dev_storage + 758; =20 } } @@ -2352,7 +2356,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym31", 7) =3D=3D 0) { { -return dev_storage + 756; +return dev_storage + 757; =20 } } @@ -2367,7 +2371,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym30", 7) =3D=3D 0) { { -return dev_storage + 755; +return dev_storage + 756; =20 } } @@ -2391,7 +2395,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym29", 7) =3D=3D 0) { { -return dev_storage + 754; +return dev_storage + 755; =20 } } @@ -2406,7 +2410,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym28", 7) =3D=3D 0) { { -return dev_storage + 753; +return dev_storage + 754; =20 } } @@ -2421,7 +2425,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym27", 7) =3D=3D 0) { { -return dev_storage + 752; +return dev_storage + 753; =20 } } @@ -2436,7 +2440,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym26", 7) =3D=3D 0) { { -return dev_storage + 751; +return dev_storage + 752; =20 } } @@ -2451,7 +2455,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym25", 7) =3D=3D 0) { { -return dev_storage + 750; +return dev_storage + 751; =20 } } @@ -2466,7 +2470,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym24", 7) =3D=3D 0) { { -return dev_storage + 749; +return dev_storage + 750; =20 } } @@ -2481,7 +2485,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym23", 7) =3D=3D 0) { { -return dev_storage + 748; +return dev_storage + 749; =20 } } @@ -2496,7 +2500,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym22", 7) =3D=3D 0) { { -return dev_storage + 747; +return dev_storage + 748; =20 } } @@ -2511,7 +2515,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym21", 7) =3D=3D 0) { { -return dev_storage + 746; +return dev_storage + 747; =20 } } @@ -2526,7 +2530,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym20", 7) =3D=3D 0) { { -return dev_storage + 745; +return dev_storage + 746; =20 } } @@ -2550,7 +2554,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym19", 7) =3D=3D 0) { { -return dev_storage + 744; +return dev_storage + 745; =20 } } @@ -2565,7 +2569,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym18", 7) =3D=3D 0) { { -return dev_storage + 743; +return dev_storage + 744; =20 } } @@ -2580,7 +2584,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym17", 7) =3D=3D 0) { { -return dev_storage + 742; +return dev_storage + 743; =20 } } @@ -2595,7 +2599,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym16", 7) =3D=3D 0) { { -return dev_storage + 741; +return dev_storage + 742; =20 } } @@ -2610,7 +2614,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym15", 7) =3D=3D 0) { { -return dev_storage + 740; +return dev_storage + 741; =20 } } @@ -2625,7 +2629,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym14", 7) =3D=3D 0) { { -return dev_storage + 739; +return dev_storage + 740; =20 } } @@ -2640,7 +2644,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym13", 7) =3D=3D 0) { { -return dev_storage + 738; +return dev_storage + 739; =20 } } @@ -2655,7 +2659,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym12", 7) =3D=3D 0) { { -return dev_storage + 737; +return dev_storage + 738; =20 } } @@ -2670,7 +2674,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym11", 7) =3D=3D 0) { { -return dev_storage + 736; +return dev_storage + 737; =20 } } @@ -2685,7 +2689,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym10", 7) =3D=3D 0) { { -return dev_storage + 735; +return dev_storage + 736; =20 } } @@ -2715,7 +2719,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/tty", 8) =3D=3D 0) { { -return dev_storage + 591; +return dev_storage + 592; =20 } } @@ -2730,7 +2734,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/dsp", 8) =3D=3D 0) { { -return dev_storage + 149; +return dev_storage + 150; =20 } } @@ -2748,7 +2752,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st9", 8) =3D=3D 0) { { -return dev_storage + 469; +return dev_storage + 470; =20 } } @@ -2763,7 +2767,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr9", 8) =3D=3D 0) { { -return dev_storage + 453; +return dev_storage + 454; =20 } } @@ -2778,7 +2782,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/fd9", 8) =3D=3D 0) { { -return dev_storage + 160; +return dev_storage + 161; =20 } } @@ -2793,7 +2797,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym119", 8) =3D=3D 0) { { -return dev_storage + 844; +return dev_storage + 845; =20 } } @@ -2808,7 +2812,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym109", 8) =3D=3D 0) { { -return dev_storage + 834; +return dev_storage + 835; =20 } } @@ -2832,7 +2836,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st8", 8) =3D=3D 0) { { -return dev_storage + 468; +return dev_storage + 469; =20 } } @@ -2847,7 +2851,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr8", 8) =3D=3D 0) { { -return dev_storage + 452; +return dev_storage + 453; =20 } } @@ -2862,7 +2866,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/fd8", 8) =3D=3D 0) { { -return dev_storage + 159; +return dev_storage + 160; =20 } } @@ -2877,7 +2881,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym118", 8) =3D=3D 0) { { -return dev_storage + 843; +return dev_storage + 844; =20 } } @@ -2892,7 +2896,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym108", 8) =3D=3D 0) { { -return dev_storage + 833; +return dev_storage + 834; =20 } } @@ -2916,7 +2920,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st7", 8) =3D=3D 0) { { -return dev_storage + 467; +return dev_storage + 468; =20 } } @@ -2931,7 +2935,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr7", 8) =3D=3D 0) { { -return dev_storage + 451; +return dev_storage + 452; =20 } } @@ -2946,7 +2950,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/fd7", 8) =3D=3D 0) { { -return dev_storage + 158; +return dev_storage + 159; =20 } } @@ -2961,7 +2965,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym127", 8) =3D=3D 0) { { -return dev_storage + 852; +return dev_storage + 853; =20 } } @@ -2976,7 +2980,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym117", 8) =3D=3D 0) { { -return dev_storage + 842; +return dev_storage + 843; =20 } } @@ -2991,7 +2995,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym107", 8) =3D=3D 0) { { -return dev_storage + 832; +return dev_storage + 833; =20 } } @@ -3015,7 +3019,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st6", 8) =3D=3D 0) { { -return dev_storage + 466; +return dev_storage + 467; =20 } } @@ -3030,7 +3034,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr6", 8) =3D=3D 0) { { -return dev_storage + 450; +return dev_storage + 451; =20 } } @@ -3045,7 +3049,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/fd6", 8) =3D=3D 0) { { -return dev_storage + 157; +return dev_storage + 158; =20 } } @@ -3060,7 +3064,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym126", 8) =3D=3D 0) { { -return dev_storage + 851; +return dev_storage + 852; =20 } } @@ -3075,7 +3079,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym116", 8) =3D=3D 0) { { -return dev_storage + 841; +return dev_storage + 842; =20 } } @@ -3090,7 +3094,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym106", 8) =3D=3D 0) { { -return dev_storage + 831; +return dev_storage + 832; =20 } } @@ -3114,7 +3118,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st5", 8) =3D=3D 0) { { -return dev_storage + 465; +return dev_storage + 466; =20 } } @@ -3129,7 +3133,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr5", 8) =3D=3D 0) { { -return dev_storage + 449; +return dev_storage + 450; =20 } } @@ -3144,7 +3148,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/fd5", 8) =3D=3D 0) { { -return dev_storage + 156; +return dev_storage + 157; =20 } } @@ -3159,7 +3163,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym125", 8) =3D=3D 0) { { -return dev_storage + 850; +return dev_storage + 851; =20 } } @@ -3174,7 +3178,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym115", 8) =3D=3D 0) { { -return dev_storage + 840; +return dev_storage + 841; =20 } } @@ -3189,7 +3193,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym105", 8) =3D=3D 0) { { -return dev_storage + 830; +return dev_storage + 831; =20 } } @@ -3213,7 +3217,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st4", 8) =3D=3D 0) { { -return dev_storage + 464; +return dev_storage + 465; =20 } } @@ -3228,7 +3232,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr4", 8) =3D=3D 0) { { -return dev_storage + 448; +return dev_storage + 449; =20 } } @@ -3243,7 +3247,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/fd4", 8) =3D=3D 0) { { -return dev_storage + 155; +return dev_storage + 156; =20 } } @@ -3258,7 +3262,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym124", 8) =3D=3D 0) { { -return dev_storage + 849; +return dev_storage + 850; =20 } } @@ -3273,7 +3277,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym114", 8) =3D=3D 0) { { -return dev_storage + 839; +return dev_storage + 840; =20 } } @@ -3288,7 +3292,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym104", 8) =3D=3D 0) { { -return dev_storage + 829; +return dev_storage + 830; =20 } } @@ -3312,7 +3316,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st3", 8) =3D=3D 0) { { -return dev_storage + 463; +return dev_storage + 464; =20 } } @@ -3327,7 +3331,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr3", 8) =3D=3D 0) { { -return dev_storage + 447; +return dev_storage + 448; =20 } } @@ -3342,7 +3346,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/fd3", 8) =3D=3D 0) { { -return dev_storage + 154; +return dev_storage + 155; =20 } } @@ -3357,7 +3361,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym123", 8) =3D=3D 0) { { -return dev_storage + 848; +return dev_storage + 849; =20 } } @@ -3372,7 +3376,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym113", 8) =3D=3D 0) { { -return dev_storage + 838; +return dev_storage + 839; =20 } } @@ -3387,7 +3391,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym103", 8) =3D=3D 0) { { -return dev_storage + 828; +return dev_storage + 829; =20 } } @@ -3411,7 +3415,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st2", 8) =3D=3D 0) { { -return dev_storage + 462; +return dev_storage + 463; =20 } } @@ -3426,7 +3430,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr2", 8) =3D=3D 0) { { -return dev_storage + 446; +return dev_storage + 447; =20 } } @@ -3441,7 +3445,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/fd2", 8) =3D=3D 0) { { -return dev_storage + 153; +return dev_storage + 154; =20 } } @@ -3456,7 +3460,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym122", 8) =3D=3D 0) { { -return dev_storage + 847; +return dev_storage + 848; =20 } } @@ -3471,7 +3475,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym112", 8) =3D=3D 0) { { -return dev_storage + 837; +return dev_storage + 838; =20 } } @@ -3486,7 +3490,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym102", 8) =3D=3D 0) { { -return dev_storage + 827; +return dev_storage + 828; =20 } } @@ -3510,7 +3514,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st1", 8) =3D=3D 0) { { -return dev_storage + 461; +return dev_storage + 462; =20 } } @@ -3525,7 +3529,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr1", 8) =3D=3D 0) { { -return dev_storage + 445; +return dev_storage + 446; =20 } } @@ -3540,7 +3544,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/fd1", 8) =3D=3D 0) { { -return dev_storage + 152; +return dev_storage + 153; =20 } } @@ -3555,7 +3559,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym121", 8) =3D=3D 0) { { -return dev_storage + 846; +return dev_storage + 847; =20 } } @@ -3570,7 +3574,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym111", 8) =3D=3D 0) { { -return dev_storage + 836; +return dev_storage + 837; =20 } } @@ -3585,7 +3589,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym101", 8) =3D=3D 0) { { -return dev_storage + 826; +return dev_storage + 827; =20 } } @@ -3609,7 +3613,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st0", 8) =3D=3D 0) { { -return dev_storage + 460; +return dev_storage + 461; =20 } } @@ -3624,7 +3628,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr0", 8) =3D=3D 0) { { -return dev_storage + 444; +return dev_storage + 445; =20 } } @@ -3639,7 +3643,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/fd0", 8) =3D=3D 0) { { -return dev_storage + 151; +return dev_storage + 152; =20 } } @@ -3654,7 +3658,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym120", 8) =3D=3D 0) { { -return dev_storage + 845; +return dev_storage + 846; =20 } } @@ -3669,7 +3673,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym110", 8) =3D=3D 0) { { -return dev_storage + 835; +return dev_storage + 836; =20 } } @@ -3684,7 +3688,7 @@ return NULL; if (strncmp (KR_keyword, ":ptym100", 8) =3D=3D 0) { { -return dev_storage + 825; +return dev_storage + 826; =20 } } @@ -3714,7 +3718,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ptmx", 9) =3D=3D 0) { { -return dev_storage + 298; +return dev_storage + 299; =20 } } @@ -3729,7 +3733,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/zero", 9) =3D=3D 0) { { -return dev_storage + 722; +return dev_storage + 723; =20 } } @@ -3747,7 +3751,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/null", 9) =3D=3D 0) { { -return dev_storage + 297; +return dev_storage + 298; =20 } } @@ -3762,7 +3766,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/full", 9) =3D=3D 0) { { -return dev_storage + 167; +return dev_storage + 168; =20 } } @@ -3777,6 +3781,21 @@ return NULL; { return NULL; =20 +} + } + case 'k': + if (strncmp (KR_keyword, "/dev/disk", 9) =3D=3D 0) + { +{ +return dev_storage + 149; + +} + } + else + { +{ +return NULL; + } } case '9': @@ -3786,7 +3805,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty9", 9) =3D=3D 0) { { -return dev_storage + 308; +return dev_storage + 309; =20 } } @@ -3801,7 +3820,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst9", 9) =3D=3D 0) { { -return dev_storage + 178; +return dev_storage + 179; =20 } } @@ -3831,7 +3850,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd9", 9) =3D=3D 0) { { -return dev_storage + 437; +return dev_storage + 438; =20 } } @@ -3846,7 +3865,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st99", 9) =3D=3D 0) { { -return dev_storage + 559; +return dev_storage + 560; =20 } } @@ -3861,7 +3880,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st89", 9) =3D=3D 0) { { -return dev_storage + 549; +return dev_storage + 550; =20 } } @@ -3876,7 +3895,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st79", 9) =3D=3D 0) { { -return dev_storage + 539; +return dev_storage + 540; =20 } } @@ -3891,7 +3910,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st69", 9) =3D=3D 0) { { -return dev_storage + 529; +return dev_storage + 530; =20 } } @@ -3906,7 +3925,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st59", 9) =3D=3D 0) { { -return dev_storage + 519; +return dev_storage + 520; =20 } } @@ -3921,7 +3940,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st49", 9) =3D=3D 0) { { -return dev_storage + 509; +return dev_storage + 510; =20 } } @@ -3936,7 +3955,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st39", 9) =3D=3D 0) { { -return dev_storage + 499; +return dev_storage + 500; =20 } } @@ -3951,7 +3970,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st29", 9) =3D=3D 0) { { -return dev_storage + 489; +return dev_storage + 490; =20 } } @@ -3966,7 +3985,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st19", 9) =3D=3D 0) { { -return dev_storage + 479; +return dev_storage + 480; =20 } } @@ -3990,7 +4009,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty8", 9) =3D=3D 0) { { -return dev_storage + 307; +return dev_storage + 308; =20 } } @@ -4005,7 +4024,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst8", 9) =3D=3D 0) { { -return dev_storage + 177; +return dev_storage + 178; =20 } } @@ -4035,7 +4054,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd8", 9) =3D=3D 0) { { -return dev_storage + 436; +return dev_storage + 437; =20 } } @@ -4050,7 +4069,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st98", 9) =3D=3D 0) { { -return dev_storage + 558; +return dev_storage + 559; =20 } } @@ -4065,7 +4084,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st88", 9) =3D=3D 0) { { -return dev_storage + 548; +return dev_storage + 549; =20 } } @@ -4080,7 +4099,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st78", 9) =3D=3D 0) { { -return dev_storage + 538; +return dev_storage + 539; =20 } } @@ -4095,7 +4114,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st68", 9) =3D=3D 0) { { -return dev_storage + 528; +return dev_storage + 529; =20 } } @@ -4110,7 +4129,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st58", 9) =3D=3D 0) { { -return dev_storage + 518; +return dev_storage + 519; =20 } } @@ -4125,7 +4144,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st48", 9) =3D=3D 0) { { -return dev_storage + 508; +return dev_storage + 509; =20 } } @@ -4140,7 +4159,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st38", 9) =3D=3D 0) { { -return dev_storage + 498; +return dev_storage + 499; =20 } } @@ -4155,7 +4174,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st28", 9) =3D=3D 0) { { -return dev_storage + 488; +return dev_storage + 489; =20 } } @@ -4170,7 +4189,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st18", 9) =3D=3D 0) { { -return dev_storage + 478; +return dev_storage + 479; =20 } } @@ -4194,7 +4213,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty7", 9) =3D=3D 0) { { -return dev_storage + 306; +return dev_storage + 307; =20 } } @@ -4209,7 +4228,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst7", 9) =3D=3D 0) { { -return dev_storage + 176; +return dev_storage + 177; =20 } } @@ -4239,7 +4258,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd7", 9) =3D=3D 0) { { -return dev_storage + 435; +return dev_storage + 436; =20 } } @@ -4254,7 +4273,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st97", 9) =3D=3D 0) { { -return dev_storage + 557; +return dev_storage + 558; =20 } } @@ -4269,7 +4288,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st87", 9) =3D=3D 0) { { -return dev_storage + 547; +return dev_storage + 548; =20 } } @@ -4284,7 +4303,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st77", 9) =3D=3D 0) { { -return dev_storage + 537; +return dev_storage + 538; =20 } } @@ -4299,7 +4318,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st67", 9) =3D=3D 0) { { -return dev_storage + 527; +return dev_storage + 528; =20 } } @@ -4314,7 +4333,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st57", 9) =3D=3D 0) { { -return dev_storage + 517; +return dev_storage + 518; =20 } } @@ -4329,7 +4348,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st47", 9) =3D=3D 0) { { -return dev_storage + 507; +return dev_storage + 508; =20 } } @@ -4344,7 +4363,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st37", 9) =3D=3D 0) { { -return dev_storage + 497; +return dev_storage + 498; =20 } } @@ -4359,7 +4378,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st27", 9) =3D=3D 0) { { -return dev_storage + 487; +return dev_storage + 488; =20 } } @@ -4374,7 +4393,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st17", 9) =3D=3D 0) { { -return dev_storage + 477; +return dev_storage + 478; =20 } } @@ -4398,7 +4417,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty6", 9) =3D=3D 0) { { -return dev_storage + 305; +return dev_storage + 306; =20 } } @@ -4413,7 +4432,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst6", 9) =3D=3D 0) { { -return dev_storage + 175; +return dev_storage + 176; =20 } } @@ -4443,7 +4462,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd6", 9) =3D=3D 0) { { -return dev_storage + 434; +return dev_storage + 435; =20 } } @@ -4458,7 +4477,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st96", 9) =3D=3D 0) { { -return dev_storage + 556; +return dev_storage + 557; =20 } } @@ -4473,7 +4492,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st86", 9) =3D=3D 0) { { -return dev_storage + 546; +return dev_storage + 547; =20 } } @@ -4488,7 +4507,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st76", 9) =3D=3D 0) { { -return dev_storage + 536; +return dev_storage + 537; =20 } } @@ -4503,7 +4522,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st66", 9) =3D=3D 0) { { -return dev_storage + 526; +return dev_storage + 527; =20 } } @@ -4518,7 +4537,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st56", 9) =3D=3D 0) { { -return dev_storage + 516; +return dev_storage + 517; =20 } } @@ -4533,7 +4552,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st46", 9) =3D=3D 0) { { -return dev_storage + 506; +return dev_storage + 507; =20 } } @@ -4548,7 +4567,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st36", 9) =3D=3D 0) { { -return dev_storage + 496; +return dev_storage + 497; =20 } } @@ -4563,7 +4582,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st26", 9) =3D=3D 0) { { -return dev_storage + 486; +return dev_storage + 487; =20 } } @@ -4578,7 +4597,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st16", 9) =3D=3D 0) { { -return dev_storage + 476; +return dev_storage + 477; =20 } } @@ -4602,7 +4621,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty5", 9) =3D=3D 0) { { -return dev_storage + 304; +return dev_storage + 305; =20 } } @@ -4617,7 +4636,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst5", 9) =3D=3D 0) { { -return dev_storage + 174; +return dev_storage + 175; =20 } } @@ -4647,7 +4666,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd5", 9) =3D=3D 0) { { -return dev_storage + 433; +return dev_storage + 434; =20 } } @@ -4662,7 +4681,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st95", 9) =3D=3D 0) { { -return dev_storage + 555; +return dev_storage + 556; =20 } } @@ -4677,7 +4696,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st85", 9) =3D=3D 0) { { -return dev_storage + 545; +return dev_storage + 546; =20 } } @@ -4692,7 +4711,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st75", 9) =3D=3D 0) { { -return dev_storage + 535; +return dev_storage + 536; =20 } } @@ -4707,7 +4726,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st65", 9) =3D=3D 0) { { -return dev_storage + 525; +return dev_storage + 526; =20 } } @@ -4722,7 +4741,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st55", 9) =3D=3D 0) { { -return dev_storage + 515; +return dev_storage + 516; =20 } } @@ -4737,7 +4756,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st45", 9) =3D=3D 0) { { -return dev_storage + 505; +return dev_storage + 506; =20 } } @@ -4752,7 +4771,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st35", 9) =3D=3D 0) { { -return dev_storage + 495; +return dev_storage + 496; =20 } } @@ -4767,7 +4786,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st25", 9) =3D=3D 0) { { -return dev_storage + 485; +return dev_storage + 486; =20 } } @@ -4785,7 +4804,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st15", 9) =3D=3D 0) { { -return dev_storage + 475; +return dev_storage + 476; =20 } } @@ -4800,7 +4819,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr15", 9) =3D=3D 0) { { -return dev_storage + 459; +return dev_storage + 460; =20 } } @@ -4815,7 +4834,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/fd15", 9) =3D=3D 0) { { -return dev_storage + 166; +return dev_storage + 167; =20 } } @@ -4845,7 +4864,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty4", 9) =3D=3D 0) { { -return dev_storage + 303; +return dev_storage + 304; =20 } } @@ -4860,7 +4879,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst4", 9) =3D=3D 0) { { -return dev_storage + 173; +return dev_storage + 174; =20 } } @@ -4890,7 +4909,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd4", 9) =3D=3D 0) { { -return dev_storage + 432; +return dev_storage + 433; =20 } } @@ -4905,7 +4924,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st94", 9) =3D=3D 0) { { -return dev_storage + 554; +return dev_storage + 555; =20 } } @@ -4920,7 +4939,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st84", 9) =3D=3D 0) { { -return dev_storage + 544; +return dev_storage + 545; =20 } } @@ -4935,7 +4954,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st74", 9) =3D=3D 0) { { -return dev_storage + 534; +return dev_storage + 535; =20 } } @@ -4950,7 +4969,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st64", 9) =3D=3D 0) { { -return dev_storage + 524; +return dev_storage + 525; =20 } } @@ -4965,7 +4984,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st54", 9) =3D=3D 0) { { -return dev_storage + 514; +return dev_storage + 515; =20 } } @@ -4980,7 +4999,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st44", 9) =3D=3D 0) { { -return dev_storage + 504; +return dev_storage + 505; =20 } } @@ -4995,7 +5014,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st34", 9) =3D=3D 0) { { -return dev_storage + 494; +return dev_storage + 495; =20 } } @@ -5010,7 +5029,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st24", 9) =3D=3D 0) { { -return dev_storage + 484; +return dev_storage + 485; =20 } } @@ -5028,7 +5047,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st14", 9) =3D=3D 0) { { -return dev_storage + 474; +return dev_storage + 475; =20 } } @@ -5043,7 +5062,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr14", 9) =3D=3D 0) { { -return dev_storage + 458; +return dev_storage + 459; =20 } } @@ -5058,7 +5077,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/fd14", 9) =3D=3D 0) { { -return dev_storage + 165; +return dev_storage + 166; =20 } } @@ -5088,7 +5107,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty3", 9) =3D=3D 0) { { -return dev_storage + 302; +return dev_storage + 303; =20 } } @@ -5103,7 +5122,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst3", 9) =3D=3D 0) { { -return dev_storage + 172; +return dev_storage + 173; =20 } } @@ -5133,7 +5152,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd3", 9) =3D=3D 0) { { -return dev_storage + 431; +return dev_storage + 432; =20 } } @@ -5148,7 +5167,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st93", 9) =3D=3D 0) { { -return dev_storage + 553; +return dev_storage + 554; =20 } } @@ -5163,7 +5182,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st83", 9) =3D=3D 0) { { -return dev_storage + 543; +return dev_storage + 544; =20 } } @@ -5178,7 +5197,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st73", 9) =3D=3D 0) { { -return dev_storage + 533; +return dev_storage + 534; =20 } } @@ -5193,7 +5212,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st63", 9) =3D=3D 0) { { -return dev_storage + 523; +return dev_storage + 524; =20 } } @@ -5208,7 +5227,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st53", 9) =3D=3D 0) { { -return dev_storage + 513; +return dev_storage + 514; =20 } } @@ -5223,7 +5242,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st43", 9) =3D=3D 0) { { -return dev_storage + 503; +return dev_storage + 504; =20 } } @@ -5238,7 +5257,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st33", 9) =3D=3D 0) { { -return dev_storage + 493; +return dev_storage + 494; =20 } } @@ -5253,7 +5272,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st23", 9) =3D=3D 0) { { -return dev_storage + 483; +return dev_storage + 484; =20 } } @@ -5271,7 +5290,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st13", 9) =3D=3D 0) { { -return dev_storage + 473; +return dev_storage + 474; =20 } } @@ -5286,7 +5305,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr13", 9) =3D=3D 0) { { -return dev_storage + 457; +return dev_storage + 458; =20 } } @@ -5301,7 +5320,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/fd13", 9) =3D=3D 0) { { -return dev_storage + 164; +return dev_storage + 165; =20 } } @@ -5331,7 +5350,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty2", 9) =3D=3D 0) { { -return dev_storage + 301; +return dev_storage + 302; =20 } } @@ -5346,7 +5365,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst2", 9) =3D=3D 0) { { -return dev_storage + 171; +return dev_storage + 172; =20 } } @@ -5376,7 +5395,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd2", 9) =3D=3D 0) { { -return dev_storage + 430; +return dev_storage + 431; =20 } } @@ -5391,7 +5410,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st92", 9) =3D=3D 0) { { -return dev_storage + 552; +return dev_storage + 553; =20 } } @@ -5406,7 +5425,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st82", 9) =3D=3D 0) { { -return dev_storage + 542; +return dev_storage + 543; =20 } } @@ -5421,7 +5440,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st72", 9) =3D=3D 0) { { -return dev_storage + 532; +return dev_storage + 533; =20 } } @@ -5436,7 +5455,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st62", 9) =3D=3D 0) { { -return dev_storage + 522; +return dev_storage + 523; =20 } } @@ -5451,7 +5470,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st52", 9) =3D=3D 0) { { -return dev_storage + 512; +return dev_storage + 513; =20 } } @@ -5466,7 +5485,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st42", 9) =3D=3D 0) { { -return dev_storage + 502; +return dev_storage + 503; =20 } } @@ -5481,7 +5500,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st32", 9) =3D=3D 0) { { -return dev_storage + 492; +return dev_storage + 493; =20 } } @@ -5496,7 +5515,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st22", 9) =3D=3D 0) { { -return dev_storage + 482; +return dev_storage + 483; =20 } } @@ -5514,7 +5533,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st12", 9) =3D=3D 0) { { -return dev_storage + 472; +return dev_storage + 473; =20 } } @@ -5529,7 +5548,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr12", 9) =3D=3D 0) { { -return dev_storage + 456; +return dev_storage + 457; =20 } } @@ -5544,7 +5563,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/fd12", 9) =3D=3D 0) { { -return dev_storage + 163; +return dev_storage + 164; =20 } } @@ -5574,7 +5593,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty1", 9) =3D=3D 0) { { -return dev_storage + 300; +return dev_storage + 301; =20 } } @@ -5589,7 +5608,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst1", 9) =3D=3D 0) { { -return dev_storage + 170; +return dev_storage + 171; =20 } } @@ -5619,7 +5638,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd1", 9) =3D=3D 0) { { -return dev_storage + 429; +return dev_storage + 430; =20 } } @@ -5634,7 +5653,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st91", 9) =3D=3D 0) { { -return dev_storage + 551; +return dev_storage + 552; =20 } } @@ -5649,7 +5668,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st81", 9) =3D=3D 0) { { -return dev_storage + 541; +return dev_storage + 542; =20 } } @@ -5664,7 +5683,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st71", 9) =3D=3D 0) { { -return dev_storage + 531; +return dev_storage + 532; =20 } } @@ -5679,7 +5698,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st61", 9) =3D=3D 0) { { -return dev_storage + 521; +return dev_storage + 522; =20 } } @@ -5694,7 +5713,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st51", 9) =3D=3D 0) { { -return dev_storage + 511; +return dev_storage + 512; =20 } } @@ -5709,7 +5728,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st41", 9) =3D=3D 0) { { -return dev_storage + 501; +return dev_storage + 502; =20 } } @@ -5724,7 +5743,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st31", 9) =3D=3D 0) { { -return dev_storage + 491; +return dev_storage + 492; =20 } } @@ -5739,7 +5758,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st21", 9) =3D=3D 0) { { -return dev_storage + 481; +return dev_storage + 482; =20 } } @@ -5757,7 +5776,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st11", 9) =3D=3D 0) { { -return dev_storage + 471; +return dev_storage + 472; =20 } } @@ -5772,7 +5791,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr11", 9) =3D=3D 0) { { -return dev_storage + 455; +return dev_storage + 456; =20 } } @@ -5787,7 +5806,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/fd11", 9) =3D=3D 0) { { -return dev_storage + 162; +return dev_storage + 163; =20 } } @@ -5817,7 +5836,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty0", 9) =3D=3D 0) { { -return dev_storage + 299; +return dev_storage + 300; =20 } } @@ -5832,7 +5851,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst0", 9) =3D=3D 0) { { -return dev_storage + 169; +return dev_storage + 170; =20 } } @@ -5847,7 +5866,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/scd0", 9) =3D=3D 0) { { -return dev_storage + 428; +return dev_storage + 429; =20 } } @@ -5862,7 +5881,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st90", 9) =3D=3D 0) { { -return dev_storage + 550; +return dev_storage + 551; =20 } } @@ -5877,7 +5896,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st80", 9) =3D=3D 0) { { -return dev_storage + 540; +return dev_storage + 541; =20 } } @@ -5892,7 +5911,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st70", 9) =3D=3D 0) { { -return dev_storage + 530; +return dev_storage + 531; =20 } } @@ -5907,7 +5926,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st60", 9) =3D=3D 0) { { -return dev_storage + 520; +return dev_storage + 521; =20 } } @@ -5922,7 +5941,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st50", 9) =3D=3D 0) { { -return dev_storage + 510; +return dev_storage + 511; =20 } } @@ -5937,7 +5956,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st40", 9) =3D=3D 0) { { -return dev_storage + 500; +return dev_storage + 501; =20 } } @@ -5952,7 +5971,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st30", 9) =3D=3D 0) { { -return dev_storage + 490; +return dev_storage + 491; =20 } } @@ -5967,7 +5986,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st20", 9) =3D=3D 0) { { -return dev_storage + 480; +return dev_storage + 481; =20 } } @@ -5985,7 +6004,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st10", 9) =3D=3D 0) { { -return dev_storage + 470; +return dev_storage + 471; =20 } } @@ -6000,7 +6019,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/sr10", 9) =3D=3D 0) { { -return dev_storage + 454; +return dev_storage + 455; =20 } } @@ -6015,7 +6034,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/fd10", 9) =3D=3D 0) { { -return dev_storage + 161; +return dev_storage + 162; =20 } } @@ -6213,7 +6232,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/stdin", 10) =3D=3D 0) { { -return dev_storage + 589; +return dev_storage + 590; =20 } } @@ -6249,7 +6268,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/mixer", 10) =3D=3D 0) { { -return dev_storage + 168; +return dev_storage + 169; =20 } } @@ -6267,7 +6286,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS9", 10) =3D=3D 0) { { -return dev_storage + 601; +return dev_storage + 602; =20 } } @@ -6282,7 +6301,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS8", 10) =3D=3D 0) { { -return dev_storage + 600; +return dev_storage + 601; =20 } } @@ -6297,7 +6316,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS7", 10) =3D=3D 0) { { -return dev_storage + 599; +return dev_storage + 600; =20 } } @@ -6312,7 +6331,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS6", 10) =3D=3D 0) { { -return dev_storage + 598; +return dev_storage + 599; =20 } } @@ -6327,7 +6346,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS5", 10) =3D=3D 0) { { -return dev_storage + 597; +return dev_storage + 598; =20 } } @@ -6342,7 +6361,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS4", 10) =3D=3D 0) { { -return dev_storage + 596; +return dev_storage + 597; =20 } } @@ -6357,7 +6376,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS3", 10) =3D=3D 0) { { -return dev_storage + 595; +return dev_storage + 596; =20 } } @@ -6372,7 +6391,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS2", 10) =3D=3D 0) { { -return dev_storage + 594; +return dev_storage + 595; =20 } } @@ -6387,7 +6406,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS1", 10) =3D=3D 0) { { -return dev_storage + 593; +return dev_storage + 594; =20 } } @@ -6402,7 +6421,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/ttyS0", 10) =3D=3D 0) { { -return dev_storage + 592; +return dev_storage + 593; =20 } } @@ -6429,7 +6448,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty99", 10) =3D=3D 0) { { -return dev_storage + 398; +return dev_storage + 399; =20 } } @@ -6444,7 +6463,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty98", 10) =3D=3D 0) { { -return dev_storage + 397; +return dev_storage + 398; =20 } } @@ -6459,7 +6478,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty97", 10) =3D=3D 0) { { -return dev_storage + 396; +return dev_storage + 397; =20 } } @@ -6474,7 +6493,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty96", 10) =3D=3D 0) { { -return dev_storage + 395; +return dev_storage + 396; =20 } } @@ -6489,7 +6508,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty95", 10) =3D=3D 0) { { -return dev_storage + 394; +return dev_storage + 395; =20 } } @@ -6504,7 +6523,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty94", 10) =3D=3D 0) { { -return dev_storage + 393; +return dev_storage + 394; =20 } } @@ -6519,7 +6538,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty93", 10) =3D=3D 0) { { -return dev_storage + 392; +return dev_storage + 393; =20 } } @@ -6534,7 +6553,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty92", 10) =3D=3D 0) { { -return dev_storage + 391; +return dev_storage + 392; =20 } } @@ -6549,7 +6568,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty91", 10) =3D=3D 0) { { -return dev_storage + 390; +return dev_storage + 391; =20 } } @@ -6564,7 +6583,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty90", 10) =3D=3D 0) { { -return dev_storage + 389; +return dev_storage + 390; =20 } } @@ -6588,7 +6607,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst99", 10) =3D=3D 0) { { -return dev_storage + 268; +return dev_storage + 269; =20 } } @@ -6603,7 +6622,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst98", 10) =3D=3D 0) { { -return dev_storage + 267; +return dev_storage + 268; =20 } } @@ -6618,7 +6637,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst97", 10) =3D=3D 0) { { -return dev_storage + 266; +return dev_storage + 267; =20 } } @@ -6633,7 +6652,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst96", 10) =3D=3D 0) { { -return dev_storage + 265; +return dev_storage + 266; =20 } } @@ -6648,7 +6667,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst95", 10) =3D=3D 0) { { -return dev_storage + 264; +return dev_storage + 265; =20 } } @@ -6663,7 +6682,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst94", 10) =3D=3D 0) { { -return dev_storage + 263; +return dev_storage + 264; =20 } } @@ -6678,7 +6697,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst93", 10) =3D=3D 0) { { -return dev_storage + 262; +return dev_storage + 263; =20 } } @@ -6693,7 +6712,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst92", 10) =3D=3D 0) { { -return dev_storage + 261; +return dev_storage + 262; =20 } } @@ -6708,7 +6727,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst91", 10) =3D=3D 0) { { -return dev_storage + 260; +return dev_storage + 261; =20 } } @@ -6723,7 +6742,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst90", 10) =3D=3D 0) { { -return dev_storage + 259; +return dev_storage + 260; =20 } } @@ -6756,7 +6775,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty89", 10) =3D=3D 0) { { -return dev_storage + 388; +return dev_storage + 389; =20 } } @@ -6771,7 +6790,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty88", 10) =3D=3D 0) { { -return dev_storage + 387; +return dev_storage + 388; =20 } } @@ -6786,7 +6805,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty87", 10) =3D=3D 0) { { -return dev_storage + 386; +return dev_storage + 387; =20 } } @@ -6801,7 +6820,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty86", 10) =3D=3D 0) { { -return dev_storage + 385; +return dev_storage + 386; =20 } } @@ -6816,7 +6835,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty85", 10) =3D=3D 0) { { -return dev_storage + 384; +return dev_storage + 385; =20 } } @@ -6831,7 +6850,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty84", 10) =3D=3D 0) { { -return dev_storage + 383; +return dev_storage + 384; =20 } } @@ -6846,7 +6865,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty83", 10) =3D=3D 0) { { -return dev_storage + 382; +return dev_storage + 383; =20 } } @@ -6861,7 +6880,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty82", 10) =3D=3D 0) { { -return dev_storage + 381; +return dev_storage + 382; =20 } } @@ -6876,7 +6895,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty81", 10) =3D=3D 0) { { -return dev_storage + 380; +return dev_storage + 381; =20 } } @@ -6891,7 +6910,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty80", 10) =3D=3D 0) { { -return dev_storage + 379; +return dev_storage + 380; =20 } } @@ -6915,7 +6934,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst89", 10) =3D=3D 0) { { -return dev_storage + 258; +return dev_storage + 259; =20 } } @@ -6930,7 +6949,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst88", 10) =3D=3D 0) { { -return dev_storage + 257; +return dev_storage + 258; =20 } } @@ -6945,7 +6964,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst87", 10) =3D=3D 0) { { -return dev_storage + 256; +return dev_storage + 257; =20 } } @@ -6960,7 +6979,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst86", 10) =3D=3D 0) { { -return dev_storage + 255; +return dev_storage + 256; =20 } } @@ -6975,7 +6994,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst85", 10) =3D=3D 0) { { -return dev_storage + 254; +return dev_storage + 255; =20 } } @@ -6990,7 +7009,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst84", 10) =3D=3D 0) { { -return dev_storage + 253; +return dev_storage + 254; =20 } } @@ -7005,7 +7024,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst83", 10) =3D=3D 0) { { -return dev_storage + 252; +return dev_storage + 253; =20 } } @@ -7020,7 +7039,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst82", 10) =3D=3D 0) { { -return dev_storage + 251; +return dev_storage + 252; =20 } } @@ -7035,7 +7054,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst81", 10) =3D=3D 0) { { -return dev_storage + 250; +return dev_storage + 251; =20 } } @@ -7050,7 +7069,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst80", 10) =3D=3D 0) { { -return dev_storage + 249; +return dev_storage + 250; =20 } } @@ -7083,7 +7102,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty79", 10) =3D=3D 0) { { -return dev_storage + 378; +return dev_storage + 379; =20 } } @@ -7098,7 +7117,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty78", 10) =3D=3D 0) { { -return dev_storage + 377; +return dev_storage + 378; =20 } } @@ -7113,7 +7132,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty77", 10) =3D=3D 0) { { -return dev_storage + 376; +return dev_storage + 377; =20 } } @@ -7128,7 +7147,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty76", 10) =3D=3D 0) { { -return dev_storage + 375; +return dev_storage + 376; =20 } } @@ -7143,7 +7162,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty75", 10) =3D=3D 0) { { -return dev_storage + 374; +return dev_storage + 375; =20 } } @@ -7158,7 +7177,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty74", 10) =3D=3D 0) { { -return dev_storage + 373; +return dev_storage + 374; =20 } } @@ -7173,7 +7192,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty73", 10) =3D=3D 0) { { -return dev_storage + 372; +return dev_storage + 373; =20 } } @@ -7188,7 +7207,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty72", 10) =3D=3D 0) { { -return dev_storage + 371; +return dev_storage + 372; =20 } } @@ -7203,7 +7222,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty71", 10) =3D=3D 0) { { -return dev_storage + 370; +return dev_storage + 371; =20 } } @@ -7218,7 +7237,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty70", 10) =3D=3D 0) { { -return dev_storage + 369; +return dev_storage + 370; =20 } } @@ -7242,7 +7261,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst79", 10) =3D=3D 0) { { -return dev_storage + 248; +return dev_storage + 249; =20 } } @@ -7257,7 +7276,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst78", 10) =3D=3D 0) { { -return dev_storage + 247; +return dev_storage + 248; =20 } } @@ -7272,7 +7291,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst77", 10) =3D=3D 0) { { -return dev_storage + 246; +return dev_storage + 247; =20 } } @@ -7287,7 +7306,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst76", 10) =3D=3D 0) { { -return dev_storage + 245; +return dev_storage + 246; =20 } } @@ -7302,7 +7321,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst75", 10) =3D=3D 0) { { -return dev_storage + 244; +return dev_storage + 245; =20 } } @@ -7317,7 +7336,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst74", 10) =3D=3D 0) { { -return dev_storage + 243; +return dev_storage + 244; =20 } } @@ -7332,7 +7351,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst73", 10) =3D=3D 0) { { -return dev_storage + 242; +return dev_storage + 243; =20 } } @@ -7347,7 +7366,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst72", 10) =3D=3D 0) { { -return dev_storage + 241; +return dev_storage + 242; =20 } } @@ -7362,7 +7381,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst71", 10) =3D=3D 0) { { -return dev_storage + 240; +return dev_storage + 241; =20 } } @@ -7377,7 +7396,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst70", 10) =3D=3D 0) { { -return dev_storage + 239; +return dev_storage + 240; =20 } } @@ -7410,7 +7429,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty69", 10) =3D=3D 0) { { -return dev_storage + 368; +return dev_storage + 369; =20 } } @@ -7425,7 +7444,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty68", 10) =3D=3D 0) { { -return dev_storage + 367; +return dev_storage + 368; =20 } } @@ -7440,7 +7459,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty67", 10) =3D=3D 0) { { -return dev_storage + 366; +return dev_storage + 367; =20 } } @@ -7455,7 +7474,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty66", 10) =3D=3D 0) { { -return dev_storage + 365; +return dev_storage + 366; =20 } } @@ -7470,7 +7489,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty65", 10) =3D=3D 0) { { -return dev_storage + 364; +return dev_storage + 365; =20 } } @@ -7485,7 +7504,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty64", 10) =3D=3D 0) { { -return dev_storage + 363; +return dev_storage + 364; =20 } } @@ -7500,7 +7519,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty63", 10) =3D=3D 0) { { -return dev_storage + 362; +return dev_storage + 363; =20 } } @@ -7515,7 +7534,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty62", 10) =3D=3D 0) { { -return dev_storage + 361; +return dev_storage + 362; =20 } } @@ -7530,7 +7549,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty61", 10) =3D=3D 0) { { -return dev_storage + 360; +return dev_storage + 361; =20 } } @@ -7545,7 +7564,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty60", 10) =3D=3D 0) { { -return dev_storage + 359; +return dev_storage + 360; =20 } } @@ -7569,7 +7588,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst69", 10) =3D=3D 0) { { -return dev_storage + 238; +return dev_storage + 239; =20 } } @@ -7584,7 +7603,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst68", 10) =3D=3D 0) { { -return dev_storage + 237; +return dev_storage + 238; =20 } } @@ -7599,7 +7618,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst67", 10) =3D=3D 0) { { -return dev_storage + 236; +return dev_storage + 237; =20 } } @@ -7614,7 +7633,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst66", 10) =3D=3D 0) { { -return dev_storage + 235; +return dev_storage + 236; =20 } } @@ -7629,7 +7648,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst65", 10) =3D=3D 0) { { -return dev_storage + 234; +return dev_storage + 235; =20 } } @@ -7644,7 +7663,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst64", 10) =3D=3D 0) { { -return dev_storage + 233; +return dev_storage + 234; =20 } } @@ -7659,7 +7678,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst63", 10) =3D=3D 0) { { -return dev_storage + 232; +return dev_storage + 233; =20 } } @@ -7674,7 +7693,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst62", 10) =3D=3D 0) { { -return dev_storage + 231; +return dev_storage + 232; =20 } } @@ -7689,7 +7708,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst61", 10) =3D=3D 0) { { -return dev_storage + 230; +return dev_storage + 231; =20 } } @@ -7704,7 +7723,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst60", 10) =3D=3D 0) { { -return dev_storage + 229; +return dev_storage + 230; =20 } } @@ -7737,7 +7756,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty59", 10) =3D=3D 0) { { -return dev_storage + 358; +return dev_storage + 359; =20 } } @@ -7752,7 +7771,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty58", 10) =3D=3D 0) { { -return dev_storage + 357; +return dev_storage + 358; =20 } } @@ -7767,7 +7786,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty57", 10) =3D=3D 0) { { -return dev_storage + 356; +return dev_storage + 357; =20 } } @@ -7782,7 +7801,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty56", 10) =3D=3D 0) { { -return dev_storage + 355; +return dev_storage + 356; =20 } } @@ -7797,7 +7816,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty55", 10) =3D=3D 0) { { -return dev_storage + 354; +return dev_storage + 355; =20 } } @@ -7812,7 +7831,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty54", 10) =3D=3D 0) { { -return dev_storage + 353; +return dev_storage + 354; =20 } } @@ -7827,7 +7846,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty53", 10) =3D=3D 0) { { -return dev_storage + 352; +return dev_storage + 353; =20 } } @@ -7842,7 +7861,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty52", 10) =3D=3D 0) { { -return dev_storage + 351; +return dev_storage + 352; =20 } } @@ -7857,7 +7876,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty51", 10) =3D=3D 0) { { -return dev_storage + 350; +return dev_storage + 351; =20 } } @@ -7872,7 +7891,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty50", 10) =3D=3D 0) { { -return dev_storage + 349; +return dev_storage + 350; =20 } } @@ -7896,7 +7915,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst59", 10) =3D=3D 0) { { -return dev_storage + 228; +return dev_storage + 229; =20 } } @@ -7911,7 +7930,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst58", 10) =3D=3D 0) { { -return dev_storage + 227; +return dev_storage + 228; =20 } } @@ -7926,7 +7945,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst57", 10) =3D=3D 0) { { -return dev_storage + 226; +return dev_storage + 227; =20 } } @@ -7941,7 +7960,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst56", 10) =3D=3D 0) { { -return dev_storage + 225; +return dev_storage + 226; =20 } } @@ -7956,7 +7975,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst55", 10) =3D=3D 0) { { -return dev_storage + 224; +return dev_storage + 225; =20 } } @@ -7971,7 +7990,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst54", 10) =3D=3D 0) { { -return dev_storage + 223; +return dev_storage + 224; =20 } } @@ -7986,7 +8005,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst53", 10) =3D=3D 0) { { -return dev_storage + 222; +return dev_storage + 223; =20 } } @@ -8001,7 +8020,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst52", 10) =3D=3D 0) { { -return dev_storage + 221; +return dev_storage + 222; =20 } } @@ -8016,7 +8035,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst51", 10) =3D=3D 0) { { -return dev_storage + 220; +return dev_storage + 221; =20 } } @@ -8031,7 +8050,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst50", 10) =3D=3D 0) { { -return dev_storage + 219; +return dev_storage + 220; =20 } } @@ -8064,7 +8083,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty49", 10) =3D=3D 0) { { -return dev_storage + 348; +return dev_storage + 349; =20 } } @@ -8079,7 +8098,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty48", 10) =3D=3D 0) { { -return dev_storage + 347; +return dev_storage + 348; =20 } } @@ -8094,7 +8113,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty47", 10) =3D=3D 0) { { -return dev_storage + 346; +return dev_storage + 347; =20 } } @@ -8109,7 +8128,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty46", 10) =3D=3D 0) { { -return dev_storage + 345; +return dev_storage + 346; =20 } } @@ -8124,7 +8143,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty45", 10) =3D=3D 0) { { -return dev_storage + 344; +return dev_storage + 345; =20 } } @@ -8139,7 +8158,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty44", 10) =3D=3D 0) { { -return dev_storage + 343; +return dev_storage + 344; =20 } } @@ -8154,7 +8173,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty43", 10) =3D=3D 0) { { -return dev_storage + 342; +return dev_storage + 343; =20 } } @@ -8169,7 +8188,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty42", 10) =3D=3D 0) { { -return dev_storage + 341; +return dev_storage + 342; =20 } } @@ -8184,7 +8203,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty41", 10) =3D=3D 0) { { -return dev_storage + 340; +return dev_storage + 341; =20 } } @@ -8199,7 +8218,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty40", 10) =3D=3D 0) { { -return dev_storage + 339; +return dev_storage + 340; =20 } } @@ -8223,7 +8242,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst49", 10) =3D=3D 0) { { -return dev_storage + 218; +return dev_storage + 219; =20 } } @@ -8238,7 +8257,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst48", 10) =3D=3D 0) { { -return dev_storage + 217; +return dev_storage + 218; =20 } } @@ -8253,7 +8272,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst47", 10) =3D=3D 0) { { -return dev_storage + 216; +return dev_storage + 217; =20 } } @@ -8268,7 +8287,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst46", 10) =3D=3D 0) { { -return dev_storage + 215; +return dev_storage + 216; =20 } } @@ -8283,7 +8302,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst45", 10) =3D=3D 0) { { -return dev_storage + 214; +return dev_storage + 215; =20 } } @@ -8298,7 +8317,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst44", 10) =3D=3D 0) { { -return dev_storage + 213; +return dev_storage + 214; =20 } } @@ -8313,7 +8332,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst43", 10) =3D=3D 0) { { -return dev_storage + 212; +return dev_storage + 213; =20 } } @@ -8328,7 +8347,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst42", 10) =3D=3D 0) { { -return dev_storage + 211; +return dev_storage + 212; =20 } } @@ -8343,7 +8362,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst41", 10) =3D=3D 0) { { -return dev_storage + 210; +return dev_storage + 211; =20 } } @@ -8358,7 +8377,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst40", 10) =3D=3D 0) { { -return dev_storage + 209; +return dev_storage + 210; =20 } } @@ -8391,7 +8410,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty39", 10) =3D=3D 0) { { -return dev_storage + 338; +return dev_storage + 339; =20 } } @@ -8406,7 +8425,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty38", 10) =3D=3D 0) { { -return dev_storage + 337; +return dev_storage + 338; =20 } } @@ -8421,7 +8440,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty37", 10) =3D=3D 0) { { -return dev_storage + 336; +return dev_storage + 337; =20 } } @@ -8436,7 +8455,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty36", 10) =3D=3D 0) { { -return dev_storage + 335; +return dev_storage + 336; =20 } } @@ -8451,7 +8470,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty35", 10) =3D=3D 0) { { -return dev_storage + 334; +return dev_storage + 335; =20 } } @@ -8466,7 +8485,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty34", 10) =3D=3D 0) { { -return dev_storage + 333; +return dev_storage + 334; =20 } } @@ -8481,7 +8500,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty33", 10) =3D=3D 0) { { -return dev_storage + 332; +return dev_storage + 333; =20 } } @@ -8496,7 +8515,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty32", 10) =3D=3D 0) { { -return dev_storage + 331; +return dev_storage + 332; =20 } } @@ -8511,7 +8530,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty31", 10) =3D=3D 0) { { -return dev_storage + 330; +return dev_storage + 331; =20 } } @@ -8526,7 +8545,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty30", 10) =3D=3D 0) { { -return dev_storage + 329; +return dev_storage + 330; =20 } } @@ -8550,7 +8569,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst39", 10) =3D=3D 0) { { -return dev_storage + 208; +return dev_storage + 209; =20 } } @@ -8565,7 +8584,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst38", 10) =3D=3D 0) { { -return dev_storage + 207; +return dev_storage + 208; =20 } } @@ -8580,7 +8599,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst37", 10) =3D=3D 0) { { -return dev_storage + 206; +return dev_storage + 207; =20 } } @@ -8595,7 +8614,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst36", 10) =3D=3D 0) { { -return dev_storage + 205; +return dev_storage + 206; =20 } } @@ -8610,7 +8629,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst35", 10) =3D=3D 0) { { -return dev_storage + 204; +return dev_storage + 205; =20 } } @@ -8625,7 +8644,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst34", 10) =3D=3D 0) { { -return dev_storage + 203; +return dev_storage + 204; =20 } } @@ -8640,7 +8659,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst33", 10) =3D=3D 0) { { -return dev_storage + 202; +return dev_storage + 203; =20 } } @@ -8655,7 +8674,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst32", 10) =3D=3D 0) { { -return dev_storage + 201; +return dev_storage + 202; =20 } } @@ -8670,7 +8689,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst31", 10) =3D=3D 0) { { -return dev_storage + 200; +return dev_storage + 201; =20 } } @@ -8685,7 +8704,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst30", 10) =3D=3D 0) { { -return dev_storage + 199; +return dev_storage + 200; =20 } } @@ -8718,7 +8737,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st127", 10) =3D=3D 0) { { -return dev_storage + 587; +return dev_storage + 588; =20 } } @@ -8733,7 +8752,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st126", 10) =3D=3D 0) { { -return dev_storage + 586; +return dev_storage + 587; =20 } } @@ -8748,7 +8767,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st125", 10) =3D=3D 0) { { -return dev_storage + 585; +return dev_storage + 586; =20 } } @@ -8763,7 +8782,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st124", 10) =3D=3D 0) { { -return dev_storage + 584; +return dev_storage + 585; =20 } } @@ -8778,7 +8797,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st123", 10) =3D=3D 0) { { -return dev_storage + 583; +return dev_storage + 584; =20 } } @@ -8793,7 +8812,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st122", 10) =3D=3D 0) { { -return dev_storage + 582; +return dev_storage + 583; =20 } } @@ -8808,7 +8827,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st121", 10) =3D=3D 0) { { -return dev_storage + 581; +return dev_storage + 582; =20 } } @@ -8823,7 +8842,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/st120", 10) =3D=3D 0) { { -return dev_storage + 580; +return dev_storage + 581; =20 } } @@ -8847,7 +8866,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty29", 10) =3D=3D 0) { { -return dev_storage + 328; +return dev_storage + 329; =20 } } @@ -8862,7 +8881,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty28", 10) =3D=3D 0) { { -return dev_storage + 327; +return dev_storage + 328; =20 } } @@ -8877,7 +8896,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty27", 10) =3D=3D 0) { { -return dev_storage + 326; +return dev_storage + 327; =20 } } @@ -8892,7 +8911,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty26", 10) =3D=3D 0) { { -return dev_storage + 325; +return dev_storage + 326; =20 } } @@ -8907,7 +8926,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty25", 10) =3D=3D 0) { { -return dev_storage + 324; +return dev_storage + 325; =20 } } @@ -8922,7 +8941,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty24", 10) =3D=3D 0) { { -return dev_storage + 323; +return dev_storage + 324; =20 } } @@ -8937,7 +8956,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty23", 10) =3D=3D 0) { { -return dev_storage + 322; +return dev_storage + 323; =20 } } @@ -8952,7 +8971,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty22", 10) =3D=3D 0) { { -return dev_storage + 321; +return dev_storage + 322; =20 } } @@ -8967,7 +8986,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty21", 10) =3D=3D 0) { { -return dev_storage + 320; +return dev_storage + 321; =20 } } @@ -8982,7 +9001,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty20", 10) =3D=3D 0) { { -return dev_storage + 319; +return dev_storage + 320; =20 } } @@ -9006,7 +9025,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst29", 10) =3D=3D 0) { { -return dev_storage + 198; +return dev_storage + 199; =20 } } @@ -9021,7 +9040,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst28", 10) =3D=3D 0) { { -return dev_storage + 197; +return dev_storage + 198; =20 } } @@ -9036,7 +9055,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst27", 10) =3D=3D 0) { { -return dev_storage + 196; +return dev_storage + 197; =20 } } @@ -9051,7 +9070,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst26", 10) =3D=3D 0) { { -return dev_storage + 195; +return dev_storage + 196; =20 } } @@ -9066,7 +9085,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst25", 10) =3D=3D 0) { { -return dev_storage + 194; +return dev_storage + 195; =20 } } @@ -9081,7 +9100,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst24", 10) =3D=3D 0) { { -return dev_storage + 193; +return dev_storage + 194; =20 } } @@ -9096,7 +9115,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst23", 10) =3D=3D 0) { { -return dev_storage + 192; +return dev_storage + 193; =20 } } @@ -9111,7 +9130,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst22", 10) =3D=3D 0) { { -return dev_storage + 191; +return dev_storage + 192; =20 } } @@ -9126,7 +9145,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst21", 10) =3D=3D 0) { { -return dev_storage + 190; +return dev_storage + 191; =20 } } @@ -9141,7 +9160,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/nst20", 10) =3D=3D 0) { { -return dev_storage + 189; +return dev_storage + 190; =20 } } @@ -9174,7 +9193,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty19", 10) =3D=3D 0) { { -return dev_storage + 318; +return dev_storage + 319; =20 } } @@ -9189,7 +9208,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty18", 10) =3D=3D 0) { { -return dev_storage + 317; +return dev_storage + 318; =20 } } @@ -9204,7 +9223,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty17", 10) =3D=3D 0) { { -return dev_storage + 316; +return dev_storage + 317; =20 } } @@ -9219,7 +9238,7 @@ return NULL; if (strncmp (KR_keyword, "/dev/pty16", 10) =3D=3D 0) [...] [diff truncated at 100000 bytes]