summaryrefslogtreecommitdiff
path: root/ufs
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-01-06 16:55:44 +0000
committerRoland McGrath <roland@gnu.org>1996-01-06 16:55:44 +0000
commit80e98f6a8f2bcf5878c7fd6d8e47ec3eae2cdcd0 (patch)
treef6db918ee22dcf75f5cf151459225ff77eb99579 /ufs
parent7b2bc176e23e7bfe59ffea60a70c3c553b4614bc (diff)
(diskpager, diskpagerport, disk_image): Variables removed.
Include <hurd/diskfs-pager.h> instead. (sync_disk_blocks): Use `disk_pager' in place of `diskpager->p'.
Diffstat (limited to 'ufs')
-rw-r--r--ufs/ufs.h25
1 files changed, 11 insertions, 14 deletions
diff --git a/ufs/ufs.h b/ufs/ufs.h
index 8771c372..0f310d1b 100644
--- a/ufs/ufs.h
+++ b/ufs/ufs.h
@@ -1,5 +1,5 @@
-/*
- Copyright (C) 1994, 1995 Free Software Foundation
+/*
+ Copyright (C) 1994, 1995, 1996 Free Software Foundation
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
@@ -32,7 +32,7 @@
/* #undef DONT_CACHE_MEMORY_OBJECTS */
-struct disknode
+struct disknode
{
ino_t number;
@@ -48,7 +48,7 @@ struct disknode
struct dirty_indir *dirty;
struct user_pager_info *fileinfo;
-};
+};
/* Identifies a particular block and where it's found
when interpreting indirect block structure. */
@@ -69,10 +69,10 @@ struct dirty_indir
struct dirty_indir *next;
};
-struct user_pager_info
+struct user_pager_info
{
struct node *np;
- enum pager_type
+ enum pager_type
{
DISK,
FILE_DATA,
@@ -81,8 +81,7 @@ struct user_pager_info
vm_prot_t max_prot;
};
-struct user_pager_info *diskpager;
-mach_port_t diskpagerport;
+#include <hurd/diskfs-pager.h>
extern vm_address_t zeroblock;
@@ -91,8 +90,6 @@ extern struct csum *csum;
int sblock_dirty;
int csum_dirty;
-void *disk_image;
-
spin_lock_t node2pagelock;
spin_lock_t alloclock;
@@ -111,7 +108,7 @@ enum compat_mode
/* If this is set, then this filesystem has two extensions:
1) directory entries include the type field.
- 2) symlink targets might be written directly in the di_db field
+ 2) symlink targets might be written directly in the di_db field
of the dinode. */
int direct_symlink_extension;
@@ -136,7 +133,7 @@ extern inline struct dinode *
dino (ino_t inum)
{
return (struct dinode *)
- (disk_image
+ (disk_image
+ fsaddr (sblock, ino_to_fsba (sblock, inum))
+ ino_to_fsbo (sblock, inum) * sizeof (struct dinode));
}
@@ -159,7 +156,7 @@ cg_locate (int ncg)
extern inline void
sync_disk_blocks (daddr_t blkno, size_t nbytes, int wait)
{
- pager_sync_some (diskpager->p, fsaddr (sblock, blkno), nbytes, wait);
+ pager_sync_some (disk_pager, fsaddr (sblock, blkno), nbytes, wait);
}
/* Sync an disk inode */
@@ -170,7 +167,7 @@ sync_dinode (int inum, int wait)
}
/* From alloc.c: */
-error_t ffs_alloc (struct node *, daddr_t, daddr_t, int, daddr_t *,
+error_t ffs_alloc (struct node *, daddr_t, daddr_t, int, daddr_t *,
struct protid *);
void ffs_blkfree(struct node *, daddr_t bno, long size);
daddr_t ffs_blkpref (struct node *, daddr_t, int, daddr_t *);