Searched hist:1.337 (Results 1 - 25 of 83) sorted by relevance

1234

/src/
H A Dbuild.sh1.337 Sat May 23 11:04:43 GMT 2020 jmcneill Remove plain "earm" targets, and require an explicit MACHINE_ARCH for
evbarm instead of selecting a default.

H A DUPDATING1.337 Thu Mar 23 07:15:08 GMT 2023 mrg add a note about how to fix missing ./usr/lib/libisns* files.
/src/sys/compat/linux/arch/i386/
H A Dlinux_machdep.c1.49 Mon May 15 01:12:07 GMT 2000 jhawk branches: 1.49.2;
Remove conditionization upon XSERVER -- all the code
so conditionalized is already conditionalized on (NWSDISPLAY > 0),
so is wscons-specific. wscons has no conditionalization on XSERVER;
neither should the linux compatibility code.

Removing this is necessary to keep linux X server emulation functionining
after GENERIC rev 1.337 removing "options XSERVER" (relegating it
to the pccons/pcvt-specific, and therefore depricated).

/src/sys/dev/ata/
H A Dwd.c1.337 Sun Mar 04 06:01:44 GMT 2007 christos branches: 1.337.2; 1.337.4;
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.

1.337 Sun Mar 04 06:01:44 GMT 2007 christos branches: 1.337.2; 1.337.4;
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.

1.337 Sun Mar 04 06:01:44 GMT 2007 christos branches: 1.337.2; 1.337.4;
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.

/src/sys/kern/
H A Dinit_sysent.c1.337 Mon Nov 02 18:56:16 GMT 2020 christos regen

/src/doc/
H A DBRANCHES1.337 Sun Jan 15 20:36:21 GMT 2017 bouyer Document bouyer-socketcan
While there update status of bouyer-quota2 (which got merged a long
time ago).

/src/sys/arch/i386/conf/
H A Dfiles.i3861.337 Sun May 18 02:06:14 GMT 2008 jmcneill branches: 1.337.2;
Add support for PCI_BUS_FIXUP and PCI_ADDR_FIXUP on amd64.

1.337 Sun May 18 02:06:14 GMT 2008 jmcneill branches: 1.337.2;
Add support for PCI_BUS_FIXUP and PCI_ADDR_FIXUP on amd64.

/src/sys/arch/alpha/alpha/
H A Dmachdep.c1.337 Mon Feb 06 02:14:11 GMT 2012 matt branches: 1.337.2;
Do a minor cleanup of alpha (this will make applying pullups post branching
easier).
u_int{8,16,32,64}_t -> uint{*}_t
Change all old-style definitions to C89 prototypes.
Whitespace cleanup.
Constification in db_disasm.c

1.337 Mon Feb 06 02:14:11 GMT 2012 matt branches: 1.337.2;
Do a minor cleanup of alpha (this will make applying pullups post branching
easier).
u_int{8,16,32,64}_t -> uint{*}_t
Change all old-style definitions to C89 prototypes.
Whitespace cleanup.
Constification in db_disasm.c

/src/etc/
H A DMakefile1.337 Mon Sep 18 22:39:37 GMT 2006 hubertf branches: 1.337.2;
Remove last traces of /var/log/aculog
OK'd by perry@

1.337 Mon Sep 18 22:39:37 GMT 2006 hubertf branches: 1.337.2;
Remove last traces of /var/log/aculog
OK'd by perry@

/src/sys/dev/usb/
H A Dusbdevs.h1.337 Mon Jun 30 00:42:27 GMT 2003 martin branches: 1.337.2;
Regen (Sony USB Memory Stick Slot (MSC-U03) added)

1.337 Mon Jun 30 00:42:27 GMT 2003 martin branches: 1.337.2;
Regen (Sony USB Memory Stick Slot (MSC-U03) added)

/src/sys/arch/mac68k/mac68k/
H A Dmachdep.c1.337 Mon Jan 17 14:53:43 GMT 2011 tsutsui branches: 1.337.2;
Explicitly include <machine/pcb.h> for struct pcb.

1.337 Mon Jan 17 14:53:43 GMT 2011 tsutsui branches: 1.337.2;
Explicitly include <machine/pcb.h> for struct pcb.

