History log of /netbsd-src/sys/compat/common/usb_subr_30.c (Results 1 – 6 of 6)
Revision Date Author Comments
# a8714c4b 31-Jul-2023 christos <christos@NetBSD.org>

Don't call versioned stuff "old". Follow the naming convention for versioning
and name them after the last version of the OS they appeared on.


# 8a031a1d 12-Dec-2019 pgoyette <pgoyette@NetBSD.org>

Rather than keeping a separate mutex, condvar, and pserialize for each
module hook, we can share a common set of synchronization structures.
This cuts the amount of cacheline_aligned data for these s

Rather than keeping a separate mutex, condvar, and pserialize for each
module hook, we can share a common set of synchronization structures.
This cuts the amount of cacheline_aligned data for these structures by
50%.

Note that we still have a per-hook localcount, since we need to count
individual references.

As discussed with riastradh@

Welcome to 9.99.22 !

show more ...


# 535ba13a 26-Sep-2019 christos <christos@NetBSD.org>

fix sign-compare issues.


# 8c2f80f1 01-Mar-2019 pgoyette <pgoyette@NetBSD.org>

Rename the MODULE_*_HOOK() macros to MODULE_HOOK_*() as briefly
discussed on irc.

NFCI intended.

Ride the earlier kernel bump - it;s getting crowded.


# c1283e70 29-Jan-2019 pgoyette <pgoyette@NetBSD.org>

Normalize all the compat hooks' names to the form

<subsystem>_<function>_<version>_hook

NFCI

XXX Note that although this introduces a change in the kernel-to-
XXX module interface, we are NOT bum

Normalize all the compat hooks' names to the form

<subsystem>_<function>_<version>_hook

NFCI

XXX Note that although this introduces a change in the kernel-to-
XXX module interface, we are NOT bumping the kernel version number.
XXX We will bump the version number once the interface stabilizes.

show more ...


# d91f98a8 27-Jan-2019 pgoyette <pgoyette@NetBSD.org>

Merge the [pgoyette-compat] branch