diff options
| author | 2008-06-12 20:24:06 +0000 | |
|---|---|---|
| committer | 2008-06-12 20:24:06 +0000 | |
| commit | 65faa1c0afa8dbc1a4e927d1ae9a8b451c7a984d (patch) | |
| tree | 0c2302542968b6e51971967df78f4dcc80005edb /sys/nfs/nfs_vfsops.c | |
| parent | Enable /dev/video* for all USB capable archs. MAKEDEV bits will follow (diff) | |
| download | wireguard-openbsd-65faa1c0afa8dbc1a4e927d1ae9a8b451c7a984d.tar.xz wireguard-openbsd-65faa1c0afa8dbc1a4e927d1ae9a8b451c7a984d.zip | |
Remove now-vestigial bpos pointer from NFS. For building outgoing
NFS mbufs, mbufs now contain all their internal buffer state internally,
the way god intended.
ok thib@
testing johan@ (and possibly merdely@; this diff's been around for a bit...)
Diffstat (limited to 'sys/nfs/nfs_vfsops.c')
| -rw-r--r-- | sys/nfs/nfs_vfsops.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/nfs/nfs_vfsops.c b/sys/nfs/nfs_vfsops.c index bed19e20aac..86e90cddc9d 100644 --- a/sys/nfs/nfs_vfsops.c +++ b/sys/nfs/nfs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_vfsops.c,v 1.73 2008/06/11 04:52:27 blambert Exp $ */ +/* $OpenBSD: nfs_vfsops.c,v 1.74 2008/06/12 20:24:06 blambert Exp $ */ /* $NetBSD: nfs_vfsops.c,v 1.46.4.1 1996/05/25 22:40:35 fvdl Exp $ */ /* @@ -114,7 +114,7 @@ nfs_statfs(mp, sbp, p) caddr_t cp; u_int32_t *tl; int32_t t1; - caddr_t bpos, dpos, cp2; + caddr_t dpos, cp2; struct nfsmount *nmp = VFSTONFS(mp); int error = 0, v3 = (nmp->nm_flag & NFSMNT_NFSV3), retattr; struct mbuf *mreq, *mrep = NULL, *md, *mb; @@ -189,7 +189,7 @@ nfs_fsinfo(nmp, vp, cred, p) caddr_t cp; int32_t t1; u_int32_t *tl, pref, max; - caddr_t bpos, dpos, cp2; + caddr_t dpos, cp2; int error = 0, retattr; struct mbuf *mreq, *mrep, *md, *mb; |
