Searched hist:1.395 (Results 1 - 25 of 53) sorted by relevance

123

/src/
H A Dbuild.sh1.395 Tue May 13 00:33:29 GMT 2025 riastradh build.sh: Use `src' and `xsrc' in revision ids, not basename of pwd.

PR toolchain/59418: using the basename of the cloned source dirs
breaks reproducible builds

/src/sys/dev/usb/
H A Dusbdevs1.395 Mon Jan 24 01:21:31 GMT 2005 joff branches: 1.395.2;
New Belkin USB-wifi ID, rename DWL120 to generic AT76C503A since this ID is used by more than one vendor (from OpenBSD)
1.395 Mon Jan 24 01:21:31 GMT 2005 joff branches: 1.395.2;
New Belkin USB-wifi ID, rename DWL120 to generic AT76C503A since this ID is used by more than one vendor (from OpenBSD)
H A Dusbdevs.h1.395 Mon Dec 27 07:05:32 GMT 2004 imp sync to usbdevs 1.391

H A Dusbdevs_data.h1.395 Sun Dec 26 07:39:50 GMT 2004 imp Sync to usbdevs 1.389
/src/sys/arch/alpha/conf/
H A DGENERIC1.395 Fri Aug 09 08:02:23 GMT 2019 rin Add xhci(4). Just working for me.

/src/share/misc/
H A Dacronyms.comp1.395 Tue Nov 12 19:58:53 GMT 2024 jschauma add a few cryptography related acronyms:

EDDSA Edwards-curve digital signature algorithm
HBS hash-based signature
LMS Leighton-Micali Signature
XMSS eXtended Merkle Signature Scheme
XOF eXtendable-Output Function

/src/sys/sys/
H A Dparam.h1.395 Tue Sep 27 23:04:18 GMT 2011 christos branches: 1.395.2;
Welcome to .56; NAME_MAX bump.

1.395 Tue Sep 27 23:04:18 GMT 2011 christos branches: 1.395.2;
Welcome to .56; NAME_MAX bump.

/src/sys/uvm/
H A Duvm_map.c1.395 Sat Jun 04 20:54:24 GMT 2022 riastradh uvm(9): Fix 19-year-old bug in assertion about mmap hint.

Previously this would _first_ remember the original hint, and _then_
clamp the hint to the VM map's range:

