Deleted Added
full compact
buf.h (7399) buf.h (7430)
1/*
2 * Copyright (c) 1982, 1986, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

--- 22 unchanged lines hidden (view full) ---

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)buf.h 8.7 (Berkeley) 1/21/94
1/*
2 * Copyright (c) 1982, 1986, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

--- 22 unchanged lines hidden (view full) ---

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)buf.h 8.7 (Berkeley) 1/21/94
39 * $Id: buf.h,v 1.14 1995/03/25 08:55:02 davidg Exp $
39 * $Id: buf.h,v 1.15 1995/03/26 23:29:06 davidg Exp $
40 */
41
42#ifndef _SYS_BUF_H_
43#define _SYS_BUF_H_
44#include <sys/queue.h>
45
46#define NOLIST ((struct buf *)0x87654321)
47

--- 192 unchanged lines hidden (view full) ---

240void vunmapbuf __P((struct buf *));
241void relpbuf __P((struct buf *));
242void brelvp __P((struct buf *));
243void bgetvp __P((struct vnode *, struct buf *));
244void pbgetvp __P((struct vnode *, struct buf *));
245void pbrelvp __P((struct buf *));
246void reassignbuf __P((struct buf *, struct vnode *));
247struct buf *trypbuf __P((void));
40 */
41
42#ifndef _SYS_BUF_H_
43#define _SYS_BUF_H_
44#include <sys/queue.h>
45
46#define NOLIST ((struct buf *)0x87654321)
47

--- 192 unchanged lines hidden (view full) ---

240void vunmapbuf __P((struct buf *));
241void relpbuf __P((struct buf *));
242void brelvp __P((struct buf *));
243void bgetvp __P((struct vnode *, struct buf *));
244void pbgetvp __P((struct vnode *, struct buf *));
245void pbrelvp __P((struct buf *));
246void reassignbuf __P((struct buf *, struct vnode *));
247struct buf *trypbuf __P((void));
248void vm_bounce_alloc __P((struct buf *));
249void vm_bounce_free __P((struct buf *));
250vm_offset_t vm_bounce_kva_alloc __P((int));
251void vm_bounce_kva_alloc_free __P((vm_offset_t, int));
248__END_DECLS
249#endif
250#endif /* !_SYS_BUF_H_ */
252__END_DECLS
253#endif
254#endif /* !_SYS_BUF_H_ */