NetBSD/sys/adosfs/adosfs.h

174 lines
6.1 KiB
C
Raw Normal View History

2002-05-14 03:50:32 +04:00
/* $NetBSD: adosfs.h,v 1.20 2002/05/13 23:51:19 matt Exp $ */
/*
* Copyright (c) 1994 Christian E. Hopps
* Copyright (c) 1996 Matthias Scheler
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Christian E. Hopps.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN 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 POSSIBILITY OF SUCH DAMAGE.
*/
1998-03-01 05:20:01 +03:00
/*
* Arguments to mount amigados filesystems.
*/
struct adosfs_args {
char *fspec; /* blocks special holding the fs to mount */
struct export_args export; /* network export information */
1998-08-09 21:54:50 +04:00
uid_t uid; /* uid that owns adosfs files */
gid_t gid; /* gid that owns adosfs files */
mode_t mask; /* mask to be applied for adosfs perms */
1998-03-01 05:20:01 +03:00
};
#ifdef _KERNEL
#include <miscfs/genfs/genfs_node.h>
/*
* Amigados datestamp. (from 1/1/1978 00:00:00 local)
*/
struct datestamp {
u_int32_t days;
u_int32_t mins;
u_int32_t ticks; /* 20000 * (ticks % 50) = useconds */
/* ticks / 50 = seconds */
};
enum anode_type { AROOT, ADIR, AFILE, ALDIR, ALFILE, ASLINK };
/*
* similar to inode's, we use to represent:
* the root dir, reg dirs, reg files and extension blocks
* note the ``tab'' is a hash table for r/d, and a data block
* table for f/e. it is always ANODETABSZ(ap) bytes in size.
*/
struct anode {
a whole bunch of changes to improve performance and robustness under load: - remove special treatment of pager_map mappings in pmaps. this is required now, since I've removed the globals that expose the address range. pager_map now uses pmap_kenter_pa() instead of pmap_enter(), so there's no longer any need to special-case it. - eliminate struct uvm_vnode by moving its fields into struct vnode. - rewrite the pageout path. the pager is now responsible for handling the high-level requests instead of only getting control after a bunch of work has already been done on its behalf. this will allow us to UBCify LFS, which needs tighter control over its pages than other filesystems do. writing a page to disk no longer requires making it read-only, which allows us to write wired pages without causing all kinds of havoc. - use a new PG_PAGEOUT flag to indicate that a page should be freed on behalf of the pagedaemon when it's unlocked. this flag is very similar to PG_RELEASED, but unlike PG_RELEASED, PG_PAGEOUT can be cleared if the pageout fails due to eg. an indirect-block buffer being locked. this allows us to remove the "version" field from struct vm_page, and together with shrinking "loan_count" from 32 bits to 16, struct vm_page is now 4 bytes smaller. - no longer use PG_RELEASED for swap-backed pages. if the page is busy because it's being paged out, we can't release the swap slot to be reallocated until that write is complete, but unlike with vnodes we don't keep a count of in-progress writes so there's no good way to know when the write is done. instead, when we need to free a busy swap-backed page, just sleep until we can get it busy ourselves. - implement a fast-path for extending writes which allows us to avoid zeroing new pages. this substantially reduces cpu usage. - encapsulate the data used by the genfs code in a struct genfs_node, which must be the first element of the filesystem-specific vnode data for filesystems which use genfs_{get,put}pages(). - eliminate many of the UVM pagerops, since they aren't needed anymore now that the pager "put" operation is a higher-level operation. - enhance the genfs code to allow NFS to use the genfs_{get,put}pages instead of a modified copy. - clean up struct vnode by removing all the fields that used to be used by the vfs_cluster.c code (which we don't use anymore with UBC). - remove kmem_object and mb_object since they were useless. instead of allocating pages to these objects, we now just allocate pages with no object. such pages are mapped in the kernel until they are freed, so we can use the mapping to find the page to free it. this allows us to remove splvm() protection in several places. The sum of all these changes improves write throughput on my decstation 5000/200 to within 1% of the rate of NetBSD 1.5 and reduces the elapsed time for "make release" of a NetBSD 1.5 source tree on my 128MB pc to 10% less than a 1.5 kernel took.
2001-09-16 00:36:31 +04:00
struct genfs_node gnode;
LIST_ENTRY(anode) link;
enum anode_type type;
char name[31]; /* (r/d/f) name for object */
struct datestamp mtimev; /* (r) volume modified */
struct datestamp created; /* (r) volume created */
struct datestamp mtime; /* (r/d/f) last modified */
1995-01-18 12:17:32 +03:00
struct adosfsmount *amp; /* owner file system */
struct vnode *vp; /* owner vnode */
u_long fsize; /* (f) size of file in bytes */
u_long block; /* block num */
u_long pblock; /* (d/f/e) parent block */
u_long hashf; /* (d/f) hash forward */
u_long extb; /* (f/e) extension block number */
u_long linkto; /* (hd/hf) header this link points at */
u_long linknext; /* (d/f/hd/hf) next link (or head) in chain */
u_long lastlindblk; /* (f/hf) last logical indirect block */
u_long lastindblk; /* (f/hf) last indirect block read */
u_long *tab; /* (r/d) hash table */
int *tabi; /* (r/d) table info */
int ntabent; /* (r/d) number of entries in table */
int nwords; /* size of blocks in long words */
int adprot; /* (d/f) amigados protection bits */
uid_t uid; /* (d/f) uid of directory/file */
gid_t gid; /* (d/f) gid of directory/file */
int flags; /* misc flags */
char *slinkto; /* name of file or dir */
};
#define VTOA(vp) ((struct anode *)(vp)->v_data)
#define ATOV(ap) ((ap)->vp)
#define ANODETABSZ(ap) (((ap)->nwords - 56) * sizeof(long))
#define ANODETABENT(ap) ((ap)->nwords - 56)
#define ANODENDATBLKENT(ap) ((ap)->nwords - 56)
/*
* mount data
*/
#define ANODEHASHSZ (512)
1995-01-18 12:17:32 +03:00
struct adosfsmount {
LIST_HEAD(anodechain, anode) anodetab[ANODEHASHSZ];
struct mount *mp; /* owner mount */
u_int32_t dostype; /* type of volume */
u_long rootb; /* root block number */
u_long secsperblk; /* sectors per block */
u_long bsize; /* size of blocks */
u_long nwords; /* size of blocks in long words */
u_long dbsize; /* data bytes per block */
uid_t uid; /* uid of mounting user */
gid_t gid; /* gid of mounting user */
u_long mask; /* mode mask */
struct vnode *devvp; /* blk device mounted on */
struct vnode *rootvp; /* out root vnode */
struct netexport export;
u_long *bitmap; /* allocation bitmap */
u_long numblks; /* number of usable blocks */
u_long freeblks; /* number of free blocks */
};
1998-03-01 05:20:01 +03:00
1995-01-18 12:17:32 +03:00
#define VFSTOADOSFS(mp) ((struct adosfsmount *)(mp)->mnt_data)
#define IS_FFS(amp) ((amp)->dostype & 1)
#define IS_INTER(amp) (((amp)->dostype & 7) > 1)
/*
* AmigaDOS block stuff.
*/
#define BBOFF (0)
#define BPT_SHORT ((u_int32_t)2)
#define BPT_DATA ((u_int32_t)8)
#define BPT_LIST ((u_int32_t)16)
#define BST_RDIR ((u_int32_t)1)
#define BST_UDIR ((u_int32_t)2)
#define BST_SLINK ((u_int32_t)3)
#define BST_LDIR ((u_int32_t)4)
#define BST_FILE ((u_int32_t)-3)
#define BST_LFILE ((u_int32_t)-4)
#define OFS_DATA_OFFSET (24)
extern struct pool adosfs_node_pool;
/*
* utility protos
*/
#if BYTE_ORDER != BIG_ENDIAN
u_int32_t adoswordn __P((struct buf *, int));
#else
#define adoswordn(bp,wn) (*((u_int32_t *)(bp)->b_data + (wn)))
#endif
u_int32_t adoscksum __P((struct buf *, int));
int adoscaseequ __P((const u_char *, const u_char *, int, int));
int adoshash __P((const u_char *, int, int, int));
1996-02-09 22:06:38 +03:00
int adunixprot __P((int));
int adosfs_getblktype __P((struct adosfsmount *, struct buf *));
1994-06-18 00:06:05 +04:00
struct vnode *adosfs_ahashget __P((struct mount *, ino_t));
1995-01-18 12:17:32 +03:00
void adosfs_ainshash __P((struct adosfsmount *, struct anode *));
1994-06-18 00:06:05 +04:00
void adosfs_aremhash __P((struct anode *));
1996-02-09 22:06:38 +03:00
int adosfs_lookup __P((void *));
1994-06-18 00:06:05 +04:00
2002-05-14 03:50:32 +04:00
extern int (**adosfs_vnodeop_p) __P((void *));
1998-03-01 05:20:01 +03:00
#endif /* _KERNEL */