/src/sys/netinet/
H A Dip_input.c1.337 Fri Jul 08 06:15:33 GMT 2016 ozaki-r branches: 1.337.2;
CID 1363344: remove dead code

We may need to reconsider a case when m_get_rcvif_psref returns NULL.

1.337 Fri Jul 08 06:15:33 GMT 2016 ozaki-r branches: 1.337.2;
CID 1363344: remove dead code

We may need to reconsider a case when m_get_rcvif_psref returns NULL.

/src/sys/sys/
H A Dproc.h1.337 Sat Jan 14 06:36:52 GMT 2017 kamil branches: 1.337.2;
Introduce PTRACE_LWP_{CREATE,EXIT} in ptrace(2) and TRAP_LWP in siginfo(5)

Add interface in ptrace(2) to track thread (LWP) events:
- birth,
- termination.

The purpose of this thread is to keep track of the current thread state in
a tracee and apply e.g. per-thread designed hardware assisted watchpoints.

This interface reuses the EVENT_MASK and PROCESS_STATE interface, and
shares it with PTRACE_FORK, PTRACE_VFORK and PTRACE_VFORK_DONE.

Change the following structure:

typedef struct ptrace_state {
int pe_report_event;
pid_t pe_other_pid;
} ptrace_state_t;

to

typedef struct ptrace_state {
int pe_report_event;
union {
pid_t _pe_other_pid;
lwpid_t _pe_lwp;
} _option;
} ptrace_state_t;

#define pe_other_pid _option._pe_other_pid
#define pe_lwp _option._pe_lwp

This keeps size of ptrace_state_t unchanged as both pid_t and lwpid_t are
defined as int32_t-like integer. This change does not break existing
prebuilt software and has minimal effect on necessity for source-code
changes. In summary, this change should be binary compatible and shouldn't
break build of existing software.


Introduce new siginfo(5) type for LWP events under the SIGTRAP signal:
TRAP_LWP. This change will help debuggers to distinguish exact source of
SIGTRAP.


Add two basic t_ptrace_wait* tests:
lwp_create1:
Verify that 1 LWP creation is intercepted by ptrace(2) with
EVENT_MASK set to PTRACE_LWP_CREATE

lwp_exit1:
Verify that 1 LWP creation is intercepted by ptrace(2) with
EVENT_MASK set to PTRACE_LWP_EXIT

All tests are passing.


Surfing the previous kernel ABI bump to 7.99.59 for PTRACE_VFORK{,_DONE}.

Sponsored by <The NetBSD Foundation>

1.337 Sat Jan 14 06:36:52 GMT 2017 kamil branches: 1.337.2;
Introduce PTRACE_LWP_{CREATE,EXIT} in ptrace(2) and TRAP_LWP in siginfo(5)

Add interface in ptrace(2) to track thread (LWP) events:
- birth,
- termination.

The purpose of this thread is to keep track of the current thread state in
a tracee and apply e.g. per-thread designed hardware assisted watchpoints.

This interface reuses the EVENT_MASK and PROCESS_STATE interface, and
shares it with PTRACE_FORK, PTRACE_VFORK and PTRACE_VFORK_DONE.

Change the following structure:

typedef struct ptrace_state {
int pe_report_event;
pid_t pe_other_pid;
} ptrace_state_t;

to

typedef struct ptrace_state {
int pe_report_event;
union {
pid_t _pe_other_pid;
lwpid_t _pe_lwp;
} _option;
} ptrace_state_t;

#define pe_other_pid _option._pe_other_pid
#define pe_lwp _option._pe_lwp

This keeps size of ptrace_state_t unchanged as both pid_t and lwpid_t are
defined as int32_t-like integer. This change does not break existing
prebuilt software and has minimal effect on necessity for source-code
changes. In summary, this change should be binary compatible and shouldn't
break build of existing software.


Introduce new siginfo(5) type for LWP events under the SIGTRAP signal:
TRAP_LWP. This change will help debuggers to distinguish exact source of
SIGTRAP.


Add two basic t_ptrace_wait* tests:
lwp_create1:
Verify that 1 LWP creation is intercepted by ptrace(2) with
EVENT_MASK set to PTRACE_LWP_CREATE

lwp_exit1:
Verify that 1 LWP creation is intercepted by ptrace(2) with
EVENT_MASK set to PTRACE_LWP_EXIT

