Searched hist:1.477 (Results 1 - 25 of 33) sorted by relevance

12

/src/sys/dev/usb/
H A Dusbdevs.h1.477 Thu Jun 28 03:13:43 GMT 2007 itohy branches: 1.477.2;
Regen from usbdevs rev 1.477.
1.477 Thu Jun 28 03:13:43 GMT 2007 itohy branches: 1.477.2;
Regen from usbdevs rev 1.477.
1.477 Thu Jun 28 03:13:43 GMT 2007 itohy branches: 1.477.2;
Regen from usbdevs rev 1.477.
H A Dusbdevs1.477 Thu Jun 28 03:13:01 GMT 2007 itohy branches: 1.477.2;
Add vendors and products from FreeBSD/OpenBSD.
- for ubsa(4):
Add vendor Huawei Technologies and its product Huawei Mobile
GlobeTrotter 3G Quad Plus

- for uipaq(4):
ASUSTeK MyPal A730
1.477 Thu Jun 28 03:13:01 GMT 2007 itohy branches: 1.477.2;
Add vendors and products from FreeBSD/OpenBSD.
- for ubsa(4):
Add vendor Huawei Technologies and its product Huawei Mobile
GlobeTrotter 3G Quad Plus

- for uipaq(4):
ASUSTeK MyPal A730
H A Dusbdevs_data.h1.478 Thu Jun 28 03:13:43 GMT 2007 itohy branches: 1.478.2;
Regen from usbdevs rev 1.477.
1.477 Sun Jun 24 10:56:32 GMT 2007 itohy Regen from usbdevs rev 1.476.
/src/sys/arch/i386/conf/
H A DALL1.477 Wed Dec 18 07:37:18 GMT 2019 maxv Retire filemon, discussed on tech-kern@.

H A DGENERIC1.477 Fri Mar 29 01:31:28 GMT 2002 itojun urlphy is not known to config(8). need a fix somewhere else.
/src/distrib/notes/common/
H A Dmain1.477 Thu May 19 05:13:09 GMT 2011 riastradh Add my name to the list.
/src/distrib/sets/lists/debug/
H A Dmi1.477 Sun Apr 20 22:31:00 GMT 2025 riastradh Test stack pointer alignment in various scenarios.

1. elf entry point
2. main function
3. signal handler

Extend the test to amd64 while here -- fortunately both aarch64 and
amd64 pass, but others, such as mips, will fail:

PR kern/59327: user stack pointer is not aligned properly

This extends the test that was previously written for:

PR kern/58149: aarch64: Cannot return from a signal handler if SP was
misaligned when the signal arrived

With any luck, this will help us to systematically eradicate misaligned
stack pointers as hypothesized to be the reason for:

PR port-mips/59236: Multiple segfaults in erlite3 boot
/src/share/man/man4/
H A Doptions.41.477 Thu Dec 28 23:14:49 GMT 2017 wiz Formatting nit.
H A DMakefile1.477 Thu Oct 02 11:05:23 GMT 2008 pgoyette Remove reference to sdtemp.4 - committed in error

/src/usr.bin/xlint/lint1/
H A Dcgram.y1.477 Sun Dec 03 18:17:41 GMT 2023 rillig lint: in declarations, replace tab with space

Previously, in some cases, the keywords 'const' or 'struct' were
followed by a tab, which doesn't make sense.

No functional change.
H A Dtree.c1.477 Thu Aug 25 19:03:47 GMT 2022 rillig lint: remove explicit list of known GCC attributes

Most GCC attributes consist of a single identifier. Up to now, it was
necessary to list each of these identifiers in the grammar, even those
that only apply to a single target architecture.

Instead, parse the general form of attributes, matching the few
attributes that lint handles by name instead. While here, rename the
grammar rules to use the GCC terms.

To avoid conflicts between the global function 'printf' and the GCC
attribute of the same name, do not add GCC attributes to the symbol
table, and don't make these symbols 'extern' either.

ok christos@.
/src/sys/kern/
H A Dinit_main.c1.477 Tue Dec 08 20:36:15 GMT 2015 christos Replace DIOCGPART -> DIOCGPARTINFO which returns the data needed instead of
pointers.

H A Dkern_exec.c1.477 Thu Jun 27 19:56:10 GMT 2019 maxv Fix this fucking shit once and for all, for fuck's sake.

H A Dvfs_subr.c1.477 Sun Dec 15 20:30:03 GMT 2019 joerg Teach ddb(4)'s "show vnode_lock" about matching by v_interlock.

/src/sys/net/
H A Dif.c1.477 Tue May 05 09:26:29 GMT 2020 jdolecek adjust comment - sosetopt() path doesn't take IFNET_LOCK()

/src/sys/arch/amd64/conf/
H A DGENERIC1.477 Sun Jan 07 16:10:16 GMT 2018 maxv Add a new option, SVS (for Separate Virtual Space), that unmaps kernel
pages when running in userland. For now, only the PTE area is unmapped.

Sent on tech-kern@.
/src/sys/dev/pci/
H A Dpcidevs.h1.477 Wed Oct 16 15:00:50 GMT 2002 leo Regen.
H A Dpcidevs_data.h1.477 Mon Oct 21 13:41:12 GMT 2002 grant regen
/src/usr.bin/make/
H A Djob.c1.477 Tue Jun 25 05:18:38 GMT 2024 rillig make: fix invalid-free for custom shell definitions

Don't try to free a pointer that is taken from the middle of a string,
in this case a shell specification.

H A Dmain.c1.477 Mon Nov 23 20:52:59 GMT 2020 rillig make(1): use properly typed comparisons in boolean contexts
H A Dparse.c1.477 Sun Dec 13 01:51:08 GMT 2020 rillig make(1): clean up comment for ParseDirective
/src/sys/arch/i386/i386/
H A Dmachdep.c1.477 Thu Jul 04 23:32:04 GMT 2002 thorpej Add kernel support for having userland provide the signal trampoline:

* struct sigacts gets a new sigact_sigdesc structure, which has the
sigaction and the trampoline/version. Version 0 means "legacy kernel
provided trampoline". Other versions are coordinated with machine-
dependent code in libc.
* sigaction1() grows two more arguments -- the trampoline pointer and
the trampoline version.
* A new __sigaction_sigtramp() system call is provided to register a
trampoline along with a signal handler.
* The handler is no longer passed to sensig() functions. Instead,
sendsig() looks up the handler by peeking in the sigacts for the
process getting the signal (since it has to look in there for the
trampoline anyway).
* Native sendsig() functions now select the appropriate trampoline and
its arguments based on the trampoline version in the sigacts.

Changes to libc to use the new facility will be checked in later. Kernel
version not bumped; we will ride the 1.6C bump made recently.
/src/distrib/sets/lists/base/
H A Dshl.mi1.477 Thu Jun 25 20:54:16 GMT 2009 agc finish off the move to the external framework for iscsi by fixing up the
set lists - thanks to tron for the nudge.
/src/doc/
H A D3RDPARTY1.477 Tue Oct 31 21:59:18 GMT 2006 pooka import of file 4.18
/src/sys/sys/
H A Dparam.h1.477 Sat May 02 17:18:04 GMT 2015 rtr make connect syscall use sockaddr_big and modify pr_{send,connect}
nam parameter type from buf * to sockaddr *.

final commit for parameter type changes to protocol user requests

* bump kernel version to 7.99.15 for parameter type changes to pr_{send,connect}

Completed in 1114 milliseconds

12