freebsd-skq/sys
rwatson 2bab695560 Reimplement the netisr framework in order to support parallel netisr
threads:

- Support up to one netisr thread per CPU, each processings its own
  workstream, or set of per-protocol queues.  Threads may be bound
  to specific CPUs, or allowed to migrate, based on a global policy.

  In the future it would be desirable to support topology-centric
  policies, such as "one netisr per package".

- Allow each protocol to advertise an ordering policy, which can
  currently be one of:

  NETISR_POLICY_SOURCE: packets must maintain ordering with respect to
    an implicit or explicit source (such as an interface or socket).

  NETISR_POLICY_FLOW: make use of mbuf flow identifiers to place work,
    as well as allowing protocols to provide a flow generation function
    for mbufs without flow identifers (m2flow).  Falls back on
    NETISR_POLICY_SOURCE if now flow ID is available.

  NETISR_POLICY_CPU: allow protocols to inspect and assign a CPU for
    each packet handled by netisr (m2cpuid).

- Provide utility functions for querying the number of workstreams
  being used, as well as a mapping function from workstream to CPU ID,
  which protocols may use in work placement decisions.

- Add explicit interfaces to get and set per-protocol queue limits, and
  get and clear drop counters, which query data or apply changes across
  all workstreams.

- Add a more extensible netisr registration interface, in which
  protocols declare 'struct netisr_handler' structures for each
  registered NETISR_ type.  These include name, handler function,
  optional mbuf to flow ID function, optional mbuf to CPU ID function,
  queue limit, and ordering policy.  Padding is present to allow these
  to be expanded in the future.  If no queue limit is declared, then
  a default is used.

- Queue limits are now per-workstream, and raised from the previous
  IFQ_MAXLEN default of 50 to 256.

- All protocols are updated to use the new registration interface, and
  with the exception of netnatm, default queue limits.  Most protocols
  register as NETISR_POLICY_SOURCE, except IPv4 and IPv6, which use
  NETISR_POLICY_FLOW, and will therefore take advantage of driver-
  generated flow IDs if present.

- Formalize a non-packet based interface between interface polling and
  the netisr, rather than having polling pretend to be two protocols.
  Provide two explicit hooks in the netisr worker for start and end
  events for runs: netisr_poll() and netisr_pollmore(), as well as a
  function, netisr_sched_poll(), to allow the polling code to schedule
  netisr execution.  DEVICE_POLLING still embeds single-netisr
  assumptions in its implementation, so for now if it is compiled into
  the kernel, a single and un-bound netisr thread is enforced
  regardless of tunable configuration.

In the default configuration, the new netisr implementation maintains
the same basic assumptions as the previous implementation: a single,
un-bound worker thread processes all deferred work, and direct dispatch
is enabled by default wherever possible.

Performance measurement shows a marginal performance improvement over
the old implementation due to the use of batched dequeue.

An rmlock is used to synchronize use and registration/unregistration
using the framework; currently, synchronized use is disabled
(replicating current netisr policy) due to a measurable 3%-6% hit in
ping-pong micro-benchmarking.  It will be enabled once further rmlock
optimization has taken place.  However, in practice, netisrs are
rarely registered or unregistered at runtime.

A new man page for netisr will follow, but since one doesn't currently
exist, it hasn't been updated.

This change is not appropriate for MFC, although the polling shutdown
handler should be merged to 7-STABLE.

Bump __FreeBSD_version.

Reviewed by:	bz
2009-06-01 10:41:38 +00:00
..
amd64 Place hostnames and similar information fully under the prison system. 2009-05-29 21:27:12 +00:00
arm maintain existing style 2009-05-30 18:23:55 +00:00
boot sys/boot/common.c 2009-06-01 01:02:30 +00:00
bsm
cam
cddl Allow the bootfs property to be set for raidz pools on FreeBSD. 2009-05-31 11:59:32 +00:00
compat Implement a variation of the socketpair() syscall which takes a flags 2009-05-31 12:16:31 +00:00
conf - Rename IP_NONLOCALOK IP socket option to IP_BINDANY, to be more consistent 2009-06-01 10:30:00 +00:00
contrib
crypto
ddb Place hostnames and similar information fully under the prison system. 2009-05-29 21:27:12 +00:00
dev According to Intel documentation (307013), 3Gbps mode is supported on 2009-06-01 07:05:52 +00:00
fs nfs_write() can use the recently introduced vfs_bio_set_valid() instead of 2009-05-31 20:18:02 +00:00
gdb
geom Crank the debug level necessary to display the "Label foo is removed" 2009-05-30 22:31:52 +00:00
gnu
i386 Fix the MP IPI code to differentiate between bitmapped IPIs and function IPIs. 2009-05-31 08:11:39 +00:00
ia64 Place hostnames and similar information fully under the prison system. 2009-05-29 21:27:12 +00:00
isa
kern Reimplement the netisr framework in order to support parallel netisr 2009-06-01 10:41:38 +00:00
kgssapi Place hostnames and similar information fully under the prison system. 2009-05-29 21:27:12 +00:00
libkern
mips
modules connect urtw(4) to the amd64/i386 build that it's not tested on the big 2009-06-01 02:37:06 +00:00
net Reimplement the netisr framework in order to support parallel netisr 2009-06-01 10:41:38 +00:00
net80211 distribute sysctl decls so global variables can be made static 2009-05-30 20:11:23 +00:00
netatalk Reimplement the netisr framework in order to support parallel netisr 2009-06-01 10:41:38 +00:00
netgraph s/usb2_/usb_/ on all typedefs for the USB stack. 2009-05-29 18:46:57 +00:00
netinet Reimplement the netisr framework in order to support parallel netisr 2009-06-01 10:41:38 +00:00
netinet6 Reimplement the netisr framework in order to support parallel netisr 2009-06-01 10:41:38 +00:00
netipsec Reimplement the netisr framework in order to support parallel netisr 2009-06-01 10:41:38 +00:00
netipx Reimplement the netisr framework in order to support parallel netisr 2009-06-01 10:41:38 +00:00
netnatm Reimplement the netisr framework in order to support parallel netisr 2009-06-01 10:41:38 +00:00
netncp
netsmb
nfs
nfsclient nfs_write() can use the recently introduced vfs_bio_set_valid() instead of 2009-05-31 20:18:02 +00:00
nfsserver Place hostnames and similar information fully under the prison system. 2009-05-29 21:27:12 +00:00
nlm Place hostnames and similar information fully under the prison system. 2009-05-29 21:27:12 +00:00
opencrypto
pc98
pci When user_frac in the polling subsystem is low it is going to busy the 2009-05-30 15:14:44 +00:00
powerpc Provide an analogous sysctl to hw.acpi.acline (dev.pmu.0.acline) to 2009-05-31 10:02:20 +00:00
rpc fix xdrmem_control to be safe in an if statement 2009-05-30 22:23:58 +00:00
security Make the rmlock(9) interface a bit more like the rwlock(9) interface: 2009-05-29 10:52:37 +00:00
sparc64 Place hostnames and similar information fully under the prison system. 2009-05-29 21:27:12 +00:00
sun4v Place hostnames and similar information fully under the prison system. 2009-05-29 21:27:12 +00:00
sys Reimplement the netisr framework in order to support parallel netisr 2009-06-01 10:41:38 +00:00
tools
ufs
vm Eliminate a stale comment and the two remaining uses of the "register" 2009-05-30 22:15:55 +00:00
xdr MFdevbranch 192944 2009-05-28 08:18:12 +00:00
xen Make ipi_cpu() function as intended. 2009-05-30 08:53:13 +00:00
Makefile