diff options
author | Pedro Martelletto <pedro@cvs.openbsd.org> | 2004-11-30 14:48:01 +0000 |
---|---|---|
committer | Pedro Martelletto <pedro@cvs.openbsd.org> | 2004-11-30 14:48:01 +0000 |
commit | c26697807227f36b669fd75c51edc0e31eae3397 (patch) | |
tree | 8c127c3c55de7d09ff67cf3edfc79a6f9131bd19 /share | |
parent | 703980863485c30475f89e9ac2e03a9585191625 (diff) |
breada() is gone, help and ok jmc@
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/Makefile | 4 | ||||
-rw-r--r-- | share/man/man9/buffercache.9 | 19 |
2 files changed, 3 insertions, 20 deletions
diff --git a/share/man/man9/Makefile b/share/man/man9/Makefile index aac63c912a9..8c79c117705 100644 --- a/share/man/man9/Makefile +++ b/share/man/man9/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.85 2004/11/28 02:29:16 deraadt Exp $ +# $OpenBSD: Makefile,v 1.86 2004/11/30 14:47:59 pedro Exp $ # $NetBSD: Makefile,v 1.4 1996/01/09 03:23:01 thorpej Exp $ # Makefile for section 9 (kernel function and variable) manual pages. @@ -30,7 +30,7 @@ MLINKS+=autoconf.9 config_init.9 autoconf.9 config_search.9 \ autoconf.9 config_attach.9 autoconf.9 config_detach.9 \ autoconf.9 config_activate.9 autoconf.9 config_deactivate.9 \ autoconf.9 config_defer.9 -MLINKS+=buffercache.9 bread.9 buffercache.9 breada.9 buffercache.9 breadn.9 \ +MLINKS+=buffercache.9 bread.9 buffercache.9 breadn.9 \ buffercache.9 bwrite.9 buffercache.9 bawrite.9 \ buffercache.9 bdwrite.9 buffercache.9 getblk.9 \ buffercache.9 geteblk.9 buffercache.9 incore.9 \ diff --git a/share/man/man9/buffercache.9 b/share/man/man9/buffercache.9 index 3e97837bfc9..90b255723ff 100644 --- a/share/man/man9/buffercache.9 +++ b/share/man/man9/buffercache.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: buffercache.9,v 1.2 2004/10/16 01:23:34 pedro Exp $ +.\" $OpenBSD: buffercache.9,v 1.3 2004/11/30 14:48:00 pedro Exp $ .\" $NetBSD: buffercache.9,v 1.13 2004/06/25 15:31:37 wiz Exp $ .\" .\" Copyright (c)2003 YAMAMOTO Takashi, @@ -108,7 +108,6 @@ .Sh NAME .Nm buffercache , .Nm bread , -.Nm breada , .Nm breadn , .Nm bwrite , .Nm bawrite , @@ -132,10 +131,6 @@ "daddr_t rablks[]" "int rasizes[]" "int nrablks" \ "struct ucred *cred" "struct buf **bpp" .Ft int -.Fn breada "struct vnode *vp" "daddr_t blkno" "int size" \ -"daddr_t rablkno" "int rabsize" \ -"struct ucred *cred" "struct buf **bpp" -.Ft int .Fn bwrite "struct buf *bp" .Ft void .Fn bawrite "struct buf *bp" @@ -231,18 +226,6 @@ and The read-ahead blocks aren't returned, but are available in cache for future accesses. .\" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -.It Fn breada "vp" "blkno" "size" "rablkno" "rabsize" "cred" "bpp" -Same as -.Fn breadn -with single block read-ahead. -This function is for compatibility with old filesystem code and -shouldn't be used by new ones. -It simply calls -.Fn breadn -with -.Fa nrablks -set to 1. -.\" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .It Fn bwrite "bp" Write a block. Start I/O for write using |