Searched +hist:1.56 +hist:2.5 (Results 1 - 25 of 62) sorted by relevance

123

/src/sbin/fdisk/
H A Dfdisk.81.86 Sun Sep 11 03:35:08 GMT 2016 sevan branches: 1.86.2;
- Document the HISTORY of fdisk based on the original post to comp.unix.bsd by
Julian Elischer [1] and the Mach 2.5 Installation notes [2].
I was unable to pin point the exact version of Mach the fdisk utility appeared
as I didn't find documentation older than version 2.5 & no source code or repo
history. fdisk utility appears as a separate utility[3] in v2.5. Due to this,
I've avoided stating the exact version fdisk first appeared in Mach.
- Make correction pointed by textproc/igor
- Bump date

[1] https://groups.google.com/forum/#!searchin/comp.unix.bsd/14-Dec-89$20Robert$20Baron$20(rvb)$20at$20Carnegie-Mellon$20University%7Csort:relevance/comp.unix.bsd/Hhi45vAHxDg

[2] ftp://ftp.mcs.vuw.ac.nz/doc/misc/mach-i386-doc/i386_install.ps
[3] ftp://ftp.mcs.vuw.ac.nz/doc/misc/mach-i386-doc/i386_manpages.ps
1.86 Sun Sep 11 03:35:08 GMT 2016 sevan branches: 1.86.2;
- Document the HISTORY of fdisk based on the original post to comp.unix.bsd by
Julian Elischer [1] and the Mach 2.5 Installation notes [2].
I was unable to pin point the exact version of Mach the fdisk utility appeared
as I didn't find documentation older than version 2.5 & no source code or repo
history. fdisk utility appears as a separate utility[3] in v2.5. Due to this,
I've avoided stating the exact version fdisk first appeared in Mach.
- Make correction pointed by textproc/igor
- Bump date

[1] https://groups.google.com/forum/#!searchin/comp.unix.bsd/14-Dec-89$20Robert$20Baron$20(rvb)$20at$20Carnegie-Mellon$20University%7Csort:relevance/comp.unix.bsd/Hhi45vAHxDg

[2] ftp://ftp.mcs.vuw.ac.nz/doc/misc/mach-i386-doc/i386_install.ps
[3] ftp://ftp.mcs.vuw.ac.nz/doc/misc/mach-i386-doc/i386_manpages.ps
1.56 Sun May 20 22:27:46 GMT 2007 wiz branches: 1.56.4; 1.56.6;
Plural fix.
1.56 Sun May 20 22:27:46 GMT 2007 wiz branches: 1.56.4; 1.56.6;
Plural fix.
1.56 Sun May 20 22:27:46 GMT 2007 wiz branches: 1.56.4; 1.56.6;
Plural fix.
/src/usr.sbin/ypbind/
H A Dypbind.c1.56 Thu Oct 05 09:18:11 GMT 2006 tron Ensure alignment of the structure used for RPC requests. This stop
"ypbind" from segfaulting under NetBSD-sparc64 when "ypwhich" is
used to display the current NIS server.
1.29 Wed Oct 02 05:55:06 GMT 1996 thorpej Change name of ypservers file to /var/yp/binding/domain.ypservers.
This is a compromise between the Solaris 2.5 naming of this file
(/var/yp/binding/domain/ypservers and /var/yp/binding/domain/vers)
and traditional NetBSD naming (/var/yp/binding/domain.vers).
Changing to the Solaris naming makes the C library incompatible
with ypbind. While it's easy to change the C library, I don't feel
right about introducing a gratuitous incompatibility.

The current name (/var/yp/domain/ypservers) conflicts with the name
of the YP map listing slave servers for a domain.

