Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 24 Nov 2010 05:50:19 +0000 (UTC)
From:      Maxim Konovalov <maxim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r215792 - head/sys/net
Message-ID:  <201011240550.oAO5oJYi056656@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: maxim
Date: Wed Nov 24 05:50:19 2010
New Revision: 215792
URL: http://svn.freebsd.org/changeset/base/215792

Log:
  o Swap descriptions for net.bpf.bufsize and net.bpf.maxbufsize.
  
  PR:		misc/152531
  MFC after:	1 week

Modified:
  head/sys/net/bpf_buffer.c

Modified: head/sys/net/bpf_buffer.c
==============================================================================
--- head/sys/net/bpf_buffer.c	Wed Nov 24 05:37:12 2010	(r215791)
+++ head/sys/net/bpf_buffer.c	Wed Nov 24 05:50:19 2010	(r215792)
@@ -88,10 +88,10 @@ __FBSDID("$FreeBSD$");
 
 static int bpf_bufsize = 4096;
 SYSCTL_INT(_net_bpf, OID_AUTO, bufsize, CTLFLAG_RW,
-    &bpf_bufsize, 0, "Maximum capture buffer size in bytes");
+    &bpf_bufsize, 0, "Default capture buffer size in bytes");
 static int bpf_maxbufsize = BPF_MAXBUFSIZE;
 SYSCTL_INT(_net_bpf, OID_AUTO, maxbufsize, CTLFLAG_RW,
-    &bpf_maxbufsize, 0, "Default capture buffer in bytes");
+    &bpf_maxbufsize, 0, "Maximum capture buffer in bytes");
 
 void
 bpf_buffer_alloc(struct bpf_d *d)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201011240550.oAO5oJYi056656>