Grammar, markup.

This commit is contained in:
jruoho 2010-06-08 04:08:37 +00:00
parent 3f1d9ecd93
commit e5f1d72bb7

View File

@ -1,4 +1,4 @@
.\" $NetBSD: bpf.9,v 1.1 2010/01/20 12:09:39 pooka Exp $
.\" $NetBSD: bpf.9,v 1.2 2010/06/08 04:08:37 jruoho Exp $
.\"
.\" Copyright (c) 2010 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -24,7 +24,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd January 20, 2010
.Dd June 8, 2010
.Dt BPF 9
.Os
.Sh NAME
@ -55,9 +55,12 @@ struct bpf_ops {
.Pp
This vector is found from
.Vt struct bpf_ops *
.Va bpf_ops ,
and is either a stub implementation or a real implementation depending
on if bpf is absent or present in the kernel, respectively.
.Va bpf_ops .
It is either a
.Dq stub
implementation or a real implementation, depending on whether
.Nm
is absent or present in the kernel, respectively.
.Sh CODE REFERENCES
This section describes places within the
.Nx
@ -70,6 +73,7 @@ The
implementation is located in
.Pa sys/net/bpf.c ,
the stub implementation is in
.Pa sys/net/bpf_stub.c
and the interface is defined in
.Pa sys/net/bpf.h .
.Pa sys/net/bpf_stub.c ,
and
.Pa sys/net/bpf.h
describes the interface.