Per discussion w/ Chris Demetriou and Luke Mewburn.
1.28 Tue Oct 01 01:38:00 GMT 1996 thorpej .ypservers -> ypservers, to match Solaris 2.5
/src/sys/dev/isa/
H A Disavar.h1.56 Mon Oct 20 09:49:19 GMT 2025 martin Add the includes required for config_found(). Should unbreak the build.
1.23 Wed May 08 23:32:31 GMT 1996 thorpej Correct a couple of comments ... port 0x84 produces a 1.25us delay when
read, not 2.5us. (I must have been confused; thanks Charles, for
correcting me.)
1.56 Mon Oct 20 09:49:19 GMT 2025 martin Add the includes required for config_found(). Should unbreak the build.
1.23 Wed May 08 23:32:31 GMT 1996 thorpej Correct a couple of comments ... port 0x84 produces a 1.25us delay when
read, not 2.5us. (I must have been confused; thanks Charles, for
correcting me.)
1.56 Mon Oct 20 09:49:19 GMT 2025 martin Add the includes required for config_found(). Should unbreak the build.
1.23 Wed May 08 23:32:31 GMT 1996 thorpej Correct a couple of comments ... port 0x84 produces a 1.25us delay when
read, not 2.5us. (I must have been confused; thanks Charles, for
correcting me.)
H A Disa.c1.83 Wed May 08 23:32:39 GMT 1996 thorpej Correct a couple of comments ... port 0x84 produces a 1.25us delay when
read, not 2.5us. (I must have been confused; thanks Charles, for
correcting me.)
1.56 Fri Oct 07 09:08:29 GMT 1994 mycroft Fix initial allocation of dev array, and simplify the code
slightly.
/src/include/
H A Dtime.h1.56 Mon Apr 21 13:21:33 GMT 2025 nia libc: C23: add timespec_getres(3) function

timespec_getres is to timespec_get as clock_getres is to clock_gettime.

PR standards/58608
PR lib/59140
1.47 Tue Oct 04 09:41:41 GMT 2016 kamil Add timespec_get(3) in <time.h> and enable unconditionally struct timespec

These changes conforms to the C11 standard
References:
- 7.27.1/3 Components of time (struct timespec)
- 7.27.2.5 The timespec_get function

According to ISO/IEC 9899:201x (draft) <time.h> defines the timespec
structure and declares the timespec_get(3) function with TIME_UTC
definition.

According to a C++17 standard draft <ctime> offers the same interface in
the std:: namespace.

The timespec_get function modifies the timespec object pointed by ts
to hold the current calendar time in the given base. The standard notes
only the TIME_UTC base with implementation defined value, set it to 1
as zero is reserved for error handling. Once operation was successful this
function returns passed base, otherwise exits with zero.

The timespec struct was already part of the POSIX standard in <time.h>.

Enable this interface unconditionally in the header to allow to use it
in a code prior C11 and C++17 as an extension.

Review notes from <christos>
/src/sys/arch/arc/conf/
H A DRAMDISK1.56 Fri Feb 18 21:05:51 GMT 2005 dsl branches: 1.56.4;
Invert FFS_SNAPSHOT to FFS_NO_SNAPSHOT
1.56 Fri Feb 18 21:05:51 GMT 2005 dsl branches: 1.56.4;
Invert FFS_SNAPSHOT to FFS_NO_SNAPSHOT
1.32 Mon Feb 10 11:18:56 GMT 2003 tsutsui Bump md_root size to 2.5Mbytes.
/src/distrib/sets/lists/xbase/
H A Dshl.mi1.60 Thu Mar 12 07:58:05 GMT 2015 snj update for freetype 2.5.5
1.56 Wed Oct 01 09:30:58 GMT 2014 skrll Fix SHLIB_MAJOR to match xorg and fix linking against libxcb-sync which
broke kwin for me.
1.55 Thu Mar 20 09:05:28 GMT 2014 mrg branches: 1.55.4;
merge freetype 2.5.3.
H A Dmi1.121 Thu Mar 20 09:05:28 GMT 2014 mrg branches: 1.121.2;
merge freetype 2.5.3.
1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10;
Add a note about marking entries as "obsolete", instead of deleting them.
1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10;
Add a note about marking entries as "obsolete", instead of deleting them.
1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10;
Add a note about marking entries as "obsolete", instead of deleting them.
1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10;
Add a note about marking entries as "obsolete", instead of deleting them.
1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10;
Add a note about marking entries as "obsolete", instead of deleting them.
1.121 Thu Mar 20 09:05:28 GMT 2014 mrg branches: 1.121.2;
merge freetype 2.5.3.
1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10;
Add a note about marking entries as "obsolete", instead of deleting them.
1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10;
Add a note about marking entries as "obsolete", instead of deleting them.
1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10;
Add a note about marking entries as "obsolete", instead of deleting them.
1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10;
Add a note about marking entries as "obsolete", instead of deleting them.
1.56 Thu Jan 03 20:48:03 GMT 2008 jdc branches: 1.56.2; 1.56.6; 1.56.8; 1.56.10;
Add a note about marking entries as "obsolete", instead of deleting them.
/src/sys/arch/sparc64/include/
H A Dparam.h1.56 Tue Oct 27 22:28:56 GMT 2015 mrg make sure MSGBUFSIZE can't expand strangely by using parens.
1.49 Fri Mar 09 10:42:12 GMT 2012 jdc Restrict NKMEMPAGES to 2.5GB, otherwise we will run out of space in the
kernel_map on machines with 8GB (or more) main memory.

