svn commit: r282428 - stable/9/sys/net

Alexander Motin mav at FreeBSD.org
Mon May 4 19:35:00 UTC 2015


Author: mav
Date: Mon May  4 19:34:59 2015
New Revision: 282428
URL: https://svnweb.freebsd.org/changeset/base/282428

Log:
  MFC r281765:
  Activate write-only optimization if bpf device opened with O_WRONLY.
  
  dhclient opens bpf as write-only to send packets. It never reads received
  packets from that descriptor, but processing them in kernel takes time.
  Especially much time takes packet timestamping on systems with expensive
  timecounter, such as bhyve guest, where network speed dropped in half.
  
  Sponsored by:	iXsystems, Inc.

Modified:
  stable/9/sys/net/bpf.c
Directory Properties:
  stable/9/   (props changed)
  stable/9/sys/   (props changed)
  stable/9/sys/net/   (props changed)

Modified: stable/9/sys/net/bpf.c
==============================================================================
--- stable/9/sys/net/bpf.c	Mon May  4 19:33:51 2015	(r282427)
+++ stable/9/sys/net/bpf.c	Mon May  4 19:34:59 2015	(r282428)
@@ -617,7 +617,7 @@ bpf_attachd(struct bpf_d *d, struct bpf_
 	 * Save sysctl value to protect from sysctl change
 	 * between reads
 	 */
-	op_w = V_bpf_optimize_writers;
+	op_w = V_bpf_optimize_writers || d->bd_writer;
 
 	if (d->bd_bif != NULL)
 		bpf_detachd_locked(d);
@@ -880,6 +880,8 @@ bpfopen(struct cdev *dev, int flags, int
 	 * particular buffer method.
 	 */
 	bpf_buffer_init(d);
+	if ((flags & FREAD) == 0)
+		d->bd_writer = 2;
 	d->bd_hbuf_in_use = 0;
 	d->bd_bufmode = BPF_BUFMODE_BUFFER;
 	d->bd_sig = SIGIO;


More information about the svn-src-all mailing list