Searched hist:1.420 (Results 1 - 25 of 46) sorted by relevance

12

/src/sys/dev/usb/
H A Dusbdevs1.420 Wed Dec 07 10:17:53 GMT 2005 augustss branches: 1.420.2;
Another vendor and product.
1.420 Wed Dec 07 10:17:53 GMT 2005 augustss branches: 1.420.2;
Another vendor and product.
H A Dusbdevs.h1.420 Sat Oct 29 17:18:40 GMT 2005 rpaulo branches: 1.420.2;
regen
1.420 Sat Oct 29 17:18:40 GMT 2005 rpaulo branches: 1.420.2;
regen
H A Dusbdevs_data.h1.420 Fri Sep 16 23:54:25 GMT 2005 jmcneill branches: 1.420.2;
Additional usbdevs entry for Ralink; found on my Zonet ZEW2500P
1.420 Fri Sep 16 23:54:25 GMT 2005 jmcneill branches: 1.420.2;
Additional usbdevs entry for Ralink; found on my Zonet ZEW2500P
/src/sys/arch/alpha/conf/
H A DGENERIC1.420 Sat Mar 02 20:15:33 GMT 2024 thorpej Add the basic framework for the DEC KN7AA ("Ruby") systems -- DEC 7000
and DEC 10000.

