Searched hist:1.365 (Results 1 - 25 of 72) sorted by relevance

123

/src/sys/arch/x86/include/
H A Dpmap_pv.h1.16 Tue Mar 17 21:02:56 GMT 2020 ad Back out the recent pmap changes until I can figure out what is going on
with pmap_page_remove() (to pmap.c rev 1.365).

H A Dpmap.h1.114 Tue Mar 17 21:02:56 GMT 2020 ad Back out the recent pmap changes until I can figure out what is going on
with pmap_page_remove() (to pmap.c rev 1.365).

/src/
H A Dbuild.sh1.365 Sun Aug 21 07:57:50 GMT 2022 lukem branches: 1.365.2;
build.sh: usage improvements

Use UPPERCASE as the convention to describe an option argument,
as it's more noticable than lowercase in the help description.

Expand tabs in the help.

Editorial improvements.
1.365 Sun Aug 21 07:57:50 GMT 2022 lukem branches: 1.365.2;
build.sh: usage improvements

Use UPPERCASE as the convention to describe an option argument,
as it's more noticable than lowercase in the help description.

Expand tabs in the help.

Editorial improvements.
H A DUPDATING1.365 Sun Nov 10 13:58:59 GMT 2024 martin one more update for zstd
/src/doc/
H A DBRANCHES1.365 Mon Sep 20 02:26:05 GMT 2021 thorpej Update the status of the thorpej-futex branch.
/src/sys/ufs/lfs/
H A Dlfs_vfsops.c1.365 Tue May 28 08:59:35 GMT 2019 msaitoh branches: 1.365.2;
s/recieve/receive/
1.365 Tue May 28 08:59:35 GMT 2019 msaitoh branches: 1.365.2;
s/recieve/receive/
/src/sys/arch/arm/arm32/
H A Dpmap.c1.365 Sun Apr 01 04:35:03 GMT 2018 ryo branches: 1.365.2;
Add initial support for ARMv8 (AARCH64) (by nisimura@ and ryo@)

- sys/arch/evbarm64 is gone and integrated into sys/arch/evbarm. (by skrll@)
- add support fdt. evbarm/conf/GENERIC64 fdt (bcm2837,sunxi,tegra) based generic 64bit kernel config. (by skrll@, jmcneill@)

1.365 Sun Apr 01 04:35:03 GMT 2018 ryo branches: 1.365.2;
Add initial support for ARMv8 (AARCH64) (by nisimura@ and ryo@)

- sys/arch/evbarm64 is gone and integrated into sys/arch/evbarm. (by skrll@)
- add support fdt. evbarm/conf/GENERIC64 fdt (bcm2837,sunxi,tegra) based generic 64bit kernel config. (by skrll@, jmcneill@)

/src/usr.bin/make/
H A Dcond.c1.365 Sun Jun 02 15:31:25 GMT 2024 rillig branches: 1.365.2;
make: sync VarEvalMode constant names with their debug log names

1.365 Sun Jun 02 15:31:25 GMT 2024 rillig branches: 1.365.2;
make: sync VarEvalMode constant names with their debug log names

/src/sys/arch/alpha/conf/
H A DGENERIC1.365 Sat Aug 08 06:36:24 GMT 2015 maxv Remove KMEMSTATS.

/src/distrib/sets/lists/debug/
H A Dshl.mi1.365 Mon Jun 02 14:02:54 GMT 2025 christos new libfido2
/src/share/misc/
H A Dacronyms.comp1.365 Sat Sep 16 21:18:29 GMT 2023 gutteridge acronyms.comp: add CAN & ODBC

/src/sys/arch/macppc/conf/
H A DGENERIC1.365 Mon Mar 16 19:09:34 GMT 2020 nia Lower blk_ms on more ports that are even slightly likely to play video
/src/sys/arch/x86/x86/
H A Dpmap.c1.373 Tue Mar 17 21:02:56 GMT 2020 ad Back out the recent pmap changes until I can figure out what is going on
with pmap_page_remove() (to pmap.c rev 1.365).

1.365 Sat Mar 14 14:05:44 GMT 2020 ad pmap_remove_all(): Return a boolean value to indicate the behaviour. If
true, all mappings have been removed, the pmap is totally cleared out, and
UVM can then avoid doing the work to call pmap_remove() for each map entry.
If false, either nothing has been done, or some helpful arch-specific voodoo
has taken place.

/src/sys/arch/i386/i386/
H A Dmachdep.c1.365 Fri Sep 17 19:59:43 GMT 1999 thorpej branches: 1.365.2;
Centralize the declaration and clearing of `cold'.
1.365 Fri Sep 17 19:59:43 GMT 1999 thorpej branches: 1.365.2;
Centralize the declaration and clearing of `cold'.
/src/sys/ufs/ffs/
H A Dffs_vfsops.c1.365 Thu Feb 27 22:12:54 GMT 2020 ad Tighten up the locking around vp->v_iflag a little more after the recent
split of vmobjlock & v_interlock.
/src/sys/uvm/
H A Duvm_map.c1.365 Fri Nov 01 08:26:18 GMT 2019 rin PR kern/54395