All tests are passing.


Surfing the previous kernel ABI bump to 7.99.59 for PTRACE_VFORK{,_DONE}.

Sponsored by <The NetBSD Foundation>

/src/sys/arch/sparc/sparc/
H A Dmachdep.c1.337 Tue Aug 17 22:00:31 GMT 2021 andvar fix multiplei repetitive typos in comments, messages and documentation. mainly because copy paste code big amount of files are affected.

/src/sys/arch/alpha/conf/
H A DGENERIC1.337 Sat May 22 19:02:07 GMT 2010 plunky add btmagic(4) where other Bluetooth drivers are listed

/src/sys/arch/amiga/conf/
H A DGENERIC1.337 Thu Sep 29 10:10:05 GMT 2022 riastradh swwdog(4): Add to GENERIC kernels.

Plus a handful of others that I'm familiar with. Lots of special-
purpose kernels should probably have this too but I'm not going
through all the arm, mips, and ppc evaluation board kernels to see
which ones are relevant.

Omitted from systems I know to be very small:
- sun2/GENERIC
- dreamcast/GENERIC
Feel free to remove it from others that need to be kept smaller.

Compile-tested a few of these just in case:
- alpha/GENERIC
- amd64/GENERIC
- evbmips/OCTEON
- i386/GENERIC
- riscv/GENERIC

PR kern/29702

/src/distrib/sets/lists/comp/
H A Dshl.mi1.337 Thu Aug 20 21:28:00 GMT 2020 riastradh [ozaki-r] Add wg files
/src/distrib/sets/lists/debug/
H A Dshl.mi1.337 Tue Feb 20 14:13:45 GMT 2024 christos fix debug sets for sun2 (libgcc_s_g.a and libgcc_eh_g.a should be in shl.mi)
/src/share/misc/
H A Dacronyms.comp1.337 Tue Feb 28 16:48:00 GMT 2023 fcambus Add KASAN (Kernel Address Sanitizer).

/src/share/mk/
H A Dbsd.prog.mk1.337 Sat Aug 14 16:16:32 GMT 2021 christos Centralize the ldap libraries

/src/sys/dev/scsipi/
H A Dsd.c1.337 Sat Sep 28 08:57:47 GMT 2024 mlelstv Don't artificially limit block size to 4096 bytes, use MAXPHYS.

/src/sys/arch/macppc/conf/
H A DGENERIC1.337 Wed Dec 27 18:30:02 GMT 2017 sevan Without RADEONFB_ALWAYS_ACCEL_PUTCHAR, there are display issues on the PowerBook5,2 (G4 FW-800)
Radeon 9600, where console is garbled.
Thanks to <macallan> for the pointer.
Closes PR port-macppc/52712

/src/sys/ufs/ffs/
H A Dffs_vfsops.c1.337 Sun Nov 15 01:39:23 GMT 2015 pgoyette If file system ffs is built with WAPBL defined, make sure that the
module depends on the wapbl module.

No impact to users of built-in ffs file system code, as the WAPBL
#define will cause inclusion of the code in the kernel.

A standard build of the modular ffs file system code will #define
WAPBL, so the module will only work on a kernel which was also
built with WAPBL defined (or, once I commit it, with a dynamically-
loaded wapbl module).

/src/sys/ufs/lfs/
H A Dlfs_vfsops.c1.337 Wed Aug 12 18:25:52 GMT 2015 dholland Add IFILE32 and IFILE64 structures for the on-disk ifile entries.
Add and use accessors. There are also a bunch of places that cast and
I hope I've found them all...
H A Dlfs_vnops.c1.337 Tue Jun 29 22:34:09 GMT 2021 dholland - Add a new vnode op: VOP_PARSEPATH.
- Move namei_getcomponent to genfs_vnops.c and call it genfs_parsepath.
- Add a parsepath entry to every vnode ops table.

VOP_PARSEPATH takes a directory vnode to be searched and a complete
following path and chooses how much of that path to consume. To begin
with, all parsepath calls are genfs_parsepath, which locates the first
'/' as always.

Note that the call doesn't take the whole struct componentname, only
the string. The other bits of struct componentname should not be
needed and there's no reason to cause potential complications by
exposing them.

Completed in 323 milliseconds

1234