XXX: Moving KERNBASE/KERNEND is a better long term solution, but this allows
those machines to boot now.
/src/sys/arch/i386/include/
H A Dpcb.h1.60 Thu Apr 24 01:50:39 GMT 2025 riastradh amd64: Allocate FPU save state outside pcb if it's too large.

We have seen x86_fpu_save_size values (CPUID[EAX=0x0d, ECX=0].ECX) as
large as 11008 bytes, notably with Intel AMX TILEDATA's 8192-byte
state.

We only do this for user threads, and only on machines where it's
necessary, to avoid incurring much overhead. There is still a tiny
bit of overhead when saving and restoring the FPU state by using a
pointer indirection instead of arithmetic indirection for access to
struct pcb::pcb_savefpu, but this is probably a drop in the bucket
compared to the memory traffic incurred by the FPU state save/restore
anyway.

For now, these paths are mostly disabled on i386. We could enable
them but it will require either rewriting cpu_uarea_alloc/free for
i386, or adopting a guard page like amd64 does, which might be costly
and so should be undertaken only with some thought and care. And
since Intel AMX instructions only work in 64-bit mode, it's not
likely to be useful on i386.

PR port-amd64/57661: Crash when booting on Xeon Silver 4416+ in
KVM/Qemu

These changes, as a side effect, may fix:

PR kern/57258: kthread_fpu_enter/exit problem

by making sure to allocate an FPU save space that is large enough to
guarantee fpu_kern_enter/leave work safely, instead of just using a
union savefpu object on the stack (which, at 576 bytes, may be too
small on some machines, particularly with AVX512 requiring ~2.5K).
(But we'll have to do some extra work with kthread_fpu_enter/exit_md
-- if we try doing them again on x86 -- to actually allocate the
separate pcb on these machines!)
1.56 Sat Aug 12 00:48:47 GMT 2017 maxv Remove the vm86 fields from the pcb.
H A Dvmparam.h1.78 Tue Jan 28 02:51:34 GMT 2014 christos Cut down MAXDSIZE from 3G to 2.5G otherwise bottomup allocation ends up
supplying an out of bounds hint for sigcode (c001e000 > bf000000). Makes
a.out binaries work again.
1.56 Thu Oct 23 08:30:21 GMT 2003 chs rename pv_next to pv_node. use SPLAY_RIGHT() instead of expanding it inline.
/src/distrib/sets/lists/xdebug/
H A Dshl.mi1.56 Sun Oct 25 16:59:27 GMT 2020 nia Unhook libglut (MesaGLUT) from the build.

The GL Utility Library was formerly a core part of most OpenGL
distributions.

Originally, this version of libglut was developed as part of Mesa (the
primary OpenGL implementation used in NetBSD) before it was mostly abandoned
and work moved to the freeglut fork. It provides a platform-neutral way of
creating OpenGL contexts, something that many other libraries can also do
today (e.g. SDL, glfw).

