diff options
author | Pedro Martelletto <pedro@cvs.openbsd.org> | 2007-06-01 23:35:43 +0000 |
---|---|---|
committer | Pedro Martelletto <pedro@cvs.openbsd.org> | 2007-06-01 23:35:43 +0000 |
commit | 442f64cf0df0d38e9f4cd280a06fe8270dd85d1b (patch) | |
tree | 137e391ccaa1968b8a3f024d2f15f75f9690fa7e /sys | |
parent | 09af5bcdcb0fa7ee806d3fb860934717fa7a2f2c (diff) |
Uninline bio_doread(), okay art@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/vfs_bio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c index 572873eb5ed..c756d52e1d0 100644 --- a/sys/kern/vfs_bio.c +++ b/sys/kern/vfs_bio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_bio.c,v 1.93 2007/06/01 17:34:08 dlg Exp $ */ +/* $OpenBSD: vfs_bio.c,v 1.94 2007/06/01 23:35:42 pedro Exp $ */ /* $NetBSD: vfs_bio.c,v 1.44 1996/06/11 11:15:36 pk Exp $ */ /*- @@ -103,7 +103,7 @@ void buf_put(struct buf *); #define binsheadfree(bp, dp) TAILQ_INSERT_HEAD(dp, bp, b_freelist) #define binstailfree(bp, dp) TAILQ_INSERT_TAIL(dp, bp, b_freelist) -static __inline struct buf *bio_doread(struct vnode *, daddr64_t, int, int); +struct buf *bio_doread(struct vnode *, daddr64_t, int, int); struct buf *getnewbuf(size_t); int buf_wait(int, int); void buf_init(struct buf *, int); @@ -360,7 +360,7 @@ bufinit(void) maxcleanpages = locleanpages; } -static __inline struct buf * +struct buf * bio_doread(struct vnode *vp, daddr64_t blkno, int size, int async) { struct buf *bp; |