Searched +hist:1.60 +hist:2.2 (Results 1 - 25 of 42) sorted by relevance
| /src/sys/compat/linux/arch/mips/ | ||
| H A D | linux_sysent.c | 1.60 Sat May 31 08:52:54 GMT 2014 njoly branches: 1.60.2; Regen for munmap(2) signature. 1.60 Sat May 31 08:52:54 GMT 2014 njoly branches: 1.60.2; Regen for munmap(2) signature. 1.4 Sun Oct 14 17:21:48 GMT 2001 manu Fixed some mistakes in signal handling (this is still broken) Added some code to set linux's uname kernel version to 2.4.0 (usefull for testing with glibc-2.2). This is currently guarded by a #if 0. |
| H A D | linux_syscalls.c | 1.60 Sat May 31 08:52:54 GMT 2014 njoly branches: 1.60.2; Regen for munmap(2) signature. 1.60 Sat May 31 08:52:54 GMT 2014 njoly branches: 1.60.2; Regen for munmap(2) signature. 1.4 Sun Oct 14 17:21:48 GMT 2001 manu Fixed some mistakes in signal handling (this is still broken) Added some code to set linux's uname kernel version to 2.4.0 (usefull for testing with glibc-2.2). This is currently guarded by a #if 0. |
| H A D | linux_syscallargs.h | 1.60 Sat May 31 08:52:54 GMT 2014 njoly branches: 1.60.2; Regen for munmap(2) signature. 1.60 Sat May 31 08:52:54 GMT 2014 njoly branches: 1.60.2; Regen for munmap(2) signature. 1.4 Sun Oct 14 17:21:48 GMT 2001 manu Fixed some mistakes in signal handling (this is still broken) Added some code to set linux's uname kernel version to 2.4.0 (usefull for testing with glibc-2.2). This is currently guarded by a #if 0. |
| H A D | linux_syscall.h | 1.60 Thu May 29 10:36:31 GMT 2014 njoly Regen for utimes(2) change. 1.4 Sun Oct 14 17:21:48 GMT 2001 manu Fixed some mistakes in signal handling (this is still broken) Added some code to set linux's uname kernel version to 2.4.0 (usefull for testing with glibc-2.2). This is currently guarded by a #if 0. 1.60 Thu May 29 10:36:31 GMT 2014 njoly Regen for utimes(2) change. 1.4 Sun Oct 14 17:21:48 GMT 2001 manu Fixed some mistakes in signal handling (this is still broken) Added some code to set linux's uname kernel version to 2.4.0 (usefull for testing with glibc-2.2). This is currently guarded by a #if 0. |
| /src/sys/compat/linux/common/ | ||
| H A D | linux_oldolduname.c | 1.60 Thu Nov 16 01:32:42 GMT 2006 christos __unused removal on arguments; approved by core. 1.55 Fri Dec 29 21:07:16 GMT 2000 fvdl branches: 1.55.2; 1.55.4; Hardcode what the linux uname() calls return (Linux 2.2.5 is the current value). A few major applications check for this (like VMware), and there is no other way to trick them. Needs a more generic solution eventually. |
| H A D | linux_olduname.c | 1.60 Thu Nov 16 01:32:42 GMT 2006 christos __unused removal on arguments; approved by core. 1.56 Fri Dec 29 21:07:16 GMT 2000 fvdl branches: 1.56.2; 1.56.4; Hardcode what the linux uname() calls return (Linux 2.2.5 is the current value). A few major applications check for this (like VMware), and there is no other way to trick them. Needs a more generic solution eventually. |
| /src/sys/arch/pmax/stand/ | ||
| H A D | Makefile.booters | 1.60 Thu Jan 16 01:15:34 GMT 2014 christos branches: 1.60.6; eliminate use of bsd.sys.mk from Makefiles 1.60 Thu Jan 16 01:15:34 GMT 2014 christos branches: 1.60.6; eliminate use of bsd.sys.mk from Makefiles 1.12 Thu Jan 21 00:33:39 GMT 1999 simonb Almost working bootblocks for the pmax. This compiles fine with gcc 2.7.2.2-myc2 (and produces _identical_ bootblocks with the 1.3.3 bootblocks which weren't in the tree), but egcs 1.1.1 builds a ufs.o that's about a 100 bytes too big, and it busts the 7.5k we've got for bootrz. Still needs cleanup - the Makefiles could be better/cleaner, and doesn't install yet (because of above problem). At least there's something to work with now. Note that we have our own versions of a lot of the sys/lib/libsa routines which are less functional/smaller. |
| /src/bin/pax/ | ||
| H A D | file_subs.c | 1.60 Sun Apr 29 20:23:34 GMT 2007 msaitoh branches: 1.60.4; fix typos 1.60 Sun Apr 29 20:23:34 GMT 2007 msaitoh branches: 1.60.4; fix typos 1.44 Tue Apr 27 13:45:45 GMT 2004 christos PR/25350: Alan Barrett: Treat the sticky bit specially as non-superusers cannot set it on non-directories (elvis-2.2_0 extraction failed) |
| /src/sys/dev/pci/ | ||
| H A D | sv.c | 1.60 Sat Apr 24 23:36:57 GMT 2021 thorpej branches: 1.60.8; Merge thorpej-cfargs branch: Simplify and make extensible the config_search() / config_found() / config_attach() interfaces: rather than having different variants for which arguments you want pass along, just have a single call that takes a variadic list of tag-value arguments. Adjust all call sites: - Simplify wherever possible; don't pass along arguments that aren't actually needed. - Don't be explicit about what interface attribute is attaching if the device only has one. (More simplification.) - Add a config_probe() function to be used in indirect configuiration situations, making is visibly easier to see when indirect config is in play, and allowing for future change in semantics. (As of now, this is just a wrapper around config_match(), but that is an implementation detail.) Remove unnecessary or redundant interface attributes where they're not needed. There are currently 5 "cfargs" defined: - CFARG_SUBMATCH (submatch function for direct config) - CFARG_SEARCH (search function for indirect config) - CFARG_IATTR (interface attribte) - CFARG_LOCATORS (locators array) - CFARG_DEVHANDLE (devhandle_t - wraps OFW, ACPI, etc. handles) ...and a sentinel value CFARG_EOL. Add some extra sanity checking to ensure that interface attributes aren't ambiguous. Use CFARG_DEVHANDLE in MI FDT, OFW, and ACPI code, and macppc and shark ports to associate those device handles with device_t instance. This will trickle trough to more places over time (need back-end for pre-OFW Sun OBP; any others?). 1.60 Sat Apr 24 23:36:57 GMT 2021 thorpej branches: 1.60.8; Merge thorpej-cfargs branch: Simplify and make extensible the config_search() / config_found() / config_attach() interfaces: rather than having different variants for which arguments you want pass along, just have a single call that takes a variadic list of tag-value arguments. Adjust all call sites: - Simplify wherever possible; don't pass along arguments that aren't actually needed. - Don't be explicit about what interface attribute is attaching if the device only has one. (More simplification.) - Add a config_probe() function to be used in indirect configuiration situations, making is visibly easier to see when indirect config is in play, and allowing for future change in semantics. (As of now, this is just a wrapper around config_match(), but that is an implementation detail.) Remove unnecessary or redundant interface attributes where they're not needed. There are currently 5 "cfargs" defined: - CFARG_SUBMATCH (submatch function for direct config) - CFARG_SEARCH (search function for indirect config) - CFARG_IATTR (interface attribte) - CFARG_LOCATORS (locators array) - CFARG_DEVHANDLE (devhandle_t - wraps OFW, ACPI, etc. handles) ...and a sentinel value CFARG_EOL. Add some extra sanity checking to ensure that interface attributes aren't ambiguous. Use CFARG_DEVHANDLE in MI FDT, OFW, and ACPI code, and macppc and shark ports to associate those device handles with device_t instance. This will trickle trough to more places over time (need back-end for pre-OFW Sun OBP; any others?). 1.8 Wed Apr 14 03:26:34 GMT 1999 jonathan initialize 'p' for lame gcc-2.7.2.2 flow analysis. |
| H A D | pcireg.h | 1.60 Mon Aug 17 14:11:09 GMT 2009 jakllsch A few new PCI register #defines: - size of config and extended config space - EFI ROM code type number - extended capability list register bits 1.20 Mon Sep 27 03:20:47 GMT 1999 cgd branches: 1.20.2; 1.20.8; add classes/subclasses new in PCI 2.2. Needs a bit of cleanup, but then, so does everything involving configuration space headers and if i don't get this out of my source tree i'll go insane. 1.18 Sat Nov 07 16:47:22 GMT 1998 drochner add support for "extended capabilities" (new in PCI spec 2.2) |
| H A D | pcivar.h | 1.60 Fri Apr 23 21:13:07 GMT 2004 itojun pass string length (= boundary info) to pci_devinfo so that we do not run over the end of memory region 1.37 Sat Nov 07 16:47:22 GMT 1998 drochner add support for "extended capabilities" (new in PCI spec 2.2) |
| /src/sys/dev/mca/ | ||
| H A D | ed_mca.c | 1.60 Wed Dec 31 17:06:48 GMT 2014 christos Centralize wedge ioctls in disk_ioctl. 1.1 Thu Apr 19 07:30:24 GMT 2001 jdolecek Add a driver for IBM ESDI disk controllers. Tested with IBM Integ. ESDI Fixed Disk & Controller only at the moment. This driver still needs some touchup (error recovery is not quite good, MCA DMA controller goo should be moved to driver independant location), but is working enough to be usable for others. And I want this under CVS control :) Thanks to Scott Telford <st@epcc.ed.ac.uk> for providing me docs for these devices (IBM DASD Storage Interface Specification for MCA rev. 2.2). |
| /src/usr.sbin/traceroute/ | ||
| H A D | traceroute.c | 1.60 Mon Jan 05 23:23:39 GMT 2004 jmmv Homogenize usage messages: make the 'usage' word all lowercase, as this seems to be the most common practice in our tree. 1.17 Tue Sep 02 21:48:50 GMT 1997 is Make it recognize ICMP_UNREACH_ADMIN_PROHIBITED (type 13) as !A, and print !{number} for unknown numbers. This patch is part of PR 4038 by Havard Eidnes <he@vader.runit.sintef.no>, who in turn did loosely base his patch on the FreeBSD 2.2.2 version. |
| /src/sys/dev/ic/ | ||
| H A D | ac97.c | 1.68 Mon Apr 04 18:52:30 GMT 2005 jmcneill * Add more AC97 modem registers (from AC'97 revision 2.2) * Add sysctls to control the modem's off-hook status (work in progress) 1.60 Tue Aug 24 00:53:28 GMT 2004 thorpej Use ANSI function decls and more use of static. |
| /src/distrib/notes/common/ | ||
| H A D | postinstall | 1.63 Wed Jul 25 22:01:13 GMT 2007 pavel branches: 1.63.4; 1.63.8; merge rev. 1.58.2.2 - fix ".end-preformat" problem. 1.60 Thu Mar 09 18:07:31 GMT 2006 wiz Fix some URLs. From OKANO Takayoshi in PR 33001. |
| /src/sys/dev/scsipi/ | ||
| H A D | atapiconf.c | 1.60 Wed Sep 17 19:14:57 GMT 2003 mycroft Remove PQUIRK_BYTE5_ZERO. 1.21 Tue Jan 19 10:57:11 GMT 1999 bouyer Move test for SDEV_NOSTARTUNIT quirk from sd.c to scsipi_start(). Add a SDEV_NOSTARTUNIT quirk entry for BCD-16X 1997-04-25", "", "VER 2.2" CD-rom (from Michael Santos). |
| H A D | scsipiconf.h | 1.60 Thu Sep 27 18:07:51 GMT 2001 mjacob Restore previous definitions. 1.29 Tue Jan 19 10:57:11 GMT 1999 bouyer branches: 1.29.2; Move test for SDEV_NOSTARTUNIT quirk from sd.c to scsipi_start(). Add a SDEV_NOSTARTUNIT quirk entry for BCD-16X 1997-04-25", "", "VER 2.2" CD-rom (from Michael Santos). 1.60 Thu Sep 27 18:07:51 GMT 2001 mjacob Restore previous definitions. 1.29 Tue Jan 19 10:57:11 GMT 1999 bouyer branches: 1.29.2; Move test for SDEV_NOSTARTUNIT quirk from sd.c to scsipi_start(). Add a SDEV_NOSTARTUNIT quirk entry for BCD-16X 1997-04-25", "", "VER 2.2" CD-rom (from Michael Santos). |
| /src/sys/arch/macppc/conf/ | ||
| H A D | INSTALL | 1.60 Wed Apr 17 02:22:53 GMT 2002 mycroft Switch from de to tlp by default. 1.52 Thu Jan 03 04:34:21 GMT 2002 mbw tv@netbsd says that the desired behavior for macppc is for de to be default for DEC-based chips, and to have tlp available for tulip clones. The change in GENERIC is such that TLP_MATCH options are commented out (allowing de to attach to DEC-based chips), and change in is INSTALL such that de is present and TLP_MATCH options are commented out. The addition of de in INSTALL increases its compressed size by about 17 KB. Primarily the goal is to have INSTALL and GENERIC use the same device. This will fix PR port-macppc/10779. It has been tested with the 1.5.3_ALPHA GENERIC and INSTALL kernels on my PowerMacintosh 7300 with a 21140A (now de, previously tlp) and a Lite-On 82C115 (tlp). de0 at pci0 dev 15 function 0 de0: interrupting at irq 25 de0: Asante 21140A [10-100Mb/s] pass 2.2 de0: address 00:00:94:a4:03:35 de0: enabling 10baseT port tlp0 at pci0 dev 14 function 0: Lite-On 82C115 Ethernet, pass 2.5 tlp0: interrupting at irq 24 tlp0: Ethernet address 00:00:94:b6:16:ef tlp0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX 1.60 Wed Apr 17 02:22:53 GMT 2002 mycroft Switch from de to tlp by default. 1.52 Thu Jan 03 04:34:21 GMT 2002 mbw tv@netbsd says that the desired behavior for macppc is for de to be default for DEC-based chips, and to have tlp available for tulip clones. The change in GENERIC is such that TLP_MATCH options are commented out (allowing de to attach to DEC-based chips), and change in is INSTALL such that de is present and TLP_MATCH options are commented out. The addition of de in INSTALL increases its compressed size by about 17 KB. Primarily the goal is to have INSTALL and GENERIC use the same device. This will fix PR port-macppc/10779. It has been tested with the 1.5.3_ALPHA GENERIC and INSTALL kernels on my PowerMacintosh 7300 with a 21140A (now de, previously tlp) and a Lite-On 82C115 (tlp). de0 at pci0 dev 15 function 0 de0: interrupting at irq 25 de0: Asante 21140A [10-100Mb/s] pass 2.2 de0: address 00:00:94:a4:03:35 de0: enabling 10baseT port tlp0 at pci0 dev 14 function 0: Lite-On 82C115 Ethernet, pass 2.5 tlp0: interrupting at irq 24 tlp0: Ethernet address 00:00:94:b6:16:ef tlp0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX |
| /src/usr.bin/xlint/lint1/ | ||
| H A D | main1.c | 1.60 Sat Apr 16 13:25:27 GMT 2022 rillig lint: model C language levels in a future-compatible way The options -t, -s and -S are confusing because they are used inconsistently. The option -S enables C99 features, but when using it instead of -s, it also doesn't enable all checks required by C90 and later. Prepare fixing of these inconsistencies by replacing the flag variables with language levels that can be extended in a straight-forward way as new C standards arrive. | option | allow_trad | allow_c90 | allow_c99 | allow_c11 | |--------|------------|-----------|-----------|-----------| | -t | x | - | - | - | | (none) | x | x | - | - | | -s | - | x | - | - | | -S | - | x | x | - | | -Ac11 | - | x | x | x | Each usage of the old flag variables will be inspected and migrated individually, to clean up the subtle variations in the conditions and to provide a simpler model. When lint was created in 1995, its focus was migrating traditional C code to C90 code. Lint does not help in migrating from C90 to C99 or from C99 to C11 since there are only few silent changes, and simply because nobody took the time to implement these migration aids. If necessary, such migration modes could be added separately. There is a small functional change: when the option -s is combined with either -S or -Ac11, lint now only keeps the last of these options. Previously, these options could be combined, leading to a mixture of language levels, halfway between C90, C99 and C11. Especially combining traditional C with C11 doesn't make sense, but xlint currently allows it. The 3 tests that accidentally specified multiple language levels have been adjusted to a single language level. 1.58 Fri Dec 17 00:05:24 GMT 2021 rillig lint: in GCC mode, declare alloca and variants The prototype declarations define the correct parameter types of these functions so that they are no longer subject to the default argument promotions (C11 6.5.2.2p6). The GCC builtins are only recognized in GCC mode (-g). |
| /src/sys/netipsec/ | ||
| H A D | ipsec_output.c | 1.60 Thu Aug 10 06:11:24 GMT 2017 ozaki-r Add per-CPU rtcache to ipsec_reinject_ipstack It reduces route lookups and also reduces rtcache lock contentions when NET_MPSAFE is enabled. 1.9 Mon Mar 01 23:30:01 GMT 2004 thorpej Add missing copyright notice (FreeBSD rev. 1.3.2.2). |
| /src/sys/dev/sdmmc/ | ||
| H A D | sdhc.c | 1.60 Wed Jul 22 09:54:42 GMT 2015 skrll Use C99 designated initializers. No functional change. 1.5 Tue Jan 12 08:41:16 GMT 2010 uebayasi branches: 1.5.2; According to SD Host Controller Simplified Specification Version 2.00, 2.2.10. Host Control Register (Offset 028h), the "Data Transfer Width" bit is in Host Control Register (Offset 028h), not Power Control Register (Offset 029h). 1.60 Wed Jul 22 09:54:42 GMT 2015 skrll Use C99 designated initializers. No functional change. 1.5 Tue Jan 12 08:41:16 GMT 2010 uebayasi branches: 1.5.2; According to SD Host Controller Simplified Specification Version 2.00, 2.2.10. Host Control Register (Offset 028h), the "Data Transfer Width" bit is in Host Control Register (Offset 028h), not Power Control Register (Offset 029h). 1.60 Wed Jul 22 09:54:42 GMT 2015 skrll Use C99 designated initializers. No functional change. 1.5 Tue Jan 12 08:41:16 GMT 2010 uebayasi branches: 1.5.2; According to SD Host Controller Simplified Specification Version 2.00, 2.2.10. Host Control Register (Offset 028h), the "Data Transfer Width" bit is in Host Control Register (Offset 028h), not Power Control Register (Offset 029h). 1.60 Wed Jul 22 09:54:42 GMT 2015 skrll Use C99 designated initializers. No functional change. 1.5 Tue Jan 12 08:41:16 GMT 2010 uebayasi branches: 1.5.2; According to SD Host Controller Simplified Specification Version 2.00, 2.2.10. Host Control Register (Offset 028h), the "Data Transfer Width" bit is in Host Control Register (Offset 028h), not Power Control Register (Offset 029h). |
| /src/distrib/sets/lists/comp/ | ||
| H A D | md.sparc64 | 1.60 Sun Jul 11 06:16:55 GMT 2010 mrg ldap is configured to depend upon MKCRYPTO no, so force MKLAP=no if MKCRYPTO=no. don't build pkg_install, libcrypto tests or rump_smbfs if MKCRYPTO=no. mark librumpcrypto, rump_smb, pkg_* fix set lists as appropriate. 1.42 Fri Apr 17 20:38:04 GMT 2009 dyoung Apply the same keywords to the 32-bit compat files as apply to the non-compat equivalent files, to stop amd64/sparc64 builds with MKxxx=no options from failing because files in the DESTDIR are missing from the METALOG. amd64 builds, now, with several MKxxx=no options set. sparc64 probably needs some more work. FWIW, join(1) saved me some manual labor as I copied keywords from non-compat to compat files: 1 Collect the files that are missing from the DESTDIR into compat-i386.files 2 Replicate the first column of compat-i386.files. Remove i386/ from the first column. 3 sort -k 1,1 distrib/sets/lists/comp/{md.amd64,mi,shl.*} distrib/sets/lists/base/{md.amd64,mi,module.amd64,module.mi,shl.elf,sh l.mi} | join -1 1 -2 1 -o '2.2 1.3' - compat-i386.files > compat-i386.keywords 4 Process distrib/lists/{base,comp}/md.amd64 with join -1 1 -2 1 -o '1.1 1.2 1.3,2.2' -a1 - compat-i386.keywords 1.42 Fri Apr 17 20:38:04 GMT 2009 dyoung Apply the same keywords to the 32-bit compat files as apply to the non-compat equivalent files, to stop amd64/sparc64 builds with MKxxx=no options from failing because files in the DESTDIR are missing from the METALOG. amd64 builds, now, with several MKxxx=no options set. sparc64 probably needs some more work. FWIW, join(1) saved me some manual labor as I copied keywords from non-compat to compat files: 1 Collect the files that are missing from the DESTDIR into compat-i386.files 2 Replicate the first column of compat-i386.files. Remove i386/ from the first column. 3 sort -k 1,1 distrib/sets/lists/comp/{md.amd64,mi,shl.*} distrib/sets/lists/base/{md.amd64,mi,module.amd64,module.mi,shl.elf,sh l.mi} | join -1 1 -2 1 -o '2.2 1.3' - compat-i386.files > compat-i386.keywords 4 Process distrib/lists/{base,comp}/md.amd64 with join -1 1 -2 1 -o '1.1 1.2 1.3,2.2' -a1 - compat-i386.keywords 1.60 Sun Jul 11 06:16:55 GMT 2010 mrg ldap is configured to depend upon MKCRYPTO no, so force MKLAP=no if MKCRYPTO=no. don't build pkg_install, libcrypto tests or rump_smbfs if MKCRYPTO=no. mark librumpcrypto, rump_smb, pkg_* fix set lists as appropriate. 1.42 Fri Apr 17 20:38:04 GMT 2009 dyoung Apply the same keywords to the 32-bit compat files as apply to the non-compat equivalent files, to stop amd64/sparc64 builds with MKxxx=no options from failing because files in the DESTDIR are missing from the METALOG. amd64 builds, now, with several MKxxx=no options set. sparc64 probably needs some more work. FWIW, join(1) saved me some manual labor as I copied keywords from non-compat to compat files: 1 Collect the files that are missing from the DESTDIR into compat-i386.files 2 Replicate the first column of compat-i386.files. Remove i386/ from the first column. 3 sort -k 1,1 distrib/sets/lists/comp/{md.amd64,mi,shl.*} distrib/sets/lists/base/{md.amd64,mi,module.amd64,module.mi,shl.elf,sh l.mi} | join -1 1 -2 1 -o '2.2 1.3' - compat-i386.files > compat-i386.keywords 4 Process distrib/lists/{base,comp}/md.amd64 with join -1 1 -2 1 -o '1.1 1.2 1.3,2.2' -a1 - compat-i386.keywords 1.42 Fri Apr 17 20:38:04 GMT 2009 dyoung Apply the same keywords to the 32-bit compat files as apply to the non-compat equivalent files, to stop amd64/sparc64 builds with MKxxx=no options from failing because files in the DESTDIR are missing from the METALOG. amd64 builds, now, with several MKxxx=no options set. sparc64 probably needs some more work. FWIW, join(1) saved me some manual labor as I copied keywords from non-compat to compat files: 1 Collect the files that are missing from the DESTDIR into compat-i386.files 2 Replicate the first column of compat-i386.files. Remove i386/ from the first column. 3 sort -k 1,1 distrib/sets/lists/comp/{md.amd64,mi,shl.*} distrib/sets/lists/base/{md.amd64,mi,module.amd64,module.mi,shl.elf,sh l.mi} | join -1 1 -2 1 -o '2.2 1.3' - compat-i386.files > compat-i386.keywords 4 Process distrib/lists/{base,comp}/md.amd64 with join -1 1 -2 1 -o '1.1 1.2 1.3,2.2' -a1 - compat-i386.keywords 1.60 Sun Jul 11 06:16:55 GMT 2010 mrg ldap is configured to depend upon MKCRYPTO no, so force MKLAP=no if MKCRYPTO=no. don't build pkg_install, libcrypto tests or rump_smbfs if MKCRYPTO=no. mark librumpcrypto, rump_smb, pkg_* fix set lists as appropriate. 1.42 Fri Apr 17 20:38:04 GMT 2009 dyoung Apply the same keywords to the 32-bit compat files as apply to the non-compat equivalent files, to stop amd64/sparc64 builds with MKxxx=no options from failing because files in the DESTDIR are missing from the METALOG. amd64 builds, now, with several MKxxx=no options set. sparc64 probably needs some more work. FWIW, join(1) saved me some manual labor as I copied keywords from non-compat to compat files: 1 Collect the files that are missing from the DESTDIR into compat-i386.files 2 Replicate the first column of compat-i386.files. Remove i386/ from the first column. 3 sort -k 1,1 distrib/sets/lists/comp/{md.amd64,mi,shl.*} distrib/sets/lists/base/{md.amd64,mi,module.amd64,module.mi,shl.elf,sh l.mi} | join -1 1 -2 1 -o '2.2 1.3' - compat-i386.files > compat-i386.keywords 4 Process distrib/lists/{base,comp}/md.amd64 with join -1 1 -2 1 -o '1.1 1.2 1.3,2.2' -a1 - compat-i386.keywords 1.42 Fri Apr 17 20:38:04 GMT 2009 dyoung Apply the same keywords to the 32-bit compat files as apply to the non-compat equivalent files, to stop amd64/sparc64 builds with MKxxx=no options from failing because files in the DESTDIR are missing from the METALOG. amd64 builds, now, with several MKxxx=no options set. sparc64 probably needs some more work. FWIW, join(1) saved me some manual labor as I copied keywords from non-compat to compat files: 1 Collect the files that are missing from the DESTDIR into compat-i386.files 2 Replicate the first column of compat-i386.files. Remove i386/ from the first column. 3 sort -k 1,1 distrib/sets/lists/comp/{md.amd64,mi,shl.*} distrib/sets/lists/base/{md.amd64,mi,module.amd64,module.mi,shl.elf,sh l.mi} | join -1 1 -2 1 -o '2.2 1.3' - compat-i386.files > compat-i386.keywords 4 Process distrib/lists/{base,comp}/md.amd64 with join -1 1 -2 1 -o '1.1 1.2 1.3,2.2' -a1 - compat-i386.keywords |
| /src/sys/uvm/ | ||
| H A D | uvm_bio.c | 1.95 Sat May 19 15:13:26 GMT 2018 jdolecek change code to take advantage of direct map when available, avoiding the need to map pages into kernel this improves performance of UBC-based (read(2)/write(2)) I/O especially for cached block I/O - sequential read on my NVMe goes from 1.7 GB/s to 1.9 GB/s for non-cached, and from 2.2 GB/s to 5.6 GB/s for cached read the new code is conditional now and off for now, so that it can be tested further; can be turned on by adjusting ubc_direct variable to true part of fix for PR kern/53124 1.60 Sat Jul 21 19:21:54 GMT 2007 ad Merge unobtrusive locking changes from the vmlocking branch. |
| /src/distrib/sets/lists/misc/ | ||
| H A D | mi | 1.123 Thu Aug 18 22:31:47 GMT 2005 rpaulo Added new files from Postfix 2.2.5. 1.60 Wed Jan 24 08:47:06 GMT 2001 jwise More changes for consistency with base set pkgs. 1.123 Thu Aug 18 22:31:47 GMT 2005 rpaulo Added new files from Postfix 2.2.5. 1.60 Wed Jan 24 08:47:06 GMT 2001 jwise More changes for consistency with base set pkgs. 1.123 Thu Aug 18 22:31:47 GMT 2005 rpaulo Added new files from Postfix 2.2.5. 1.60 Wed Jan 24 08:47:06 GMT 2001 jwise More changes for consistency with base set pkgs. |
| /src/distrib/sets/lists/base/ | ||
| H A D | md.amd64 | 1.60 Mon Jul 20 17:30:52 GMT 2009 christos bump libcrypto and friends; OpenSSL abi change: do_cipher last argument changed from u_int to size_t. Affects _LP64 only. 1.44 Fri Apr 17 20:38:04 GMT 2009 dyoung Apply the same keywords to the 32-bit compat files as apply to the non-compat equivalent files, to stop amd64/sparc64 builds with MKxxx=no options from failing because files in the DESTDIR are missing from the METALOG. amd64 builds, now, with several MKxxx=no options set. sparc64 probably needs some more work. FWIW, join(1) saved me some manual labor as I copied keywords from non-compat to compat files: 1 Collect the files that are missing from the DESTDIR into compat-i386.files 2 Replicate the first column of compat-i386.files. Remove i386/ from the first column. 3 sort -k 1,1 distrib/sets/lists/comp/{md.amd64,mi,shl.*} distrib/sets/lists/base/{md.amd64,mi,module.amd64,module.mi,shl.elf,sh l.mi} | join -1 1 -2 1 -o '2.2 1.3' - compat-i386.files > compat-i386.keywords 4 Process distrib/lists/{base,comp}/md.amd64 with join -1 1 -2 1 -o '1.1 1.2 1.3,2.2' -a1 - compat-i386.keywords 1.44 Fri Apr 17 20:38:04 GMT 2009 dyoung Apply the same keywords to the 32-bit compat files as apply to the non-compat equivalent files, to stop amd64/sparc64 builds with MKxxx=no options from failing because files in the DESTDIR are missing from the METALOG. amd64 builds, now, with several MKxxx=no options set. sparc64 probably needs some more work. FWIW, join(1) saved me some manual labor as I copied keywords from non-compat to compat files: 1 Collect the files that are missing from the DESTDIR into compat-i386.files 2 Replicate the first column of compat-i386.files. Remove i386/ from the first column. 3 sort -k 1,1 distrib/sets/lists/comp/{md.amd64,mi,shl.*} distrib/sets/lists/base/{md.amd64,mi,module.amd64,module.mi,shl.elf,sh l.mi} | join -1 1 -2 1 -o '2.2 1.3' - compat-i386.files > compat-i386.keywords 4 Process distrib/lists/{base,comp}/md.amd64 with join -1 1 -2 1 -o '1.1 1.2 1.3,2.2' -a1 - compat-i386.keywords |
Completed in 605 milliseconds