This is a work-in-progress, but this should be sufficient for the system
to boot, using the PROM console routines (and then proceed to not find any
devices because we don't yet support the "Laser System Bus").

/src/sys/uvm/
H A Duvm_map.c1.420 Wed Aug 14 00:42:02 GMT 2024 riastradh uvm_map(9): Show the entry in findspace invariants.

No functional change intended in the non-crash3 case.

PR kern/51254: uvm assertion "!topdown || hint <= orig_hint" failed

/src/sys/arch/sparc64/sparc64/
H A Dlocore.s1.420 Sun Apr 07 19:31:38 GMT 2019 mrg make trap 0x70 a TRAP() not UTRAP(). we should be able to handle
fast ECC error as a normal trap, and i saw this once a few years
ago but it never repeated so i haven't been able to test this.
/src/sys/dev/ata/
H A Dwd.c1.420 Sun Apr 26 15:15:20 GMT 2015 mlelstv Use C99-style initializers for struct dkdriver.

/src/sys/arch/i386/conf/
H A DALL1.420 Wed Jun 14 09:00:08 GMT 2017 pgoyette Add wsbell

/src/sys/arch/arm/arm32/
H A Dpmap.c1.420 Tue Aug 11 07:03:33 GMT 2020 skrll s/pmaphist/maphist/

/src/distrib/notes/common/
H A Dmain1.420 Sat Sep 13 15:54:57 GMT 2008 tsutsui Reformat port-maintainers list and use @NetBSD.org address as other lists.
XXX: list-portmasters.pl needs to be updated.
/src/distrib/sets/lists/debug/
H A Dmi1.420 Tue Oct 17 13:45:37 GMT 2023 rjs The inpcb tests are only built when rump is enabled.
/src/etc/
H A DMakefile1.420 Wed Aug 06 11:41:18 GMT 2014 apb To make pax use ${TOOL_GZIP}, we need to pass "--use-compress-program
${TOOL_GZIP}" on the command line, and refrain from passing "-z". If
passed "-z", pax will use plain "gzip", ignoring --use-compress-program.
/src/share/man/man9/
H A DMakefile1.420 Sat May 12 14:49:34 GMT 2018 jdolecek remove ubc_alloc(9) and ubc_release(9) from ubc(9) from the documentation, they
are internal (static) functions

pointed out by Matthew Green in private email

/src/share/mk/
H A Dbsd.README1.420 Mon Oct 25 07:54:44 GMT 2021 ryo In some arch, _mcount() would be called recursively when built with COPTS=-O0.

Normally, functions called from mcount.c are expected to be expanded inline,
so _mcount() will never be called recursively. But when build with COPTS=-O0,
`static inline' functions aren't inlined, and _mcount() will be called
recursively.

Even if _mcount() has `__attribute__((__no_ instrument_function__))',
it has no effect on the calling external (no-inlined) function.

To avoid this, PROF.<fn> is added can be set the profiling flag of any file.
"PROF.mcount.c" is set to blank by default, mcount.c itself is compiled
without -pg.

H A Dbsd.lib.mk1.420 Tue Sep 16 02:18:06 GMT 2025 mrg fix sanitizer flags for private libraries in executables.

update the comment to explain why we don't do -g for normal archives,
but why we do them for private archives (they are linked into the
executables, and the debug info is in the debug file for that.)

while i still don't know why dhcpd is crashing on arm64eb for me,
at least now ASAN reports don't have missing info for the various
private libraries.

/src/share/man/man4/
H A Doptions.41.420 Wed May 15 05:30:33 GMT 2013 msaitoh s/can be displayed be calling/can be displayed by calling/

XXX pullup-5
/src/sys/dev/pci/
H A Dfiles.pci1.420 Thu Jan 16 07:11:50 GMT 2020 yamaguchi Use def{flag,param} for parameters in ixl(4)

/src/usr.bin/xlint/lint1/
H A Dcgram.y1.420 Mon Jun 20 21:13:35 GMT 2022 rillig lint: add quotes around several placeholders in messages
H A Ddecl.c1.420 Wed May 14 21:35:24 GMT 2025 rillig lint: extract type_attributes functions from grammar

/src/sys/kern/
H A Dinit_main.c1.420 Thu Jun 10 20:54:53 GMT 2010 pooka lwp0 seems like an lwp instead of a process, so move bits related
to it from kern_proc.c to kern_lwp.c. This makes kern_proc
"scheduling-clean" and more easily usable in environments with a
non-integrated scheduler (like, to take a random example, rump).
H A Dkern_exec.c1.420 Tue Oct 13 00:29:34 GMT 2015 pgoyette In spawn_return() we temporarily move the process state to SSTOP, but
without updating its p_waited value or its parent's p_nstopchild
counter. Later, we restore the original state, again without any
adjustment of the related values. This leaves a relatively short
window when the values are inconsistent and could interfere with the
proper operation of sys_wait() for the parent (if it manages to be
scheduled; it's not totally clear what, if anything, prevents
scheduling/execution of the parent).

If during this window, any of the checks being made result in an
error, we call exit1() which will eventually migrate the process's
state to SDEAD (with an intermediate transition to SDYING). At
this point the other variables get updated, and we finally restore
a consistent state.

This change updates the p_waited and parent's p_nstopchild at each
step to eliminate any windows during which the values could lead to
incorrect decisions.

Fixes PR kern/50330

Pullups will be requested for NetBSD-7, -6, -6-0, and -6-1
H A Dvfs_subr.c1.420 Sun Mar 06 17:08:36 GMT 2011 bouyer merge the bouyer-quota2 branch. This adds a new on-disk format
to store disk quota usage and limits, integrated with ffs
metadata. Usage is checked by fsck_ffs (no more quotacheck)
and is covered by the WAPBL journal. Enabled with kernel
option QUOTA2 (added where QUOTA was enabled in kernel config files),
turned on with tunefs(8) on a per-filesystem
basis. mount_mfs(8) can also turn quotas on.

See http://mail-index.netbsd.org/tech-kern/2011/02/19/msg010025.html
for details.
/src/sys/net/
H A Dif.c1.420 Thu Apr 12 18:44:59 GMT 2018 christos disentangle a bit more the compat ioctl code.
/src/sys/arch/x86/x86/
H A Dpmap.c1.420 Sat Aug 20 23:49:31 GMT 2022 riastradh x86: Move definition of struct pmap to pmap_private.h.

This makes pmap_resident_count and pmap_wired_count out-of-line
functions instead of inline. No functional change intended
otherwise.

/src/sys/arch/amd64/conf/
H A DGENERIC1.420 Sun Jan 10 03:19:36 GMT 2016 christos PR/50636: Ryo ONODERA: Add scsibus to vioscsi

Completed in 670 milliseconds

12