diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-07-13 19:58:50 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-07-13 19:58:50 +0000 |
commit | f38174d4c5cd4d7d28ef03e36dbd8327b6ef6d75 (patch) | |
tree | 2131110448e168e0db9fa940d5b14099289cf4fe /libdiskfs/priv.h | |
parent | 5f8a317492cf2dc67de62231ae7674bd988fb875 (diff) | |
download | hurd-f38174d4c5cd4d7d28ef03e36dbd8327b6ef6d75.tar.gz hurd-f38174d4c5cd4d7d28ef03e36dbd8327b6ef6d75.tar.bz2 hurd-f38174d4c5cd4d7d28ef03e36dbd8327b6ef6d75.zip |
Formerly priv.h.~12~
Diffstat (limited to 'libdiskfs/priv.h')
-rw-r--r-- | libdiskfs/priv.h | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/libdiskfs/priv.h b/libdiskfs/priv.h index 149872b0..a29bb70f 100644 --- a/libdiskfs/priv.h +++ b/libdiskfs/priv.h @@ -68,9 +68,22 @@ end_using_protid_port (struct protid *cred) to write from or fill on read. OFFSET is the absolute address (-1 not permitted here); AMT is the size of the read/write to perform; DIR is set for writing and clear for reading. The inode must - be locked. */ + be locked. If NOTIME is set, then don't update the access or + modify times on the file. */ error_t _diskfs_rdwr_internal (struct node *np, char *data, int offset, - int amt, int dir); + int amt, int dir, int notime); + +/* Clean routine for control port. */ +void _diskfs_control_clean (void *); + +/* Number of outstanding PT_CTL ports. */ +extern int _diskfs_ncontrol_ports; + +/* Lock for _diskfs_ncontrol_ports. */ +extern spin_lock_t _diskfs_control_lock; + +/* Only temporary, until fsys_getroot/fsys_startup interface is fixed. */ +extern file_t _diskfs_dotdot_file; /* This macro locks the node associated with PROTID, and then evaluates the expression OPERATION; then it syncs the inode @@ -96,6 +109,10 @@ error_t _diskfs_rdwr_internal (struct node *np, char *data, int offset, return err; \ }) -#define HONORED_STATE_MODES (O_APPEND|O_ASYNC|O_FSYNC|O_NONBLOCK) +/* Bits the user is permitted to set with io_*_openmodes */ +#define HONORED_STATE_MODES (O_APPEND|O_ASYNC|O_FSYNC|O_NONBLOCK|O_NOATIME) + +/* Bits that are turned off after open */ +#define OPENONLY_STATE_MODES (O_CREAT|O_EXCL|O_NOLINK|O_NOTRANS|O_NONBLOCK) #endif |