Searched hist:1.454 (Results 1 - 25 of 37) sorted by relevance

12

/src/sys/kern/
H A Dinit_main.c1.454 Wed Oct 02 21:38:55 GMT 2013 apb branches: 1.454.2;
Add "/rescue/init" to the end of the initpaths list, which
now contains: { "/sbin/init", "/sbin/oinit", "/sbin/init.bak",
"/rescue/init", NULL }.

XXX: The kernel's use of initpaths is not documented.
1.454 Wed Oct 02 21:38:55 GMT 2013 apb branches: 1.454.2;
Add "/rescue/init" to the end of the initpaths list, which
now contains: { "/sbin/init", "/sbin/oinit", "/sbin/init.bak",
"/rescue/init", NULL }.

XXX: The kernel's use of initpaths is not documented.
H A Dkern_exec.c1.454 Fri Jan 05 01:51:36 GMT 2018 christos don't print for ENOEXEC
H A Dvfs_subr.c1.454 Thu Jan 05 10:05:11 GMT 2017 hannken Name all "vnode_impl_t" variables "vip".
No functional change.
/src/sys/dev/ata/
H A Dwd.c1.454 Mon Jan 13 21:20:17 GMT 2020 jdolecek disable NCQ by default for "Samsung SSD 860 EVO 1TB" and
"Samsung SSD 860 EVO 500GB" - these drives have known broken NCQ support
particularly when used with AMD SB710/750 chipsets, problem occur also
under Linux and Windows

https://eu.community.samsung.com/t5/Cameras-IT-Everything-Else/860-EVO-250GB-causing-freezes-on-AMD-system/td-p/575813
https://bugzilla.kernel.org/show_bug.cgi?id=201693

It seems there is no Samsung firmware update to fix this even.

Disable NCQ regardless of the controller, it's likely same problem
exists with other controllers too.

This should fix PR kern/54790 and PR kern/54855
/src/sys/arch/i386/conf/
H A DALL1.454 Sat Sep 22 00:26:27 GMT 2018 maxv Remove the "ifritz" driver (no man page). It is part of ISDN, which we are
retiring.
/src/distrib/notes/common/
H A Dmain1.454 Sun Dec 20 16:59:39 GMT 2009 jruoho Add myself.
/src/distrib/sets/lists/debug/
H A Dmi1.454 Sun Nov 10 15:57:32 GMT 2024 riastradh tests/kernel/t_cloexec: New tests for close-on-exec.

Verified that the following tests fail on a netbsd-10 kernel:

- clonedev_posixspawn
- dup3_posixspawn
- fcntldupfd_posixspawn

PR kern/58822: close-on-exec is broken for dup3 and opening cloning
devices
/src/etc/
H A DMakefile1.454 Mon Dec 20 20:20:35 GMT 2021 christos Revert previous, not needed MKKDEBUG does it.
/src/share/man/man9/
H A DMakefile1.454 Thu Jan 21 15:53:16 GMT 2021 thorpej Add a manual page for strlist(9).
/src/share/mk/
H A Dbsd.README1.454 Tue Jan 28 20:34:55 GMT 2025 christos no more libbind9
/src/share/man/man4/
H A Doptions.41.454 Sat Nov 26 13:54:34 GMT 2016 christos Mention fileassoc dependencies
H A DMakefile1.454 Sun Dec 23 17:39:20 GMT 2007 jmcneill Move sony.4 from i386 to MD man page directory
/src/sys/dev/usb/
H A Dusbdevs1.454 Mon Feb 05 14:05:48 GMT 2007 gdt add second Novatel id, for CDMA chip as found in Verizon V620.
From John Nielsen on freebsd-mobile.
H A Dusbdevs.h1.454 Wed Jan 31 10:06:16 GMT 2007 skrll Regen for mjf. Linux didn't work for him.
H A Dusbdevs_data.h1.454 Mon Jan 22 19:40:21 GMT 2007 ghen Regen.
/src/usr.bin/xlint/lint1/
H A Dcgram.y1.454 Tue Jul 11 21:13:36 GMT 2023 rillig lint: rename grammar rules to align with C23
H A Dtree.c1.454 Sun Jun 19 00:14:33 GMT 2022 rillig lint: add quotes around placeholders in 4 messages
/src/sys/net/
H A Dif.c1.454 Fri May 17 07:37:12 GMT 2019 msaitoh The max subtype of the ifmedia word is 31. It's too small for Ethernet now.
We currently use use it up to 30. We should extend the limit to be able to use
more than 10Gbps speeds. Our ifmedia(4) is inconvenience and have some problem
so we should redesign the interface, but it's too late for netbsd-9 to do it.
So, we keep the data structure size and modify the structure a bit. The
strategy is almost the same as FreeBSD. Many bits of IFM_OMASK for Ethernet
have not used, so use some of them for Ethernet's subtype.