All users in pkgsrc have been switched to the freeglut fork and there are no
remaining users of this library in src. If having a GLUT implementation in
base turns out to be particularly useful outside of compatibility with
previous NetBSD versions, we can import freeglut (which, AFAIK, is also
ABI compatible with MesaGLUT).
1.21 Thu Mar 12 07:58:05 GMT 2015 snj update for freetype 2.5.5
/src/sys/arch/mac68k/dev/
H A Dncr5380.c1.56 Tue Dec 07 21:12:42 GMT 2004 thorpej - Use the cmdlen specified in the scsipi_xfer structure. Keying off
the command group ID won't necessarily work for vendor-specific commands.
- Expand the storage in the SC_REQ structure to account for 16-byte commands.
1.30 Fri Jun 07 02:44:15 GMT 1996 briggs Wait longer (2.5 sec) in wait_req_true/false. Some targets take a long time.
/src/sys/compat/linux/arch/m68k/
H A Dsyscalls.master1.56 Thu Dec 20 23:02:53 GMT 2007 dsl Convert all the system call entry points from:
int foo(struct lwp *l, void *v, register_t *retval)
to:
int foo(struct lwp *l, const struct foo_args *uap, register_t *retval)
Fixup compat code to not write into 'uap' and (in some cases) to actually
pass a correctly formatted 'uap' structure with the right name to the
next routine.
A few 'compat' routines that just call standard ones have been deleted.
All the 'compat' code compiles (along with the kernels required to test
build it).
98% done by automated scripts.
1.39 Sun May 12 13:55:54 GMT 2002 jdolecek branches: 1.39.4;
update for newer syscalls (from 2.5.15)
Linux m68k doesn't seem to have fcntl64 syscall - oversight?
/src/sys/net/
H A Dif_media.h1.61 Wed Oct 04 07:08:01 GMT 2017 msaitoh branches: 1.61.4;
Add 2.5GBASE-T and 5GBASE-T.
1.56 Thu Oct 25 10:59:43 GMT 2012 msaitoh branches: 1.56.14; 1.56.18;
Add 1000baseT-FDX.
1.56 Thu Oct 25 10:59:43 GMT 2012 msaitoh branches: 1.56.14; 1.56.18;
Add 1000baseT-FDX.
1.56 Thu Oct 25 10:59:43 GMT 2012 msaitoh branches: 1.56.14; 1.56.18;
Add 1000baseT-FDX.
/src/sys/dev/pci/
H A Dpci_subr.c1.186 Thu Jun 08 03:39:18 GMT 2017 msaitoh For the Target Link Speed in LCSR2, 0 is allowed for a device which supports
2.5GT/s only (and this check also works for devices which compliant to
versions of the base specification prior to 3.0.

Tested with BCM5709:
- Target Link Speed: unknown value (0)
+ Target Link Speed: 2.5GT/s
1.186 Thu Jun 08 03:39:18 GMT 2017 msaitoh For the Target Link Speed in LCSR2, 0 is allowed for a device which supports
2.5GT/s only (and this check also works for devices which compliant to
versions of the base specification prior to 3.0.

Tested with BCM5709:
- Target Link Speed: unknown value (0)
+ Target Link Speed: 2.5GT/s
1.157 Wed Feb 15 06:53:55 GMT 2017 msaitoh - Print Data Select and Data Scale in pci_conf_print_pcipm_cap().
- The Message Data register of MSI cap is not 32bit but 16bit.
- When the PCIE_LCAP_MAX_SPEED bitfiled is 0, it means it supports 2.5GT/s only.
- Print link de-emphasis value by "-X dB".
- Print Completion Timeout Ranges Supported filed with alphabets.
- Print TPH Completer Supported fileld's meaning.
- Print PCIE_DCAP2_MAX_EETLP correctly. 0 means 4 End-End TLP Prefixes.
- If the Supported Link Speed Vector is 0, the Link Capability 2 register is not
implemented. Don't decode LCAP2 when the vector is 0.
- The ACS's Egress Control Vector is 32bit, so print with 0x%08x.
- Print SR-IOV's device ID.
- Use __SHIFTOUT() to avoid using magic number.
- Prefix "0x" for hexadecimal value.
1.56 Sun Jun 29 22:30:26 GMT 2003 fvdl branches: 1.56.2;
Back out the lwp/ktrace changes. They contained a lot of colateral damage,
and need to be examined and discussed more.
1.56 Sun Jun 29 22:30:26 GMT 2003 fvdl branches: 1.56.2;
Back out the lwp/ktrace changes. They contained a lot of colateral damage,
and need to be examined and discussed more.
1.186 Thu Jun 08 03:39:18 GMT 2017 msaitoh For the Target Link Speed in LCSR2, 0 is allowed for a device which supports
2.5GT/s only (and this check also works for devices which compliant to
versions of the base specification prior to 3.0.

Tested with BCM5709:
- Target Link Speed: unknown value (0)
+ Target Link Speed: 2.5GT/s
1.186 Thu Jun 08 03:39:18 GMT 2017 msaitoh For the Target Link Speed in LCSR2, 0 is allowed for a device which supports
2.5GT/s only (and this check also works for devices which compliant to
versions of the base specification prior to 3.0.

Tested with BCM5709:
- Target Link Speed: unknown value (0)
+ Target Link Speed: 2.5GT/s
1.157 Wed Feb 15 06:53:55 GMT 2017 msaitoh - Print Data Select and Data Scale in pci_conf_print_pcipm_cap().
- The Message Data register of MSI cap is not 32bit but 16bit.
- When the PCIE_LCAP_MAX_SPEED bitfiled is 0, it means it supports 2.5GT/s only.
- Print link de-emphasis value by "-X dB".
- Print Completion Timeout Ranges Supported filed with alphabets.
- Print TPH Completer Supported fileld's meaning.
- Print PCIE_DCAP2_MAX_EETLP correctly. 0 means 4 End-End TLP Prefixes.
- If the Supported Link Speed Vector is 0, the Link Capability 2 register is not
implemented. Don't decode LCAP2 when the vector is 0.
- The ACS's Egress Control Vector is 32bit, so print with 0x%08x.
- Print SR-IOV's device ID.
- Use __SHIFTOUT() to avoid using magic number.
- Prefix "0x" for hexadecimal value.
1.56 Sun Jun 29 22:30:26 GMT 2003 fvdl branches: 1.56.2;
Back out the lwp/ktrace changes. They contained a lot of colateral damage,
and need to be examined and discussed more.
1.56 Sun Jun 29 22:30:26 GMT 2003 fvdl branches: 1.56.2;
Back out the lwp/ktrace changes. They contained a lot of colateral damage,
and need to be examined and discussed more.
H A Dpcireg.h1.120 Wed Feb 15 06:53:55 GMT 2017 msaitoh - Print Data Select and Data Scale in pci_conf_print_pcipm_cap().
- The Message Data register of MSI cap is not 32bit but 16bit.
- When the PCIE_LCAP_MAX_SPEED bitfiled is 0, it means it supports 2.5GT/s only.
- Print link de-emphasis value by "-X dB".
- Print Completion Timeout Ranges Supported filed with alphabets.
- Print TPH Completer Supported fileld's meaning.
- Print PCIE_DCAP2_MAX_EETLP correctly. 0 means 4 End-End TLP Prefixes.
- If the Supported Link Speed Vector is 0, the Link Capability 2 register is not
implemented. Don't decode LCAP2 when the vector is 0.
- The ACS's Egress Control Vector is 32bit, so print with 0x%08x.
- Print SR-IOV's device ID.
- Use __SHIFTOUT() to avoid using magic number.
- Prefix "0x" for hexadecimal value.
1.56 Wed Nov 28 04:03:16 GMT 2007 briggs branches: 1.56.2; 1.56.6;
Correct a typo. To create the command/status word, shift the components
left, not right.
1.56 Wed Nov 28 04:03:16 GMT 2007 briggs branches: 1.56.2; 1.56.6;
Correct a typo. To create the command/status word, shift the components
left, not right.
1.56 Wed Nov 28 04:03:16 GMT 2007 briggs branches: 1.56.2; 1.56.6;
Correct a typo. To create the command/status word, shift the components
left, not right.
/src/sys/dev/mii/
H A Dmiidevs1.169 Fri Sep 29 03:38:36 GMT 2023 msaitoh Add MaxLinear GPY21[125] 2.5G PHY.
1.56 Mon Jan 17 13:16:19 GMT 2005 scw branches: 1.56.2;
Add entry for Broadcom BCM5222 Dual 10/100 media interface.
1.56 Mon Jan 17 13:16:19 GMT 2005 scw branches: 1.56.2;
Add entry for Broadcom BCM5222 Dual 10/100 media interface.
/src/sys/ddb/
H A Ddb_xxx.c1.78 Fri Oct 13 19:07:08 GMT 2023 ad Simplify/streamline pipes a little bit:

- Allocate only one struct pipe not two (no need to be bidirectional here).
- Then use f_flag (FREAD/FWRITE) to figure out what to do in the fileops.
- Never wake the other side or acquire long-term (I/O) lock unless needed.
- Whenever possible, defer wakeups until after locks have been released.
- Do some things locklessly in pipe_ioctl() and pipe_poll().

Some notable results:

- -30% latency on a 486DX2/66 doing 1 byte ping-pong within a single process.
- 2.5x less lock contention during "make cleandir" of src on a 48 CPU machine.
- 1.5x bandwith with 1kB messages on the same 48 CPU machine (8kB: same b/w).
1.56 Wed Feb 18 13:31:59 GMT 2009 yamt - fix vmem unittest. rename VMEM_DEBUG so that it won't be abused again.
- reimplement vmem sanity checks with less code duplication.
- reimplement ddb vmem-related commands in a more consistent ways.
remove automatic whatis.
1.78 Fri Oct 13 19:07:08 GMT 2023 ad Simplify/streamline pipes a little bit:

- Allocate only one struct pipe not two (no need to be bidirectional here).
- Then use f_flag (FREAD/FWRITE) to figure out what to do in the fileops.
- Never wake the other side or acquire long-term (I/O) lock unless needed.
- Whenever possible, defer wakeups until after locks have been released.
- Do some things locklessly in pipe_ioctl() and pipe_poll().

Some notable results:

- -30% latency on a 486DX2/66 doing 1 byte ping-pong within a single process.
- 2.5x less lock contention during "make cleandir" of src on a 48 CPU machine.
- 1.5x bandwith with 1kB messages on the same 48 CPU machine (8kB: same b/w).
1.56 Wed Feb 18 13:31:59 GMT 2009 yamt - fix vmem unittest. rename VMEM_DEBUG so that it won't be abused again.
- reimplement vmem sanity checks with less code duplication.
- reimplement ddb vmem-related commands in a more consistent ways.
remove automatic whatis.
/src/sys/arch/powerpc/ibm4xx/
H A Dpmap.c1.60.2.5 Sat Aug 14 02:09:57 GMT 2010 uebayasi Teach TLB miss handler (pmap_tlbmiss()) to map "Expansion ROM" area as
PA == VA. Now we don't need to reserve a TLB entry for it.
1.56 Tue Aug 11 17:04:19 GMT 2009 matt Remove all declarations of physmem from sys/arch. Add an include of
<sys/systm.h> to the one file that did not already contain it.
This now means that physmem can be changed by updating systm.h and uvm_page.c
(excluding fixing printfs)
/src/distrib/notes/common/
H A Dsysinst1.56 Sun Jul 21 20:29:48 GMT 2002 rafal More minor updates to release notes -- a large part of these changes were
sgimips specific, but there are also MI tweaks.
1.7 Thu Aug 24 03:52:27 GMT 2000 jhawk Pulldwon changes commited to netbsd-1-4 back to the trunk.
Most of revs 1.2.2.4 and 1.2.2.5.
Fix a few wording issues, and update the PCMCIA
section to note the existing of pcic irq probing.
/src/sys/arch/macppc/conf/
H A DINSTALL1.56 Sun Mar 10 19:56:43 GMT 2002 lukem * rename MINIROOTSIZE to MEMORY_DISK_SIZE, so that all md(4) options
are now consistently named
* fold opt_mdsize.h into opt_md.h
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.56 Sun Mar 10 19:56:43 GMT 2002 lukem * rename MINIROOTSIZE to MEMORY_DISK_SIZE, so that all md(4) options
are now consistently named
* fold opt_mdsize.h into opt_md.h
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/gzip/
H A Dgzip.c1.56 Sun Jul 11 09:40:51 GMT 2004 mrg check the suffix of the input file ala GNU gzip, and error about it
unless -f is given. fixes PR#26240
1.11 Thu Jan 01 02:58:36 GMT 2004 mrg add some simple -DSMALL support. reduces the size of gzip(1) itself a by
nearly 2.5KB text.
/src/sys/sys/
H A Dsched.h1.89 Tue May 12 11:21:09 GMT 2020 kamil Remove the stub support of CLONE_PID in clone(2)

CLONE_PID causes the child clonee to share the same process id as cloner.

It was implemented for debugging purposes in the Linux kernel 2.0,
restricted to root only in 2.3.21 and removed from Linux 2.5.16.

The CLONE_PID bit was recycled for CLONE_PIDFD in Linux 5.2.
1.56 Mon May 19 00:48:54 GMT 2008 rmind - Make periodical balancing mandatory.
- Fix priority raising in M2 (broken after making runqueues mandatory).
/src/sys/dev/pci/ixgbe/
H A Dixgbe_type.h1.56 Mon May 15 08:01:22 GMT 2023 msaitoh Count the number of link down events in the MAC using with LINK_DN_CNT.

- Add new event counter "link_dn_cnt" to count the number of link down
events in the MAC.
- The LINK_DN_CNT register (at 0x0403c) is described only in the
Denverton's datasheet, so use it only on ixgbe_mac_X550EM_a.
1.29 Wed Oct 04 08:47:26 GMT 2017 msaitoh Add 2.5GBASE-T and 5GBASE-T support. (forgotten in the last commit)

Completed in 262 milliseconds

123