- Align hint for virtual address at the beginning of uvm_map() if
required. Otherwise, it will be rounded up/down in an unexpected
way by uvm_map_space_avail(), which results in assertion failure.

Fix kernel panic when executing earm binary (8KB pages) on aarch64
(4KB pages), which relies on mmap(2) with MAP_ALIGNED flag.

- Use inline functions/macros consistently.

- Add some more KASSERT's.

For more details, see the PR as well as discussion on port-kern:
http://mail-index.netbsd.org/tech-kern/2019/10/27/msg025629.html

/src/sys/kern/
H A Dkern_sig.c1.365 Mon Sep 30 21:13:33 GMT 2019 kamil Move TRAP_CHLD/TRAP_LWP ptrace information from struct proc to siginfo

Storing struct ptrace_state information inside struct proc was vulnerable
to synchronization bugs, as multiple events emitted in the same time were
overwritting other ones.

Cache the original parent process id in p_oppid. Reusing here p_opptr is
in theory prone to slight race codition.

Change the semantics of PT_GET_PROCESS_STATE, reutning EINVAL for calls
prompting for the value in cases when there wasn't registered an
appropriate event.

Add an alternative approach to check the ptrace_state information, directly
from the siginfo_t value returned from PT_GET_SIGINFO. The original
PT_GET_PROCESS_STATE approach is kept for compat with older NetBSD and
OpenBSD. New code is recommended to keep using PT_GET_PROCESS_STATE.

Add a couple of compile-time asserts for assumptions in the code.

No functional change intended in existing ptrace(2) software.

All ATF ptrace(2) and ATF GDB tests pass.

This change improves reliability of the threading ptrace(2) code.
H A Dkern_synch.c1.365 Sun Oct 15 10:29:10 GMT 2023 riastradh kern_synch.c: Sort includes. No functional change intended.
/src/sys/arch/sparc64/sparc64/
H A Dlocore.s1.365 Sat Jul 19 20:58:12 GMT 2014 palle sun4v: Introduce a NORMAL_GLOBALS macro - first used in sparc_interrupt - other relevant uses will be handled as the sun4v work is progressesing - ok martin@
/src/sys/dev/ata/
H A Dwd.c1.365 Sat Dec 13 19:38:20 GMT 2008 christos more debugging in the dump path.

/src/sys/arch/sparc/sparc/
H A Dpmap.c1.365 Mon Sep 03 16:29:27 GMT 2018 riastradh Rename min/max -> uimin/uimax for better honesty.

These functions are defined on unsigned int. The generic name
min/max should not silently truncate to 32 bits on 64-bit systems.
This is purely a name change -- no functional change intended.

HOWEVER! Some subsystems have

#define min(a, b) ((a) < (b) ? (a) : (b))
#define max(a, b) ((a) > (b) ? (a) : (b))

even though our standard name for that is MIN/MAX. Although these
may invite multiple evaluation bugs, these do _not_ cause integer
truncation.

To avoid `fixing' these cases, I first changed the name in libkern,
and then compile-tested every file where min/max occurred in order to
confirm that it failed -- and thus confirm that nothing shadowed
min/max -- before changing it.

I have left a handful of bootloaders that are too annoying to
compile-test, and some dead code:

cobalt ews4800mips hp300 hppa ia64 luna68k vax
acorn32/if_ie.c (not included in any kernels)
macppc/if_gm.c (superseded by gem(4))

It should be easy to fix the fallout once identified -- this way of
doing things fails safe, and the goal here, after all, is to _avoid_
silent integer truncations, not introduce them.

Maybe one day we can reintroduce min/max as type-generic things that
never silently truncate. But we should avoid doing that for a while,
so that existing code has a chance to be detected by the compiler for
conversion to uimin/uimax without changing the semantics until we can
properly audit it all. (Who knows, maybe in some cases integer
truncation is actually intended!)

/src/sys/dev/ic/
H A Dcom.c1.365 Sat Jul 31 10:04:12 GMT 2021 tnn only read cpr register if we're going to use the value

/src/sys/arch/i386/conf/
H A DALL1.365 Fri Nov 22 18:58:01 GMT 2013 riz Comment out npf for now, as we can't have both NPF and PF in the
same kernel - rmind has said he'll address this eventually,
and for now PF is more likely to have unnoticed breakage. ALL now
builds again!

H A Dfiles.i3861.365 Thu Sep 27 18:28:55 GMT 2012 alnsn Remove bpf_jit which was ported from FreeBSD recently.

It will soon be replaced with the new bpfjit kernel module.
/src/sys/arch/alpha/alpha/
H A Dmachdep.c1.365 Sun Sep 27 23:16:10 GMT 2020 thorpej prom_is_qemu -> alpha_is_qemu, and export it outside of prom.c.

Completed in 446 milliseconds

123