orig_hint = hint;
if (hint < vm_map_min(map)) { /* check ranges ... */
if (flags & UVM_FLAG_FIXED) {
UVMHIST_LOG(maphist,"<- VA below map range",0,0,0,0);
return (NULL);
}
hint = vm_map_min(map);
...
KASSERTMSG(!topdown || hint <= orig_hint, "hint: %#jx, orig_hint: %#jx",
(uintmax_t)hint, (uintmax_t)orig_hint);

Even if nothing else happens in the ellipsis, taking the branch
guarantees the assertion will fail in the topdown case.

/src/sys/kern/
H A Dkern_sig.c1.395 Sun Nov 01 18:51:02 GMT 2020 pgoyette Separate the compat_netbsd32_coredump from the compat_netbsd32 and
coredump modules, into its own module.

Welcome to 7.99.75 !!!

/src/sys/arch/sparc64/sparc64/
H A Dlocore.s1.395 Mon May 16 20:03:07 GMT 2016 palle Avoid assembler-specific defines by using the export keyword in genassym.cf instead
/src/sys/dev/ata/
H A Dwd.c1.395 Sun Jul 15 10:55:29 GMT 2012 dsl Some namespace protection (and add greppablity).
Prefix the DRIVE_ and DRIVET_ constants from atavar.h with ATA_.
Don't use an enum for drive_type - you don't know how big it will be.
Move driver_type to avoid implicit structure padding (esp on arm).
This change is purely lexical and mechanical.

Update to 6.99.9 - this wasn't done when the SATA PMP changes
were made - I'm sure they warranted a bump.

/src/sys/arch/i386/conf/
H A DALL1.395 Sat Sep 26 11:16:12 GMT 2015 maxv Remove KMEMSTATS. Normally it's ok now.

H A Dfiles.i3861.395 Fri Jul 13 09:37:32 GMT 2018 maxv Remove the X86PMC code I had written, replaced by tprof. Many defines
become unused in specialreg.h, so remove them. We don't want to add
defines all the time, there are countless PMCs on many generations, and
it's better to just inline the event/unit values.

/src/sys/arch/arm/arm32/
H A Dpmap.c1.395 Fri Mar 13 16:12:06 GMT 2020 skrll Fixup some comments

/src/distrib/notes/common/
H A Dmain1.395 Wed Apr 30 13:10:48 GMT 2008 martin Convert TNF licenses to new 2 clause variant
/src/distrib/sets/lists/debug/
H A Dmi1.395 Mon Dec 26 16:42:50 GMT 2022 christos make gnu ctf needed for all new binutils.
/src/etc/
H A DMakefile1.395 Sun Jan 15 17:36:55 GMT 2012 joerg Now that the name of the ISO image is no longer stable, rename the
variable to make it possible to overwrite the default with
build.sh -V CDROM_IMAGE=...

/src/share/man/man9/
H A DMakefile1.395 Sat Apr 09 06:21:16 GMT 2016 riastradh Add passive references, intermediate between pserialize and refcount.

Discussed on tech-kern:

https://mail-index.netbsd.org/tech-kern/2016/01/24/msg020069.html

API is still experimental and likely to change. (Obvious changes:
either remove extra arguments everywhere, or shrink psref_target to a
single bit, at the expense of possibly valuable diagnostic checks.)
Should do some real testing before we use this in anger!

/src/share/mk/
H A Dbsd.README1.395 Thu Oct 31 06:43:19 GMT 2019 martin PR misc/54657: let RELEASEMACHINEDIR default to ${MACHINE}-${MACHINE_ARCH}
for evb{arm,mips,sh3}*.

H A Dbsd.lib.mk1.395 Wed Mar 20 13:50:37 GMT 2024 riastradh bsd.lib.mk: Check expected vs actual symbols at build-time.

If, for LIB=foo, you create a file foo.expsym, bsd.lib.mk will list
the dynamic symbols and their versions with

nm --dynamic --extern-only --defined-only --with-symbol-versions

and compare the names (not addresses or types) to foo.expsym. If
there are any differences, they will be printed and the build will
fail.

foo.expsym should be sorted with `LANG=C sort -u'.

This way, you can verify changes don't inadvertently add or remove
symbols. If you do want to add (or, if you're bumping the major,
remove) symbols, you can verify the changes and edit the foo.expsym
file accordingly. This will also help to enforce rules about symbol
changes on pullups in release branches.

Note that using a version map (-Wl,--version-script=...) doesn't
catch symbol removal -- ld quietly ignores symbols in the version map
that aren't actually defined by any object in the library. So this
supplements the version map.

Proposed on tech-userlevel:
https://mail-index.NetBSD.org/tech-userlevel/2024/03/16/msg014264.html

/src/share/man/man4/
H A Doptions.41.395 Sun Jul 25 07:09:02 GMT 2010 wiz Bump date for PAE. New sentence, new line.

/src/sys/dev/raidframe/
H A Drf_netbsdkintf.c1.395 Fri Jul 23 00:54:45 GMT 2021 oster
Extensive mechanical changes to the pools used in RAIDframe.

Alloclist remains not per-RAID, so initialize that pool
separately/differently than the rest.

The remainder of pools in RF_Pools_s are now per-RAID pools. Mostly
mechanical changes to functions to allocate/destroy per-RAID pools.
Needed to make raidPtr available in certain cases to be able to find
the per-RAID pools.

Extend rf_pool_init() to now populate a per-RAID wchan value that is
unique to each pool for a given RAID device.

TODO: Complete the analysis of the minimum number of items that are
required for each pool to allow IO to progress (i.e. so that a request
for pool resources can always be satisfied), and dynamically scale
minimum pool sizes based on RAID configuration.

/src/sys/dev/pci/
H A Dif_bge.c1.395 Sat Sep 07 06:25:27 GMT 2024 skrll Conditionally call mutex_obj_free for the mutexes in bge_release_resources
as there are code path where they might not have been allocated (yat).

H A Dfiles.pci1.395 Fri May 11 07:42:22 GMT 2018 maya add bwfm pci support, from openbsd

Tested on BCM43602.

/src/usr.bin/indent/
H A Dindent.c1.395 Sat Jan 04 21:54:26 GMT 2025 rillig indent: fix indentation of adjacent multi-line initializers

The main topic of this change is parse.c:66, which makes the indentation
of statements uniform with the indentation of other parser symbols.

That change had the side effect of messing up the indentation of files
whose first line does not start in column 1, such as in ps_ind_level.c.
To fix this side effect, the initial indentation must be determined
before pushing the placeholder token psym_stmt during initialization.

Completed in 455 milliseconds

123