The differences against FreeBSD are:
- We use NetBSD style compat code (i.e. no SIOCGIFXMEDIA).
- FreeBSD's IFM_ETH_XTYPE's bit location is from 11 to "14" even though
IFM_OMASK is from 8 to "15". We use _IFM_ETH_XTMASK from bit 13 to "15".
- FreeBSD changed the meaning of IFM_TYPE_MATCH(). I think we should
not do it. We keep it not changing and added new IFM_TYPE_SUBTYPE_MATCH()
macro for matching both TYPE and SUBTYPE.
- Added up to 400GBASE-SR16.

New layout of the media word is as follows (from ifmedia_h):

* if_media Options word:
* Bits Use
* ---- -------
* 0-4 Media subtype MAX SUBTYPE == 255 for ETH and 31 for others
* 5-7 Media type
* 8-15 Type specific options
* 16-18 Mode (for multi-mode devices)
* 19 (Reserved for Future Use)
* 20-27 Shared (global) options
* 28-31 Instance
*
* 3 2 1
* 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
* +-------+---------------+-+-----+---------------+-----+---------+
* | | |R| | | | |
* | IMASK | GMASK |F|MMASK+-----+ OMASK |NMASK| TMASK |
* | | |U| |XTMSK| | | |
* +-------+---------------+-+-----+-----+---------+-----+---------+
* <-----> <---> <--->
* IFM_INST() IFM_MODE() IFM_TYPE()
*
* IFM_SUBTYPE(other than ETH)<------->
*
* <---> IFM_SUBTYPE(ETH)<------->
*
*
* <-------------> <------------->
* IFM_OPTIONS()
/src/sys/arch/amd64/conf/
H A DGENERIC1.454 Sun Feb 26 00:41:50 GMT 2017 rin Comment out DISKLABEL_RDB as it is too specific for general usage.
(Also add commented out that entry for GENERIC on amd64; I forgot it)
/src/sys/dev/pci/
H A Dpcidevs.h1.454 Sun Jul 07 19:49:09 GMT 2002 augustss Regen.
H A Dpcidevs_data.h1.454 Tue Jul 09 23:50:31 GMT 2002 matt Regen.
/src/usr.bin/make/
H A Djob.c1.454 Sat Sep 03 08:03:27 GMT 2022 rillig make: fix handling of null bytes in the output in jobs mode

The test job-output-null failed occasionally, depending on the exact
timing of the child's write and make's read.

/src/sys/arch/i386/i386/
H A Dmachdep.c1.454 Sun Sep 09 02:10:44 GMT 2001 enami Don't print extra space when printing information about cpu of unknown vendor.
# and minor stylistic change while i'm here.
/src/distrib/sets/lists/base/
H A Dshl.mi1.454 Mon Dec 22 20:18:36 GMT 2008 agc First pass at set list changes for lvm functionality.
/src/doc/
H A D3RDPARTY1.454 Tue Jul 25 06:12:43 GMT 2006 wiz postfix-2.3.1 out.

Completed in 1120 milliseconds

12