Date: Tue, 11 Mar 2008 08:33:57 GMT From: Robert Watson <rwatson@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 137386 for review Message-ID: <200803110833.m2B8Xvcq050188@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=137386 Change 137386 by rwatson@rwatson_cinnamon on 2008/03/11 08:33:27 Remove duplicate definitions of bpf default and maximum buffer sizes that got reintroduced during an integration at some point. Affected files ... .. //depot/projects/zcopybpf/src/sys/net/bpf.c#48 edit Differences ... ==== //depot/projects/zcopybpf/src/sys/net/bpf.c#48 (text+ko) ==== @@ -123,12 +123,6 @@ static int bpf_stats_sysctl(SYSCTL_HANDLER_ARGS); SYSCTL_NODE(_net, OID_AUTO, bpf, CTLFLAG_RW, 0, "bpf sysctl"); -static int bpf_bufsize = 4096; -SYSCTL_INT(_net_bpf, OID_AUTO, bufsize, CTLFLAG_RW, - &bpf_bufsize, 0, "Default bpf buffer size"); -static int bpf_maxbufsize = BPF_MAXBUFSIZE; -SYSCTL_INT(_net_bpf, OID_AUTO, maxbufsize, CTLFLAG_RW, - &bpf_maxbufsize, 0, "Maximum bpf buffer size"); static int bpf_maxinsns = BPF_MAXINSNS; SYSCTL_INT(_net_bpf, OID_AUTO, maxinsns, CTLFLAG_RW, &bpf_maxinsns, 0, "Maximum bpf program instructions");
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200803110833.m2B8Xvcq050188>