Searched hist:1.388 (Results 1 - 25 of 56) sorted by relevance

123

/src/distrib/notes/common/
H A Dlegal.common1.51 Fri Sep 05 13:52:41 GMT 2008 tsutsui branches: 1.51.2; 1.51.4;
Explicitly disable hyphenation for opengroup.org's URL in INSTALL.txt.
(src/distrib/notes/common/main rev 1.388 doesn't seem to work properly)

H A Dmain1.414 Sat Sep 06 04:27:47 GMT 2008 tsutsui Revert rev 1.388 since de-hyphenation needs to be handled per item
in legal files.
1.388 Tue Feb 05 05:33:23 GMT 2008 itohy Disable hyphenation for legal block to avoid hyphens like "http://www.open-
group.org/unix/online.html".
/src/
H A Dbuild.sh1.388 Sat Dec 28 00:39:56 GMT 2024 gutteridge build.sh: fix spelling and grammar in a help string
/src/sys/uvm/
H A Duvm_map.c1.388 Sat Apr 17 21:37:21 GMT 2021 mrg branches: 1.388.2;
fix error in previous: UVMHIST_PDHIST_SIZE needs to stay next to pdhistbuf[].

1.388 Sat Apr 17 21:37:21 GMT 2021 mrg branches: 1.388.2;
fix error in previous: UVMHIST_PDHIST_SIZE needs to stay next to pdhistbuf[].

/src/share/man/man4/
H A Doptions.41.388 Mon Feb 22 20:13:01 GMT 2010 wiz branches: 1.388.2;
Punctuation nit.
1.388 Mon Feb 22 20:13:01 GMT 2010 wiz branches: 1.388.2;
Punctuation nit.
/src/sys/dev/usb/
H A Dusbdevs.h1.393 Sun Dec 26 07:05:32 GMT 2004 imp Sync to usbdevs 1.388
1.388 Sat Oct 23 14:21:19 GMT 2004 augustss Regen.
H A Dusbdevs_data.h1.394 Sun Dec 26 07:05:32 GMT 2004 imp Sync to usbdevs 1.388
1.388 Sat Oct 23 14:17:36 GMT 2004 augustss Regen.
/src/sys/dev/pci/
H A Dif_bge.c1.388 Tue Oct 11 22:03:37 GMT 2022 andvar branches: 1.388.2;
fix typos in log messages s/bus_dmamem_create/bus_dmamap_create/ and
s/bus_dmamem_load/bus_dmamap_load/.
Inspired by recent similar fixes in OpenBSD.

1.388 Tue Oct 11 22:03:37 GMT 2022 andvar branches: 1.388.2;
fix typos in log messages s/bus_dmamem_create/bus_dmamap_create/ and
s/bus_dmamem_load/bus_dmamap_load/.
Inspired by recent similar fixes in OpenBSD.

H A Dfiles.pci1.388 Thu Apr 13 10:37:36 GMT 2017 knakahara branches: 1.388.4;
wm(4) can disable msi/msix by build option and ddb command.

suggested by nonaka@n.o.
reviewed by msaitoh@n.o and nonaka@n.o.
1.388 Thu Apr 13 10:37:36 GMT 2017 knakahara branches: 1.388.4;
wm(4) can disable msi/msix by build option and ddb command.

suggested by nonaka@n.o.
reviewed by msaitoh@n.o and nonaka@n.o.
/src/sys/arch/alpha/conf/
H A DGENERIC1.388 Sun Jan 27 08:53:29 GMT 2019 maxv Remove the satlink driver. It was disabled everywhere, had no man page and
no use either. Spotted by thorpej in PR/21345, ok christos.

/src/share/misc/
H A Dacronyms.comp1.388 Mon Jan 29 16:31:53 GMT 2024 jschauma +HPKE, PKE (hybrid) public key encryption (see also: RFC9180)

/src/sys/ufs/lfs/
H A Dlfs_vfsops.c1.388 Fri Sep 19 15:55:12 GMT 2025 perseant Interpret the "waitfor" argument to lfs_sync to match the passed values.
Not every sync needs to be a synchronous checkpoint.
/src/sys/kern/
H A Dkern_sig.c1.388 Thu May 07 20:02:34 GMT 2020 kamil On debugger attach to a prestarted process don't report SIGTRAP

Introduce PSL_TRACEDCHILD that indicates tracking of birth of a process.
A freshly forked process checks whether it is traced and if so, reports
SIGTRAP + TRAP_CHLD event to a debugger as a result of tracking forks-like
events. There is a time window when a debugger can attach to a newly
created process and receive SIGTRAP + TRAP_CHLD instead of SIGSTOP.

Fixes races in t_ptrace_wait* tests when a test hangs or misbehaves,
especially the ones reported in tracer_sysctl_lookup_without_duplicates.
/src/sys/arch/sparc64/sparc64/
H A Dlocore.s1.388 Sun Feb 14 21:13:33 GMT 2016 palle sun4v: add breakpoint trap entry to the sun4v trap table
/src/sys/dev/ata/
H A Dwd.c1.388 Wed Oct 05 03:40:18 GMT 2011 jakllsch Limit wd(4) transfers to 128 (512-byte) logical sectors, as the traditional
MAXPHYS value has for at least the past decade.

There are issues in wd(4) and possibly in host adapter drivers that need
work before this should be raised.
/src/sys/dev/ic/
H A Dcom.c1.388 Wed Feb 12 05:15:39 GMT 2025 imil Set a skip_attach_delay property to "true" for com port in virtual machines
to avoid a delay(10000) at attach
/src/sys/arch/i386/conf/
H A DALL1.388 Sun Nov 02 23:14:20 GMT 2014 christos switch to DRMKMS drivers
H A Dfiles.i3861.388 Sun Oct 08 09:06:50 GMT 2017 maxv KASLR: add workarounds to compute the bootinfo VAs (use the direct map),
and don't use large pages yet. Both will be fixed later.
/src/sys/arch/arm/arm32/
H A Dpmap.c1.388 Wed Feb 05 07:37:35 GMT 2020 skrll Fix the armv[67] memory attributes for uncached memory. Previously it was
mapped as strongly-ordered which meant that unaligned accesses would fault.

armv7_generic_bs_map now maps pages with PMAP_DEV which is treated as SO

bus_dma continues to use PMAP_NOCACHE as appropriate, but this now get
mapped to the correct memory attribute bits for armv[67]

DEVMAP_ENTRY usees a new flag PTE_DEV.

The workaround for the unaligned access faults is now removed.

XXX Other armv[67] boards bus_space implementations should be checked.
XXX There is scope to reduce the difference to aarch64

/src/distrib/sets/lists/debug/
H A Dmi1.388 Sat Aug 27 08:31:58 GMT 2022 christos Add sincos{,f,l} from FreeBSD
/src/etc/
H A DMakefile1.388 Mon Apr 11 20:03:45 GMT 2011 martin When run as root, tcpdump will chroot to /var/run/tcpdump - but it can
not look up /etc/protcols in there. So install a copy of /etc/protocols
into the chroot area.
Fixes PR bin/44721.
/src/share/man/man9/
H A DMakefile1.388 Sun Jul 12 08:11:27 GMT 2015 hannken Operations getnewvnode() and ungetnewvnode() have been replaced with vcache.
- Remove now obsolete functions getnewvnode() and ungetnewvnode().
- Document vcache operations.

Welcome to 7.99.20
/src/share/mk/
H A Dbsd.README1.388 Wed Apr 03 15:17:23 GMT 2019 joerg Document MKLLVM.
H A Dbsd.lib.mk1.388 Sun Nov 28 15:47:33 GMT 2021 christos For private and module libraries, build lint but do not install the lint
libraries. We want to lint the private library code and we want to be able
to link against the lint libraries, for example llib-largon2 from cgdconfig
which is accessed via PROGDPLIBS.

/src/sys/dev/raidframe/
H A Drf_netbsdkintf.c1.388 Fri Jul 31 20:35:33 GMT 2020 christos no need for continue

Completed in 608 milliseconds

123