OpenCores
URL https://opencores.org/ocsvn/eco32/eco32/trunk

Subversion Repositories eco32

[/] [eco32/] [tags/] [eco32-0.22/] [disk/] [tools/] [fs-NetBSD/] [makefs/] [buf.h] - Diff between revs 17 and 21

Only display areas with differences | Details | Blame | View Log

Rev 17 Rev 21
/*      $NetBSD: buf.h,v 1.2 2001/11/02 03:12:49 lukem Exp $    */
/*      $NetBSD: buf.h,v 1.2 2001/11/02 03:12:49 lukem Exp $    */
 
 
/*
/*
 * Copyright (c) 2001 Wasabi Systems, Inc.
 * Copyright (c) 2001 Wasabi Systems, Inc.
 * All rights reserved.
 * All rights reserved.
 *
 *
 * Written by Luke Mewburn for Wasabi Systems, Inc.
 * Written by Luke Mewburn for Wasabi Systems, Inc.
 *
 *
 * Redistribution and use in source and binary forms, with or without
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * modification, are permitted provided that the following conditions
 * are met:
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *    must display the following acknowledgement:
 *      This product includes software developed for the NetBSD Project by
 *      This product includes software developed for the NetBSD Project by
 *      Wasabi Systems, Inc.
 *      Wasabi Systems, Inc.
 * 4. The name of Wasabi Systems, Inc. may not be used to endorse
 * 4. The name of Wasabi Systems, Inc. may not be used to endorse
 *    or promote products derived from this software without specific prior
 *    or promote products derived from this software without specific prior
 *    written permission.
 *    written permission.
 *
 *
 * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
 * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 * POSSIBILITY OF SUCH DAMAGE.
 */
 */
 
 
#ifndef _FFS_BUF_H
#ifndef _FFS_BUF_H
#define _FFS_BUF_H
#define _FFS_BUF_H
 
 
#include <sys/param.h>
#include <sys/param.h>
#include <sys/queue.h>
#include <sys/queue.h>
 
 
struct buf {
struct buf {
        void *          b_data;
        void *          b_data;
        long            b_bufsize;
        long            b_bufsize;
        long            b_bcount;
        long            b_bcount;
        daddr_t         b_blkno;
        daddr_t         b_blkno;
        daddr_t         b_lblkno;
        daddr_t         b_lblkno;
        int             b_fd;
        int             b_fd;
        struct fs *     b_fs;
        struct fs *     b_fs;
 
 
        TAILQ_ENTRY(buf)        b_tailq;
        TAILQ_ENTRY(buf)        b_tailq;
};
};
 
 
void            bcleanup(void);
void            bcleanup(void);
int             bread(int, struct fs *, daddr_t, int, struct buf **);
int             bread(int, struct fs *, daddr_t, int, struct buf **);
void            brelse(struct buf *);
void            brelse(struct buf *);
int             bwrite(struct buf *);
int             bwrite(struct buf *);
struct buf *    getblk(int, struct fs *, daddr_t, int);
struct buf *    getblk(int, struct fs *, daddr_t, int);
 
 
#define bdwrite(bp)     bwrite(bp)
#define bdwrite(bp)     bwrite(bp)
#define clrbuf(bp)      memset((bp)->b_data, 0, (u_int)(bp)->b_bcount)
#define clrbuf(bp)      memset((bp)->b_data, 0, (u_int)(bp)->b_bcount)
 
 
#endif  /* _FFS_BUF_H */
#endif  /* _FFS_BUF_H */
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.