Remove $FreeBSD$: one-line nroff patternRemove /^\.\\"\s*\$FreeBSD\$$\n/
Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Remove $FreeBSD$: one-line .c patternRemove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
Remove $FreeBSD$: two-line .h patternRemove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
librss: Remove rss_socket_set_rss_bucket()In preparation for the removal of the IP_RSS_LISTEN_BUCKET socketoption.PR: 261398 (exp-run)Reviewed by: glebiusSponsored by: Klara, Inc.Differentia
librss: Remove rss_socket_set_rss_bucket()In preparation for the removal of the IP_RSS_LISTEN_BUCKET socketoption.PR: 261398 (exp-run)Reviewed by: glebiusSponsored by: Klara, Inc.Differential Revision: https://reviews.freebsd.org/D38821
show more ...
librss: Remove rss_sock_set_bindmulti()In preparation for the removal of the IP(V6)_BINDMULTI option.PR: 261398 (exp-run)Reviewed by: glebiusSponsored by: Klara, Inc.Differential Revision: ht
librss: Remove rss_sock_set_bindmulti()In preparation for the removal of the IP(V6)_BINDMULTI option.PR: 261398 (exp-run)Reviewed by: glebiusSponsored by: Klara, Inc.Differential Revision: https://reviews.freebsd.org/D38574
PCBGROUP.9: remove obsolete man pageThe PCBGROUP option and KPI were removed entirely in 93c67567e015.Reviewed by: pauamma (manpages), glebius, melifaroSponsored by: The FreeBSD FoundationDiffe
PCBGROUP.9: remove obsolete man pageThe PCBGROUP option and KPI were removed entirely in 93c67567e015.Reviewed by: pauamma (manpages), glebius, melifaroSponsored by: The FreeBSD FoundationDifferential Revision: https://reviews.freebsd.org/D38187
Update Makefile.depend filesUpdate a bunch of Makefile.depend files asa result of adding Makefile.depend.options filesReviewed by: bdreweryMFC after: 1 weekSponsored by: Juniper NetworksDi
Update Makefile.depend filesUpdate a bunch of Makefile.depend files asa result of adding Makefile.depend.options filesReviewed by: bdreweryMFC after: 1 weekSponsored by: Juniper NetworksDifferential Revision: https://reviews.freebsd.org/D22494
DIRDEPS_BUILD: Update dependencies.Sponsored by: Dell EMC Isilon
DIRDEPS_BUILD: Connect more libraries.Sponsored by: Dell EMC Isilon
librss: simplify some NULL checks.MFC after: 1 week
[rss] manpage improvements.Submitted by: gallatin
[rss] install the header file.Submitted by: gallatin
Add librss, a simple wrapper around RSS APIs so applications can begin auto-tuning.I've used this in a handful of RSS test applications. It is just somevery simple functions to fetch the RSS conf
Add librss, a simple wrapper around RSS APIs so applications can begin auto-tuning.I've used this in a handful of RSS test applications. It is just somevery simple functions to fetch the RSS configuration, query the per-bucketCPU set, and mark sockets as local to an RSS bucket. It should be sufficientfor both thread-based and process-based workloads.(Yes, I wrote a manpage.)This is based on some early RSS API and wrapper API work I did whilstI was at Netflix. Thanks to Netflix for the very original work thatspawned this; thanks to Peter Grehan for his feedback about RSS APIsand thanks to Jack Vogel and Navdeep Parhar for the NIC-facing side of theAPIs. These fed into the simple userland API I wrote up here.Reviewed by: gallatin