1 #ifndef _LINUX_FS_H
2 #define _LINUX_FS_H
3
4 /*
5 * This file has definitions for some important file table
6 * structures etc.
7 */
8
9 #include <linux/config.h>
10 #include <linux/linkage.h>
11 #include <linux/limits.h>
12 #include <linux/wait.h>
13 #include <linux/types.h>
14 #include <linux/vfs.h>
15 #include <linux/net.h>
16 #include <linux/kdev_t.h>
17 #include <linux/ioctl.h>
18 #include <linux/list.h>
19 #include <linux/dcache.h>
20 #include <linux/stat.h>
21 #include <linux/cache.h>
22 #include <linux/stddef.h>
23 #include <linux/string.h>
24
25 #include <asm/atomic.h>
26 #include <asm/bitops.h>
27
28 struct poll_table_struct;
29
30
31 /*
32 * It's silly to have NR_OPEN bigger than NR_FILE, but you can change
33 * the file limit at runtime and only root can increase the per-process
34 * nr_file rlimit, so it's safe to set up a ridiculously high absolute
35 * upper limit on files-per-process.
36 *
37 * Some programs (notably those using select()) may have to be
38 * recompiled to take full advantage of the new limits..
39 */
40
41 /* Fixed constants first: */
42 #undef NR_OPEN
43 #define NR_OPEN (1024*1024) /* Absolute upper limit on fd num */
44 #define INR_OPEN 1024 /* Initial setting for nfile rlimits */
45
46 #define BLOCK_SIZE_BITS 10
47 #define BLOCK_SIZE (1<<BLOCK_SIZE_BITS)
48
49 /* And dynamically-tunable limits and defaults: */
50 struct files_stat_struct {
51 int nr_files; /* read only */
52 int nr_free_files; /* read only */
53 int max_files; /* tunable */
54 };
55 extern struct files_stat_struct files_stat;
56
57 struct inodes_stat_t {
58 int nr_inodes;
59 int nr_unused;
60 int dummy[5];
61 };
62 extern struct inodes_stat_t inodes_stat;
63
64 extern int leases_enable, dir_notify_enable, lease_break_time;
65
66 #define NR_FILE 8192 /* this can well be larger on a larger system */
67 #define NR_RESERVED_FILES 10 /* reserved for root */
68 #define NR_SUPER 256
69
70 #define MAY_EXEC 1
71 #define MAY_WRITE 2
72 #define MAY_READ 4
73
74 #define FMODE_READ 1
75 #define FMODE_WRITE 2
76
77 #define READ 0
78 #define WRITE 1
79 #define READA 2 /* read-ahead - don't block if no resources */
80 #define SPECIAL 4 /* For non-blockdevice requests in request queue */
81
82 #define SEL_IN 1
83 #define SEL_OUT 2
84 #define SEL_EX 4
85
86 /* public flags for file_system_type */
87 #define FS_REQUIRES_DEV 1
88 #define FS_NO_DCACHE 2 /* Only dcache the necessary things. */
89 #define FS_NO_PRELIM 4 /* prevent preloading of dentries, even if
90 * FS_NO_DCACHE is not set.
91 */
92 #define FS_SINGLE 8 /* Filesystem that can have only one superblock */
93 #define FS_NOMOUNT 16 /* Never mount from userland */
94 #define FS_LITTER 32 /* Keeps the tree in dcache */
95 #define FS_ODD_RENAME 32768 /* Temporary stuff; will go away as soon
96 * as nfs_rename() will be cleaned up
97 */
98 /*
99 * These are the fs-independent mount-flags: up to 32 flags are supported
100 */
101 #define MS_RDONLY 1 /* Mount read-only */
102 #define MS_NOSUID 2 /* Ignore suid and sgid bits */
103 #define MS_NODEV 4 /* Disallow access to device special files */
104 #define MS_NOEXEC 8 /* Disallow program execution */
105 #define MS_SYNCHRONOUS 16 /* Writes are synced at once */
106 #define MS_REMOUNT 32 /* Alter flags of a mounted FS */
107 #define MS_MANDLOCK 64 /* Allow mandatory locks on an FS */
108 #define MS_NOATIME 1024 /* Do not update access times. */
109 #define MS_NODIRATIME 2048 /* Do not update directory access times */
110 #define MS_BIND 4096
111 #define MS_MOVE 8192
112 #define MS_REC 16384
113 #define MS_VERBOSE 32768
114 #define MS_ACTIVE (1<<30)
115 #define MS_NOUSER (1<<31)
116
117 /*
118 * Superblock flags that can be altered by MS_REMOUNT
119 */
120 #define MS_RMT_MASK (MS_RDONLY|MS_SYNCHRONOUS|MS_MANDLOCK|MS_NOATIME|\
121 MS_NODIRATIME)
122
123 /*
124 * Old magic mount flag and mask
125 */
126 #define MS_MGC_VAL 0xC0ED0000
127 #define MS_MGC_MSK 0xffff0000
128
129 /* Inode flags - they have nothing to superblock flags now */
130
131 #define S_SYNC 1 /* Writes are synced at once */
132 #define S_NOATIME 2 /* Do not update access times */
133 #define S_QUOTA 4 /* Quota initialized for file */
134 #define S_APPEND 8 /* Append-only file */
135 #define S_IMMUTABLE 16 /* Immutable file */
136 #define S_DEAD 32 /* removed, but still open directory */
137 #define S_NOQUOTA 64 /* Inode is not counted to quota */
138
139 /*
140 * Note that nosuid etc flags are inode-specific: setting some file-system
141 * flags just means all the inodes inherit those flags by default. It might be
142 * possible to override it selectively if you really wanted to with some
143 * ioctl() that is not currently implemented.
144 *
145 * Exception: MS_RDONLY is always applied to the entire file system.
146 *
147 * Unfortunately, it is possible to change a filesystems flags with it mounted
148 * with files in use. This means that all of the inodes will not have their
149 * i_flags updated. Hence, i_flags no longer inherit the superblock mount
150 * flags, so these have to be checked separately. -- rmk@arm.uk.linux.org
151 */
152 #define __IS_FLG(inode,flg) ((inode)->i_sb->s_flags & (flg))
153
154 #define IS_RDONLY(inode) ((inode)->i_sb->s_flags & MS_RDONLY)
155 #define IS_SYNC(inode) (__IS_FLG(inode, MS_SYNCHRONOUS) || ((inode)->i_flags & S_SYNC))
156 #define IS_MANDLOCK(inode) __IS_FLG(inode, MS_MANDLOCK)
157
158 #define IS_QUOTAINIT(inode) ((inode)->i_flags & S_QUOTA)
159 #define IS_NOQUOTA(inode) ((inode)->i_flags & S_NOQUOTA)
160 #define IS_APPEND(inode) ((inode)->i_flags & S_APPEND)
161 #define IS_IMMUTABLE(inode) ((inode)->i_flags & S_IMMUTABLE)
162 #define IS_NOATIME(inode) (__IS_FLG(inode, MS_NOATIME) || ((inode)->i_flags & S_NOATIME))
163 #define IS_NODIRATIME(inode) __IS_FLG(inode, MS_NODIRATIME)
164
165 #define IS_DEADDIR(inode) ((inode)->i_flags & S_DEAD)
166
167 /* the read-only stuff doesn't really belong here, but any other place is
168 probably as bad and I don't want to create yet another include file. */
169
170 #define BLKROSET _IO(0x12,93) /* set device read-only (0 = read-write) */
171 #define BLKROGET _IO(0x12,94) /* get read-only status (0 = read_write) */
172 #define BLKRRPART _IO(0x12,95) /* re-read partition table */
173 #define BLKGETSIZE _IO(0x12,96) /* return device size /512 (long *arg) */
174 #define BLKFLSBUF _IO(0x12,97) /* flush buffer cache */
175 #define BLKRASET _IO(0x12,98) /* Set read ahead for block device */
176 #define BLKRAGET _IO(0x12,99) /* get current read ahead setting */
177 #define BLKFRASET _IO(0x12,100)/* set filesystem (mm/filemap.c) read-ahead */
178 #define BLKFRAGET _IO(0x12,101)/* get filesystem (mm/filemap.c) read-ahead */
179 #define BLKSECTSET _IO(0x12,102)/* set max sectors per request (ll_rw_blk.c) */
180 #define BLKSECTGET _IO(0x12,103)/* get max sectors per request (ll_rw_blk.c) */
181 #define BLKSSZGET _IO(0x12,104)/* get block device sector size */
182 #if 0
183 #define BLKPG _IO(0x12,105)/* See blkpg.h */
184 #define BLKELVGET _IOR(0x12,106,sizeof(blkelv_ioctl_arg_t))/* elevator get */
185 #define BLKELVSET _IOW(0x12,107,sizeof(blkelv_ioctl_arg_t))/* elevator set */
186 /* This was here just to show that the number is taken -
187 probably all these _IO(0x12,*) ioctls should be moved to blkpg.h. */
188 #endif
189 /* A jump here: 108-111 have been used for various private purposes. */
190 #define BLKBSZGET _IOR(0x12,112,sizeof(int))
191 #define BLKBSZSET _IOW(0x12,113,sizeof(int))
192 #define BLKGETSIZE64 _IOR(0x12,114,sizeof(u64)) /* return device size in bytes (u64 *arg) */
193
194 #define BMAP_IOCTL 1 /* obsolete - kept for compatibility */
195 #define FIBMAP _IO(0x00,1) /* bmap access */
196 #define FIGETBSZ _IO(0x00,2) /* get the block size used for bmap */
197
198 #ifdef __KERNEL__
199
200 #include <asm/semaphore.h>
201 #include <asm/byteorder.h>
202
203 extern void update_atime (struct inode *);
204 extern void update_mctime (struct inode *);
205 #define UPDATE_ATIME(inode) update_atime (inode)
206
207 extern void buffer_init(unsigned long);
208 extern void inode_init(unsigned long);
209 extern void mnt_init(unsigned long);
210 extern void files_init(unsigned long mempages);
211
212 /* bh state bits */
213 enum bh_state_bits {
214 BH_Uptodate, /* 1 if the buffer contains valid data */
215 BH_Dirty, /* 1 if the buffer is dirty */
216 BH_Lock, /* 1 if the buffer is locked */
217 BH_Req, /* 0 if the buffer has been invalidated */
218 BH_Mapped, /* 1 if the buffer has a disk mapping */
219 BH_New, /* 1 if the buffer is new and not yet written out */
220 BH_Async, /* 1 if the buffer is under end_buffer_io_async I/O */
221 BH_Wait_IO, /* 1 if we should write out this buffer */
222 BH_Launder, /* 1 if we can throttle on this buffer */
223 BH_Attached, /* 1 if b_inode_buffers is linked into a list */
224 BH_JBD, /* 1 if it has an attached journal_head */
225 BH_Sync, /* 1 if the buffer is a sync read */
226 BH_Delay, /* 1 if the buffer is delayed allocate */
227
228 BH_PrivateStart,/* not a state bit, but the first bit available
229 * for private allocation by other entities
230 */
231 };
232
233 #define MAX_BUF_PER_PAGE (PAGE_CACHE_SIZE / 512)
234
235 /*
236 * Try to keep the most commonly used fields in single cache lines (16
237 * bytes) to improve performance. This ordering should be
238 * particularly beneficial on 32-bit processors.
239 *
240 * We use the first 16 bytes for the data which is used in searches
241 * over the block hash lists (ie. getblk() and friends).
242 *
243 * The second 16 bytes we use for lru buffer scans, as used by
244 * sync_buffers() and refill_freelist(). -- sct
245 */
246 struct buffer_head {
247 /* First cache line: */
248 struct buffer_head *b_next; /* Hash queue list */
249 unsigned long b_blocknr; /* block number */
250 unsigned short b_size; /* block size */
251 unsigned short b_list; /* List that this buffer appears */
252 kdev_t b_dev; /* device (B_FREE = free) */
253
254 atomic_t b_count; /* users using this block */
255 kdev_t b_rdev; /* Real device */
256 unsigned long b_state; /* buffer state bitmap (see above) */
257 unsigned long b_flushtime; /* Time when (dirty) buffer should be written */
258
259 struct buffer_head *b_next_free;/* lru/free list linkage */
260 struct buffer_head *b_prev_free;/* doubly linked list of buffers */
261 struct buffer_head *b_this_page;/* circular list of buffers in one page */
262 struct buffer_head *b_reqnext; /* request queue */
263
264 struct buffer_head **b_pprev; /* doubly linked list of hash-queue */
265 char * b_data; /* pointer to data block */
266 struct page *b_page; /* the page this bh is mapped to */
267 void (*b_end_io)(struct buffer_head *bh, int uptodate); /* I/O completion */
268 void *b_private; /* reserved for b_end_io */
269
270 unsigned long b_rsector; /* Real buffer location on disk */
271 wait_queue_head_t b_wait;
272
273 struct list_head b_inode_buffers; /* doubly linked list of inode dirty buffers */
274 };
275
276 typedef void (bh_end_io_t)(struct buffer_head *bh, int uptodate);
277 void init_buffer(struct buffer_head *, bh_end_io_t *, void *);
278
279 #define __buffer_state(bh, state) (((bh)->b_state & (1UL << BH_##state)) != 0)
280
281 #define buffer_uptodate(bh) __buffer_state(bh,Uptodate)
282 #define buffer_dirty(bh) __buffer_state(bh,Dirty)
283 #define buffer_locked(bh) __buffer_state(bh,Lock)
284 #define buffer_req(bh) __buffer_state(bh,Req)
285 #define buffer_mapped(bh) __buffer_state(bh,Mapped)
286 #define buffer_new(bh) __buffer_state(bh,New)
287 #define buffer_async(bh) __buffer_state(bh,Async)
288 #define buffer_launder(bh) __buffer_state(bh,Launder)
289 #define buffer_delay(bh) __buffer_state(bh,Delay)
290
291 #define bh_offset(bh) ((unsigned long)(bh)->b_data & ~PAGE_MASK)
292
293 extern void set_bh_page(struct buffer_head *bh, struct page *page, unsigned long offset);
294
295 #define touch_buffer(bh) mark_page_accessed(bh->b_page)
296
297
298 #include <linux/pipe_fs_i.h>
299 #include <linux/minix_fs_i.h>
300 #include <linux/ext2_fs_i.h>
301 #include <linux/ext3_fs_i.h>
302 #include <linux/hpfs_fs_i.h>
303 #include <linux/ntfs_fs_i.h>
304 #include <linux/msdos_fs_i.h>
305 #include <linux/umsdos_fs_i.h>
306 #include <linux/iso_fs_i.h>
307 #include <linux/nfs_fs_i.h>
308 #include <linux/sysv_fs_i.h>
309 #include <linux/affs_fs_i.h>
310 #include <linux/ufs_fs_i.h>
311 #include <linux/efs_fs_i.h>
312 #include <linux/coda_fs_i.h>
313 #include <linux/romfs_fs_i.h>
314 #include <linux/shmem_fs.h>
315 #include <linux/smb_fs_i.h>
316 #include <linux/hfs_fs_i.h>
317 #include <linux/adfs_fs_i.h>
318 #include <linux/qnx4_fs_i.h>
319 #include <linux/reiserfs_fs_i.h>
320 #include <linux/bfs_fs_i.h>
321 #include <linux/udf_fs_i.h>
322 #include <linux/ncp_fs_i.h>
323 #include <linux/proc_fs_i.h>
324 #include <linux/usbdev_fs_i.h>
325 #include <linux/jffs2_fs_i.h>
326 #include <linux/cramfs_fs_sb.h>
327
328 /*
329 * Attribute flags. These should be or-ed together to figure out what
330 * has been changed!
331 */
332 #define ATTR_MODE 1
333 #define ATTR_UID 2
334 #define ATTR_GID 4
335 #define ATTR_SIZE 8
336 #define ATTR_ATIME 16
337 #define ATTR_MTIME 32
338 #define ATTR_CTIME 64
339 #define ATTR_ATIME_SET 128
340 #define ATTR_MTIME_SET 256
341 #define ATTR_FORCE 512 /* Not a change, but a change it */
342 #define ATTR_ATTR_FLAG 1024
343
344 /*
345 * This is the Inode Attributes structure, used for notify_change(). It
346 * uses the above definitions as flags, to know which values have changed.
347 * Also, in this manner, a Filesystem can look at only the values it cares
348 * about. Basically, these are the attributes that the VFS layer can
349 * request to change from the FS layer.
350 *
351 * Derek Atkins <warlord@MIT.EDU> 94-10-20
352 */
353 struct iattr {
354 unsigned int ia_valid;
355 umode_t ia_mode;
356 uid_t ia_uid;
357 gid_t ia_gid;
358 loff_t ia_size;
359 time_t ia_atime;
360 time_t ia_mtime;
361 time_t ia_ctime;
362 unsigned int ia_attr_flags;
363 };
364
365 /*
366 * This is the inode attributes flag definitions
367 */
368 #define ATTR_FLAG_SYNCRONOUS 1 /* Syncronous write */
369 #define ATTR_FLAG_NOATIME 2 /* Don't update atime */
370 #define ATTR_FLAG_APPEND 4 /* Append-only file */
371 #define ATTR_FLAG_IMMUTABLE 8 /* Immutable file */
372 #define ATTR_FLAG_NODIRATIME 16 /* Don't update atime for directory */
373
374 /*
375 * Includes for diskquotas and mount structures.
376 */
377 #include <linux/quota.h>
378 #include <linux/mount.h>
379
380 /*
381 * oh the beauties of C type declarations.
382 */
383 struct page;
384 struct address_space;
385 struct kiobuf;
386
387 struct address_space_operations {
388 int (*writepage)(struct page *);
389 int (*readpage)(struct file *, struct page *);
390 int (*sync_page)(struct page *);
391 /*
392 * ext3 requires that a successful prepare_write() call be followed
393 * by a commit_write() call - they must be balanced
394 */
395 int (*prepare_write)(struct file *, struct page *, unsigned, unsigned);
396 int (*commit_write)(struct file *, struct page *, unsigned, unsigned);
397 /* Unfortunately this kludge is needed for FIBMAP. Don't use it */
398 int (*bmap)(struct address_space *, long);
399 int (*flushpage) (struct page *, unsigned long);
400 int (*releasepage) (struct page *, int);
401 #define KERNEL_HAS_O_DIRECT /* this is for modules out of the kernel */
402 int (*direct_IO)(int, struct inode *, struct kiobuf *, unsigned long, int);
403 #define KERNEL_HAS_DIRECT_FILEIO /* Unfortunate kludge due to lack of foresight */
404 int (*direct_fileIO)(int, struct file *, struct kiobuf *, unsigned long, int);
405 void (*removepage)(struct page *); /* called when page gets removed from the inode */
406 };
407
408 struct address_space {
409 struct list_head clean_pages; /* list of clean pages */
410 struct list_head dirty_pages; /* list of dirty pages */
411 struct list_head locked_pages; /* list of locked pages */
412 unsigned long nrpages; /* number of total pages */
413 struct address_space_operations *a_ops; /* methods */
414 struct inode *host; /* owner: inode, block_device */
415 struct vm_area_struct *i_mmap; /* list of private mappings */
416 struct vm_area_struct *i_mmap_shared; /* list of shared mappings */
417 spinlock_t i_shared_lock; /* and spinlock protecting it */
418 int gfp_mask; /* how to allocate the pages */
419 };
420
421 struct char_device {
422 struct list_head hash;
423 atomic_t count;
424 dev_t dev;
425 atomic_t openers;
426 struct semaphore sem;
427 };
428
429 struct block_device {
430 struct list_head bd_hash;
431 atomic_t bd_count;
432 struct inode * bd_inode;
433 dev_t bd_dev; /* not a kdev_t - it's a search key */
434 int bd_openers;
435 const struct block_device_operations *bd_op;
436 struct semaphore bd_sem; /* open/close mutex */
437 struct list_head bd_inodes;
438 };
439
440 struct inode {
441 struct list_head i_hash;
442 struct list_head i_list;
443 struct list_head i_dentry;
444
445 struct list_head i_dirty_buffers;
446 struct list_head i_dirty_data_buffers;
447
448 unsigned long i_ino;
449 atomic_t i_count;
450 kdev_t i_dev;
451 umode_t i_mode;
452 unsigned int i_nlink;
453 uid_t i_uid;
454 gid_t i_gid;
455 kdev_t i_rdev;
456 loff_t i_size;
457 time_t i_atime;
458 time_t i_mtime;
459 time_t i_ctime;
460 unsigned int i_blkbits;
461 unsigned long i_blksize;
462 unsigned long i_blocks;
463 unsigned long i_version;
464 unsigned short i_bytes;
465 struct semaphore i_sem;
466 struct rw_semaphore i_alloc_sem;
467 struct semaphore i_zombie;
468 struct inode_operations *i_op;
469 struct file_operations *i_fop; /* former ->i_op->default_file_ops */
470 struct super_block *i_sb;
471 wait_queue_head_t i_wait;
472 struct file_lock *i_flock;
473 struct address_space *i_mapping;
474 struct address_space i_data;
475 struct dquot *i_dquot[MAXQUOTAS];
476 /* These three should probably be a union */
477 struct list_head i_devices;
478 struct pipe_inode_info *i_pipe;
479 struct block_device *i_bdev;
480 struct char_device *i_cdev;
481
482 unsigned long i_dnotify_mask; /* Directory notify events */
483 struct dnotify_struct *i_dnotify; /* for directory notifications */
484
485 unsigned long i_state;
486
487 unsigned int i_flags;
488 unsigned char i_sock;
489
490 atomic_t i_writecount;
491 unsigned int i_attr_flags;
492 __u32 i_generation;
493 union {
494 struct minix_inode_info minix_i;
495 struct ext2_inode_info ext2_i;
496 struct ext3_inode_info ext3_i;
497 struct hpfs_inode_info hpfs_i;
498 struct ntfs_inode_info ntfs_i;
499 struct msdos_inode_info msdos_i;
500 struct umsdos_inode_info umsdos_i;
501 struct iso_inode_info isofs_i;
502 struct nfs_inode_info nfs_i;
503 struct sysv_inode_info sysv_i;
504 struct affs_inode_info affs_i;
505 struct ufs_inode_info ufs_i;
506 struct efs_inode_info efs_i;
507 struct romfs_inode_info romfs_i;
508 struct shmem_inode_info shmem_i;
509 struct coda_inode_info coda_i;
510 struct smb_inode_info smbfs_i;
511 struct hfs_inode_info hfs_i;
512 struct adfs_inode_info adfs_i;
513 struct qnx4_inode_info qnx4_i;
514 struct reiserfs_inode_info reiserfs_i;
515 struct bfs_inode_info bfs_i;
516 struct udf_inode_info udf_i;
517 struct ncp_inode_info ncpfs_i;
518 struct proc_inode_info proc_i;
519 struct socket socket_i;
520 struct usbdev_inode_info usbdev_i;
521 struct jffs2_inode_info jffs2_i;
522 void *generic_ip;
523 } u;
524 };
525
inode_add_bytes(struct inode * inode,loff_t bytes)526 static inline void inode_add_bytes(struct inode *inode, loff_t bytes)
527 {
528 inode->i_blocks += bytes >> 9;
529 bytes &= 511;
530 inode->i_bytes += bytes;
531 if (inode->i_bytes >= 512) {
532 inode->i_blocks++;
533 inode->i_bytes -= 512;
534 }
535 }
536
inode_sub_bytes(struct inode * inode,loff_t bytes)537 static inline void inode_sub_bytes(struct inode *inode, loff_t bytes)
538 {
539 inode->i_blocks -= bytes >> 9;
540 bytes &= 511;
541 if (inode->i_bytes < bytes) {
542 inode->i_blocks--;
543 inode->i_bytes += 512;
544 }
545 inode->i_bytes -= bytes;
546 }
547
inode_get_bytes(struct inode * inode)548 static inline loff_t inode_get_bytes(struct inode *inode)
549 {
550 return (((loff_t)inode->i_blocks) << 9) + inode->i_bytes;
551 }
552
inode_set_bytes(struct inode * inode,loff_t bytes)553 static inline void inode_set_bytes(struct inode *inode, loff_t bytes)
554 {
555 inode->i_blocks = bytes >> 9;
556 inode->i_bytes = bytes & 511;
557 }
558
559 struct fown_struct {
560 int pid; /* pid or -pgrp where SIGIO should be sent */
561 uid_t uid, euid; /* uid/euid of process setting the owner */
562 int signum; /* posix.1b rt signal to be delivered on IO */
563 };
564
565 struct file {
566 struct list_head f_list;
567 struct dentry *f_dentry;
568 struct vfsmount *f_vfsmnt;
569 struct file_operations *f_op;
570 atomic_t f_count;
571 unsigned int f_flags;
572 mode_t f_mode;
573 loff_t f_pos;
574 unsigned long f_reada, f_ramax, f_raend, f_ralen, f_rawin;
575 struct fown_struct f_owner;
576 unsigned int f_uid, f_gid;
577 int f_error;
578
579 size_t f_maxcount;
580 unsigned long f_version;
581
582 /* needed for tty driver, and maybe others */
583 void *private_data;
584
585 /* preallocated helper kiobuf to speedup O_DIRECT */
586 struct kiobuf *f_iobuf;
587 long f_iobuf_lock;
588 };
589 extern spinlock_t files_lock;
590 #define file_list_lock() spin_lock(&files_lock);
591 #define file_list_unlock() spin_unlock(&files_lock);
592
593 #define get_file(x) atomic_inc(&(x)->f_count)
594 #define file_count(x) atomic_read(&(x)->f_count)
595
596 extern int init_private_file(struct file *, struct dentry *, int);
597
598 #define MAX_NON_LFS ((1UL<<31) - 1)
599
600 /* Page cache limit. The filesystems should put that into their s_maxbytes
601 limits, otherwise bad things can happen in VM. */
602 #if BITS_PER_LONG==32
603 #define MAX_LFS_FILESIZE (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
604 #elif BITS_PER_LONG==64
605 #define MAX_LFS_FILESIZE 0x7fffffffffffffff
606 #endif
607
608 #define FL_POSIX 1
609 #define FL_FLOCK 2
610 #define FL_BROKEN 4 /* broken flock() emulation */
611 #define FL_ACCESS 8 /* for processes suspended by mandatory locking */
612 #define FL_LOCKD 16 /* lock held by rpc.lockd */
613 #define FL_LEASE 32 /* lease held on this file */
614
615 /*
616 * The POSIX file lock owner is determined by
617 * the "struct files_struct" in the thread group
618 * (or NULL for no owner - BSD locks).
619 *
620 * Lockd stuffs a "host" pointer into this.
621 */
622 typedef struct files_struct *fl_owner_t;
623
624 struct file_lock {
625 struct file_lock *fl_next; /* singly linked list for this inode */
626 struct list_head fl_link; /* doubly linked list of all locks */
627 struct list_head fl_block; /* circular list of blocked processes */
628 fl_owner_t fl_owner;
629 unsigned int fl_pid;
630 wait_queue_head_t fl_wait;
631 struct file *fl_file;
632 unsigned char fl_flags;
633 unsigned char fl_type;
634 loff_t fl_start;
635 loff_t fl_end;
636
637 void (*fl_notify)(struct file_lock *); /* unblock callback */
638 void (*fl_insert)(struct file_lock *); /* lock insertion callback */
639 void (*fl_remove)(struct file_lock *); /* lock removal callback */
640
641 struct fasync_struct * fl_fasync; /* for lease break notifications */
642 unsigned long fl_break_time; /* for nonblocking lease breaks */
643
644 union {
645 struct nfs_lock_info nfs_fl;
646 } fl_u;
647 };
648
649 /* The following constant reflects the upper bound of the file/locking space */
650 #ifndef OFFSET_MAX
651 #define INT_LIMIT(x) (~((x)1 << (sizeof(x)*8 - 1)))
652 #define OFFSET_MAX INT_LIMIT(loff_t)
653 #define OFFT_OFFSET_MAX INT_LIMIT(off_t)
654 #endif
655
656 extern struct list_head file_lock_list;
657
658 #include <linux/fcntl.h>
659
660 extern int fcntl_getlk(unsigned int, struct flock *);
661 extern int fcntl_setlk(unsigned int, struct file *, unsigned int,
662 struct flock *);
663
664 extern int fcntl_getlk64(unsigned int, struct flock64 *);
665 extern int fcntl_setlk64(unsigned int, struct file *, unsigned int,
666 struct flock64 *);
667
668 /* fs/locks.c */
669 extern void locks_init_lock(struct file_lock *);
670 extern void locks_copy_lock(struct file_lock *, struct file_lock *);
671 extern void locks_remove_posix(struct file *, fl_owner_t);
672 extern void locks_remove_flock(struct file *);
673 extern struct file_lock *posix_test_lock(struct file *, struct file_lock *);
674 extern int posix_lock_file(struct file *, struct file_lock *, unsigned int);
675 extern void posix_block_lock(struct file_lock *, struct file_lock *);
676 extern void posix_unblock_lock(struct file_lock *);
677 extern int posix_locks_deadlock(struct file_lock *, struct file_lock *);
678 extern int __get_lease(struct inode *inode, unsigned int flags);
679 extern time_t lease_get_mtime(struct inode *);
680 extern int lock_may_read(struct inode *, loff_t start, unsigned long count);
681 extern int lock_may_write(struct inode *, loff_t start, unsigned long count);
682 extern void steal_locks(fl_owner_t from);
683
684 struct fasync_struct {
685 int magic;
686 int fa_fd;
687 struct fasync_struct *fa_next; /* singly linked list */
688 struct file *fa_file;
689 };
690
691 #define FASYNC_MAGIC 0x4601
692
693 /* SMP safe fasync helpers: */
694 extern int fasync_helper(int, struct file *, int, struct fasync_struct **);
695 /* can be called from interrupts */
696 extern void kill_fasync(struct fasync_struct **, int, int);
697 /* only for net: no internal synchronization */
698 extern void __kill_fasync(struct fasync_struct *, int, int);
699
700 struct nameidata {
701 struct dentry *dentry;
702 struct vfsmount *mnt;
703 struct qstr last;
704 unsigned int flags;
705 int last_type;
706 };
707
708 /*
709 * Umount options
710 */
711
712 #define MNT_FORCE 0x00000001 /* Attempt to forcibily umount */
713 #define MNT_DETACH 0x00000002 /* Just detach from the tree */
714
715 #include <linux/minix_fs_sb.h>
716 #include <linux/ext2_fs_sb.h>
717 #include <linux/ext3_fs_sb.h>
718 #include <linux/hpfs_fs_sb.h>
719 #include <linux/ntfs_fs_sb.h>
720 #include <linux/msdos_fs_sb.h>
721 #include <linux/iso_fs_sb.h>
722 #include <linux/nfs_fs_sb.h>
723 #include <linux/sysv_fs_sb.h>
724 #include <linux/affs_fs_sb.h>
725 #include <linux/ufs_fs_sb.h>
726 #include <linux/efs_fs_sb.h>
727 #include <linux/romfs_fs_sb.h>
728 #include <linux/smb_fs_sb.h>
729 #include <linux/hfs_fs_sb.h>
730 #include <linux/adfs_fs_sb.h>
731 #include <linux/qnx4_fs_sb.h>
732 #include <linux/reiserfs_fs_sb.h>
733 #include <linux/bfs_fs_sb.h>
734 #include <linux/udf_fs_sb.h>
735 #include <linux/ncp_fs_sb.h>
736 #include <linux/usbdev_fs_sb.h>
737 #include <linux/cramfs_fs_sb.h>
738 #include <linux/jffs2_fs_sb.h>
739
740 extern struct list_head super_blocks;
741 extern spinlock_t sb_lock;
742
743 #define sb_entry(list) list_entry((list), struct super_block, s_list)
744 #define S_BIAS (1<<30)
745 struct super_block {
746 struct list_head s_list; /* Keep this first */
747 kdev_t s_dev;
748 unsigned long s_blocksize;
749 unsigned char s_blocksize_bits;
750 unsigned char s_dirt;
751 unsigned long long s_maxbytes; /* Max file size */
752 struct file_system_type *s_type;
753 struct super_operations *s_op;
754 struct dquot_operations *dq_op;
755 struct quotactl_ops *s_qcop;
756 unsigned long s_flags;
757 unsigned long s_magic;
758 struct dentry *s_root;
759 struct rw_semaphore s_umount;
760 struct semaphore s_lock;
761 int s_count;
762 atomic_t s_active;
763
764 struct list_head s_dirty; /* dirty inodes */
765 struct list_head s_locked_inodes;/* inodes being synced */
766 struct list_head s_files;
767
768 struct block_device *s_bdev;
769 struct list_head s_instances;
770 struct quota_info s_dquot; /* Diskquota specific options */
771
772 union {
773 struct minix_sb_info minix_sb;
774 struct ext2_sb_info ext2_sb;
775 struct ext3_sb_info ext3_sb;
776 struct hpfs_sb_info hpfs_sb;
777 struct ntfs_sb_info ntfs_sb;
778 struct msdos_sb_info msdos_sb;
779 struct isofs_sb_info isofs_sb;
780 struct nfs_sb_info nfs_sb;
781 struct sysv_sb_info sysv_sb;
782 struct affs_sb_info affs_sb;
783 struct ufs_sb_info ufs_sb;
784 struct efs_sb_info efs_sb;
785 struct shmem_sb_info shmem_sb;
786 struct romfs_sb_info romfs_sb;
787 struct smb_sb_info smbfs_sb;
788 struct hfs_sb_info hfs_sb;
789 struct adfs_sb_info adfs_sb;
790 struct qnx4_sb_info qnx4_sb;
791 struct reiserfs_sb_info reiserfs_sb;
792 struct bfs_sb_info bfs_sb;
793 struct udf_sb_info udf_sb;
794 struct ncp_sb_info ncpfs_sb;
795 struct usbdev_sb_info usbdevfs_sb;
796 struct jffs2_sb_info jffs2_sb;
797 struct cramfs_sb_info cramfs_sb;
798 void *generic_sbp;
799 } u;
800 /*
801 * The next field is for VFS *only*. No filesystems have any business
802 * even looking at it. You had been warned.
803 */
804 struct semaphore s_vfs_rename_sem; /* Kludge */
805
806 /* The next field is used by knfsd when converting a (inode number based)
807 * file handle into a dentry. As it builds a path in the dcache tree from
808 * the bottom up, there may for a time be a subpath of dentrys which is not
809 * connected to the main tree. This semaphore ensure that there is only ever
810 * one such free path per filesystem. Note that unconnected files (or other
811 * non-directories) are allowed, but not unconnected diretories.
812 */
813 struct semaphore s_nfsd_free_path_sem;
814 };
815
816 /*
817 * VFS helper functions..
818 */
819 extern int vfs_create(struct inode *, struct dentry *, int);
820 extern int vfs_mkdir(struct inode *, struct dentry *, int);
821 extern int vfs_mknod(struct inode *, struct dentry *, int, dev_t);
822 extern int vfs_symlink(struct inode *, struct dentry *, const char *);
823 extern int vfs_link(struct dentry *, struct inode *, struct dentry *);
824 extern int vfs_rmdir(struct inode *, struct dentry *);
825 extern int vfs_unlink(struct inode *, struct dentry *);
826 extern int vfs_rename(struct inode *, struct dentry *, struct inode *, struct dentry *);
827
828 /*
829 * File types
830 */
831 #define DT_UNKNOWN 0
832 #define DT_FIFO 1
833 #define DT_CHR 2
834 #define DT_DIR 4
835 #define DT_BLK 6
836 #define DT_REG 8
837 #define DT_LNK 10
838 #define DT_SOCK 12
839 #define DT_WHT 14
840
841 /*
842 * This is the "filldir" function type, used by readdir() to let
843 * the kernel specify what kind of dirent layout it wants to have.
844 * This allows the kernel to read directories into kernel space or
845 * to have different dirent layouts depending on the binary type.
846 */
847 typedef int (*filldir_t)(void *, const char *, int, loff_t, ino_t, unsigned);
848
849 struct block_device_operations {
850 int (*open) (struct inode *, struct file *);
851 int (*release) (struct inode *, struct file *);
852 int (*ioctl) (struct inode *, struct file *, unsigned, unsigned long);
853 int (*check_media_change) (kdev_t);
854 int (*revalidate) (kdev_t);
855 struct module *owner;
856 };
857
858 /*
859 * NOTE:
860 * read, write, poll, fsync, readv, writev can be called
861 * without the big kernel lock held in all filesystems.
862 */
863 struct file_operations {
864 struct module *owner;
865 loff_t (*llseek) (struct file *, loff_t, int);
866 ssize_t (*read) (struct file *, char *, size_t, loff_t *);
867 ssize_t (*write) (struct file *, const char *, size_t, loff_t *);
868 int (*readdir) (struct file *, void *, filldir_t);
869 unsigned int (*poll) (struct file *, struct poll_table_struct *);
870 int (*ioctl) (struct inode *, struct file *, unsigned int, unsigned long);
871 int (*mmap) (struct file *, struct vm_area_struct *);
872 int (*open) (struct inode *, struct file *);
873 int (*flush) (struct file *);
874 int (*release) (struct inode *, struct file *);
875 int (*fsync) (struct file *, struct dentry *, int datasync);
876 int (*fasync) (int, struct file *, int);
877 int (*lock) (struct file *, int, struct file_lock *);
878 ssize_t (*readv) (struct file *, const struct iovec *, unsigned long, loff_t *);
879 ssize_t (*writev) (struct file *, const struct iovec *, unsigned long, loff_t *);
880 ssize_t (*sendpage) (struct file *, struct page *, int, size_t, loff_t *, int);
881 unsigned long (*get_unmapped_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);
882 };
883
884 struct inode_operations {
885 int (*create) (struct inode *,struct dentry *,int);
886 struct dentry * (*lookup) (struct inode *,struct dentry *);
887 int (*link) (struct dentry *,struct inode *,struct dentry *);
888 int (*unlink) (struct inode *,struct dentry *);
889 int (*symlink) (struct inode *,struct dentry *,const char *);
890 int (*mkdir) (struct inode *,struct dentry *,int);
891 int (*rmdir) (struct inode *,struct dentry *);
892 int (*mknod) (struct inode *,struct dentry *,int,int);
893 int (*rename) (struct inode *, struct dentry *,
894 struct inode *, struct dentry *);
895 int (*readlink) (struct dentry *, char *,int);
896 int (*follow_link) (struct dentry *, struct nameidata *);
897 void (*truncate) (struct inode *);
898 int (*permission) (struct inode *, int);
899 int (*revalidate) (struct dentry *);
900 int (*setattr) (struct dentry *, struct iattr *);
901 int (*getattr) (struct dentry *, struct iattr *);
902 int (*setxattr) (struct dentry *, const char *, void *, size_t, int);
903 ssize_t (*getxattr) (struct dentry *, const char *, void *, size_t);
904 ssize_t (*listxattr) (struct dentry *, char *, size_t);
905 int (*removexattr) (struct dentry *, const char *);
906 };
907
908 struct seq_file;
909
910 /*
911 * NOTE: write_inode, delete_inode, clear_inode, put_inode can be called
912 * without the big kernel lock held in all filesystems.
913 */
914 struct super_operations {
915 struct inode *(*alloc_inode)(struct super_block *sb);
916 void (*destroy_inode)(struct inode *);
917
918 void (*read_inode) (struct inode *);
919
920 /* reiserfs kludge. reiserfs needs 64 bits of information to
921 ** find an inode. We are using the read_inode2 call to get
922 ** that information. We don't like this, and are waiting on some
923 ** VFS changes for the real solution.
924 ** iget4 calls read_inode2, iff it is defined
925 */
926 void (*read_inode2) (struct inode *, void *) ;
927 void (*dirty_inode) (struct inode *);
928 void (*write_inode) (struct inode *, int);
929 void (*put_inode) (struct inode *);
930 void (*delete_inode) (struct inode *);
931 void (*put_super) (struct super_block *);
932 void (*write_super) (struct super_block *);
933 int (*sync_fs) (struct super_block *);
934 void (*write_super_lockfs) (struct super_block *);
935 void (*unlockfs) (struct super_block *);
936 int (*statfs) (struct super_block *, struct statfs *);
937 int (*remount_fs) (struct super_block *, int *, char *);
938 void (*clear_inode) (struct inode *);
939 void (*umount_begin) (struct super_block *);
940
941 /* Following are for knfsd to interact with "interesting" filesystems
942 * Currently just reiserfs, but possibly FAT and others later
943 *
944 * fh_to_dentry is given a filehandle fragement with length, and a type flag
945 * and must return a dentry for the referenced object or, if "parent" is
946 * set, a dentry for the parent of the object.
947 * If a dentry cannot be found, a "root" dentry should be created and
948 * flaged as DCACHE_NFSD_DISCONNECTED. nfsd_iget is an example implementation.
949 *
950 * dentry_to_fh is given a dentry and must generate the filesys specific
951 * part of the file handle. Available length is passed in *lenp and used
952 * length should be returned therein.
953 * If need_parent is set, then dentry_to_fh should encode sufficient information
954 * to find the (current) parent.
955 * dentry_to_fh should return a 1byte "type" which will be passed back in
956 * the fhtype arguement to fh_to_dentry. Type of 0 is reserved.
957 * If filesystem was exportable before the introduction of fh_to_dentry,
958 * types 1 and 2 should be used is that same way as the generic code.
959 * Type 255 means error.
960 *
961 * Lengths are in units of 4bytes, not bytes.
962 */
963 struct dentry * (*fh_to_dentry)(struct super_block *sb, __u32 *fh, int len, int fhtype, int parent);
964 int (*dentry_to_fh)(struct dentry *, __u32 *fh, int *lenp, int need_parent);
965 int (*show_options)(struct seq_file *, struct vfsmount *);
966 };
967
968 /* Inode state bits.. */
969 #define I_DIRTY_SYNC 1 /* Not dirty enough for O_DATASYNC */
970 #define I_DIRTY_DATASYNC 2 /* Data-related inode changes pending */
971 #define I_DIRTY_PAGES 4 /* Data-related inode changes pending */
972 #define I_LOCK 8
973 #define I_FREEING 16
974 #define I_CLEAR 32
975 #define I_NEW 64
976
977 #define I_DIRTY (I_DIRTY_SYNC | I_DIRTY_DATASYNC | I_DIRTY_PAGES)
978
979 extern void __mark_inode_dirty(struct inode *, int);
mark_inode_dirty(struct inode * inode)980 static inline void mark_inode_dirty(struct inode *inode)
981 {
982 __mark_inode_dirty(inode, I_DIRTY);
983 }
984
mark_inode_dirty_sync(struct inode * inode)985 static inline void mark_inode_dirty_sync(struct inode *inode)
986 {
987 __mark_inode_dirty(inode, I_DIRTY_SYNC);
988 }
989
mark_inode_dirty_pages(struct inode * inode)990 static inline void mark_inode_dirty_pages(struct inode *inode)
991 {
992 __mark_inode_dirty(inode, I_DIRTY_PAGES);
993 }
994
995 struct file_system_type {
996 const char *name;
997 int fs_flags;
998 struct super_block *(*read_super) (struct super_block *, void *, int);
999 struct module *owner;
1000 struct file_system_type * next;
1001 struct list_head fs_supers;
1002 };
1003
1004 #define DECLARE_FSTYPE(var,type,read,flags) \
1005 struct file_system_type var = { \
1006 name: type, \
1007 read_super: read, \
1008 fs_flags: flags, \
1009 owner: THIS_MODULE, \
1010 }
1011
1012 #define DECLARE_FSTYPE_DEV(var,type,read) \
1013 DECLARE_FSTYPE(var,type,read,FS_REQUIRES_DEV)
1014
1015 /* Alas, no aliases. Too much hassle with bringing module.h everywhere */
1016 #define fops_get(fops) \
1017 (((fops) && (fops)->owner) \
1018 ? ( try_inc_mod_count((fops)->owner) ? (fops) : NULL ) \
1019 : (fops))
1020
1021 #define fops_put(fops) \
1022 do { \
1023 if ((fops) && (fops)->owner) \
1024 __MOD_DEC_USE_COUNT((fops)->owner); \
1025 } while(0)
1026
1027 extern int register_filesystem(struct file_system_type *);
1028 extern int unregister_filesystem(struct file_system_type *);
1029 extern struct vfsmount *kern_mount(struct file_system_type *);
1030 extern int may_umount(struct vfsmount *);
1031 extern long do_mount(char *, char *, char *, unsigned long, void *);
1032
1033 #define kern_umount mntput
1034
1035 extern int vfs_statfs(struct super_block *, struct statfs *);
1036
1037 /* Return value for VFS lock functions - tells locks.c to lock conventionally
1038 * REALLY kosha for root NFS and nfs_lock
1039 */
1040 #define LOCK_USE_CLNT 1
1041
1042 #define FLOCK_VERIFY_READ 1
1043 #define FLOCK_VERIFY_WRITE 2
1044
1045 extern int locks_mandatory_locked(struct inode *);
1046 extern int locks_mandatory_area(int, struct inode *, struct file *, loff_t, size_t);
1047
1048 /*
1049 * Candidates for mandatory locking have the setgid bit set
1050 * but no group execute bit - an otherwise meaningless combination.
1051 */
1052 #define MANDATORY_LOCK(inode) \
1053 (IS_MANDLOCK(inode) && ((inode)->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID)
1054
locks_verify_locked(struct inode * inode)1055 static inline int locks_verify_locked(struct inode *inode)
1056 {
1057 if (MANDATORY_LOCK(inode))
1058 return locks_mandatory_locked(inode);
1059 return 0;
1060 }
1061
1062 extern int rw_verify_area(int, struct file *, loff_t *, size_t);
1063
locks_verify_truncate(struct inode * inode,struct file * filp,loff_t size)1064 static inline int locks_verify_truncate(struct inode *inode,
1065 struct file *filp,
1066 loff_t size)
1067 {
1068 if (inode->i_flock && MANDATORY_LOCK(inode))
1069 return locks_mandatory_area(
1070 FLOCK_VERIFY_WRITE, inode, filp,
1071 size < inode->i_size ? size : inode->i_size,
1072 (size < inode->i_size ? inode->i_size - size
1073 : size - inode->i_size)
1074 );
1075 return 0;
1076 }
1077
get_lease(struct inode * inode,unsigned int mode)1078 static inline int get_lease(struct inode *inode, unsigned int mode)
1079 {
1080 if (inode->i_flock)
1081 return __get_lease(inode, mode);
1082 return 0;
1083 }
1084
1085 /* fs/open.c */
1086
1087 asmlinkage long sys_open(const char *, int, int);
1088 asmlinkage long sys_close(unsigned int); /* yes, it's really unsigned */
1089 extern int do_truncate(struct dentry *, loff_t start);
1090
1091 extern struct file *filp_open(const char *, int, int);
1092 extern struct file * dentry_open(struct dentry *, struct vfsmount *, int);
1093 extern int filp_close(struct file *, fl_owner_t id);
1094 extern char * getname(const char *);
1095
1096 /* fs/dcache.c */
1097 extern void vfs_caches_init(unsigned long);
1098
1099 #define __getname() kmem_cache_alloc(names_cachep, SLAB_KERNEL)
1100 #define putname(name) kmem_cache_free(names_cachep, (void *)(name))
1101
1102 enum {BDEV_FILE, BDEV_SWAP, BDEV_FS, BDEV_RAW};
1103 extern int register_blkdev(unsigned int, const char *, struct block_device_operations *);
1104 extern int unregister_blkdev(unsigned int, const char *);
1105 extern struct block_device *bdget(dev_t);
1106 extern int bd_acquire(struct inode *inode);
1107 extern void bd_forget(struct inode *inode);
1108 extern void bdput(struct block_device *);
1109 extern struct char_device *cdget(dev_t);
1110 extern void cdput(struct char_device *);
1111 extern int blkdev_open(struct inode *, struct file *);
1112 extern int blkdev_close(struct inode *, struct file *);
1113 extern struct file_operations def_blk_fops;
1114 extern struct address_space_operations def_blk_aops;
1115 extern struct file_operations def_fifo_fops;
1116 extern int ioctl_by_bdev(struct block_device *, unsigned, unsigned long);
1117 extern int blkdev_get(struct block_device *, mode_t, unsigned, int);
1118 extern int blkdev_put(struct block_device *, int);
1119
1120 /* fs/devices.c */
1121 extern const struct block_device_operations *get_blkfops(unsigned int);
1122 extern int register_chrdev(unsigned int, const char *, struct file_operations *);
1123 extern int unregister_chrdev(unsigned int, const char *);
1124 extern int chrdev_open(struct inode *, struct file *);
1125 extern const char * bdevname(kdev_t);
1126 extern const char * cdevname(kdev_t);
1127 extern const char * kdevname(kdev_t);
1128 extern void init_special_inode(struct inode *, umode_t, int);
1129
1130 /* Invalid inode operations -- fs/bad_inode.c */
1131 extern void make_bad_inode(struct inode *);
1132 extern int is_bad_inode(struct inode *);
1133
1134 extern struct file_operations read_fifo_fops;
1135 extern struct file_operations write_fifo_fops;
1136 extern struct file_operations rdwr_fifo_fops;
1137 extern struct file_operations read_pipe_fops;
1138 extern struct file_operations write_pipe_fops;
1139 extern struct file_operations rdwr_pipe_fops;
1140
1141 extern int fs_may_remount_ro(struct super_block *);
1142
1143 extern int FASTCALL(try_to_free_buffers(struct page *, unsigned int));
1144 extern void refile_buffer(struct buffer_head * buf);
1145 extern void create_empty_buffers(struct page *, kdev_t, unsigned long);
1146 extern void end_buffer_io_sync(struct buffer_head *bh, int uptodate);
1147 extern void end_buffer_io_async(struct buffer_head *bh, int uptodate);
1148
1149 /* reiserfs_writepage needs this */
1150 extern void set_buffer_async_io(struct buffer_head *bh) ;
1151
1152 #define BUF_CLEAN 0
1153 #define BUF_LOCKED 1 /* Buffers scheduled for write */
1154 #define BUF_DIRTY 2 /* Dirty buffers, not yet scheduled for write */
1155 #define NR_LIST 3
1156
get_bh(struct buffer_head * bh)1157 static inline void get_bh(struct buffer_head * bh)
1158 {
1159 atomic_inc(&(bh)->b_count);
1160 }
1161
put_bh(struct buffer_head * bh)1162 static inline void put_bh(struct buffer_head *bh)
1163 {
1164 smp_mb__before_atomic_dec();
1165 atomic_dec(&bh->b_count);
1166 }
1167
1168 /*
1169 * This is called by bh->b_end_io() handlers when I/O has completed.
1170 */
mark_buffer_uptodate(struct buffer_head * bh,int on)1171 static inline void mark_buffer_uptodate(struct buffer_head * bh, int on)
1172 {
1173 if (on)
1174 set_bit(BH_Uptodate, &bh->b_state);
1175 else
1176 clear_bit(BH_Uptodate, &bh->b_state);
1177 }
1178
1179 #define atomic_set_buffer_clean(bh) test_and_clear_bit(BH_Dirty, &(bh)->b_state)
1180
__mark_buffer_clean(struct buffer_head * bh)1181 static inline void __mark_buffer_clean(struct buffer_head *bh)
1182 {
1183 refile_buffer(bh);
1184 }
1185
mark_buffer_clean(struct buffer_head * bh)1186 static inline void mark_buffer_clean(struct buffer_head * bh)
1187 {
1188 if (atomic_set_buffer_clean(bh))
1189 __mark_buffer_clean(bh);
1190 }
1191
1192 extern void FASTCALL(__mark_dirty(struct buffer_head *bh));
1193 extern void FASTCALL(__mark_buffer_dirty(struct buffer_head *bh));
1194 extern void FASTCALL(mark_buffer_dirty(struct buffer_head *bh));
1195
1196 extern void FASTCALL(buffer_insert_list(struct buffer_head *, struct list_head *));
1197
buffer_insert_inode_queue(struct buffer_head * bh,struct inode * inode)1198 static inline void buffer_insert_inode_queue(struct buffer_head *bh, struct inode *inode)
1199 {
1200 buffer_insert_list(bh, &inode->i_dirty_buffers);
1201 }
1202
buffer_insert_inode_data_queue(struct buffer_head * bh,struct inode * inode)1203 static inline void buffer_insert_inode_data_queue(struct buffer_head *bh, struct inode *inode)
1204 {
1205 buffer_insert_list(bh, &inode->i_dirty_data_buffers);
1206 }
1207
atomic_set_buffer_dirty(struct buffer_head * bh)1208 static inline int atomic_set_buffer_dirty(struct buffer_head *bh)
1209 {
1210 return test_and_set_bit(BH_Dirty, &bh->b_state);
1211 }
1212
mark_buffer_async(struct buffer_head * bh,int on)1213 static inline void mark_buffer_async(struct buffer_head * bh, int on)
1214 {
1215 if (on)
1216 set_bit(BH_Async, &bh->b_state);
1217 else
1218 clear_bit(BH_Async, &bh->b_state);
1219 }
1220
set_buffer_attached(struct buffer_head * bh)1221 static inline void set_buffer_attached(struct buffer_head *bh)
1222 {
1223 set_bit(BH_Attached, &bh->b_state);
1224 }
1225
clear_buffer_attached(struct buffer_head * bh)1226 static inline void clear_buffer_attached(struct buffer_head *bh)
1227 {
1228 clear_bit(BH_Attached, &bh->b_state);
1229 }
1230
buffer_attached(struct buffer_head * bh)1231 static inline int buffer_attached(struct buffer_head *bh)
1232 {
1233 return test_bit(BH_Attached, &bh->b_state);
1234 }
1235
1236 /*
1237 * If an error happens during the make_request, this function
1238 * has to be recalled. It marks the buffer as clean and not
1239 * uptodate, and it notifys the upper layer about the end
1240 * of the I/O.
1241 */
buffer_IO_error(struct buffer_head * bh)1242 static inline void buffer_IO_error(struct buffer_head * bh)
1243 {
1244 mark_buffer_clean(bh);
1245 /*
1246 * b_end_io has to clear the BH_Uptodate bitflag in the error case!
1247 */
1248 bh->b_end_io(bh, 0);
1249 }
1250
mark_buffer_dirty_inode(struct buffer_head * bh,struct inode * inode)1251 static inline void mark_buffer_dirty_inode(struct buffer_head *bh, struct inode *inode)
1252 {
1253 mark_buffer_dirty(bh);
1254 buffer_insert_inode_queue(bh, inode);
1255 }
1256
1257 extern void set_buffer_flushtime(struct buffer_head *);
1258 extern int get_buffer_flushtime(void);
1259 extern void balance_dirty(void);
1260 extern int check_disk_change(kdev_t);
1261 extern int invalidate_inodes(struct super_block *);
1262 extern int invalidate_device(kdev_t, int);
1263 extern void invalidate_inode_pages(struct inode *);
1264 extern void invalidate_inode_pages2(struct address_space *);
1265 extern void invalidate_inode_buffers(struct inode *);
1266 #define invalidate_buffers(dev) __invalidate_buffers((dev), 0)
1267 #define destroy_buffers(dev) __invalidate_buffers((dev), 1)
1268 extern void invalidate_bdev(struct block_device *, int);
1269 extern void __invalidate_buffers(kdev_t dev, int);
1270 extern void sync_inodes(kdev_t);
1271 extern void sync_unlocked_inodes(void);
1272 extern void write_inode_now(struct inode *, int);
1273 extern int sync_buffers(kdev_t, int);
1274 extern void sync_dev(kdev_t);
1275 extern int fsync_dev(kdev_t);
1276 extern int fsync_super(struct super_block *);
1277 extern int fsync_no_super(kdev_t);
1278 extern void sync_inodes_sb(struct super_block *);
1279 extern int fsync_buffers_list(struct list_head *);
fsync_inode_buffers(struct inode * inode)1280 static inline int fsync_inode_buffers(struct inode *inode)
1281 {
1282 return fsync_buffers_list(&inode->i_dirty_buffers);
1283 }
fsync_inode_data_buffers(struct inode * inode)1284 static inline int fsync_inode_data_buffers(struct inode *inode)
1285 {
1286 return fsync_buffers_list(&inode->i_dirty_data_buffers);
1287 }
1288 extern int inode_has_buffers(struct inode *);
1289 extern int do_fdatasync(struct file *);
1290 extern int filemap_fdatawrite(struct address_space *);
1291 extern int filemap_fdatasync(struct address_space *);
1292 extern int filemap_fdatawait(struct address_space *);
1293 extern void sync_supers(kdev_t dev, int wait);
1294 extern int bmap(struct inode *, int);
1295 extern int notify_change(struct dentry *, struct iattr *);
1296 extern int permission(struct inode *, int);
1297 extern int vfs_permission(struct inode *, int);
1298 extern int get_write_access(struct inode *);
1299 extern int deny_write_access(struct file *);
put_write_access(struct inode * inode)1300 static inline void put_write_access(struct inode * inode)
1301 {
1302 atomic_dec(&inode->i_writecount);
1303 }
allow_write_access(struct file * file)1304 static inline void allow_write_access(struct file *file)
1305 {
1306 if (file)
1307 atomic_inc(&file->f_dentry->d_inode->i_writecount);
1308 }
1309 extern int do_pipe(int *);
1310
1311 extern int open_namei(const char *, int, int, struct nameidata *);
1312
1313 extern int kernel_read(struct file *, unsigned long, char *, unsigned long);
1314 extern struct file * open_exec(const char *);
1315
1316 /* fs/dcache.c -- generic fs support functions */
1317 extern int is_subdir(struct dentry *, struct dentry *);
1318 extern ino_t find_inode_number(struct dentry *, struct qstr *);
1319
1320 /*
1321 * Kernel pointers have redundant information, so we can use a
1322 * scheme where we can return either an error code or a dentry
1323 * pointer with the same return value.
1324 *
1325 * This should be a per-architecture thing, to allow different
1326 * error and pointer decisions.
1327 */
ERR_PTR(long error)1328 static inline void *ERR_PTR(long error)
1329 {
1330 return (void *) error;
1331 }
1332
PTR_ERR(const void * ptr)1333 static inline long PTR_ERR(const void *ptr)
1334 {
1335 return (long) ptr;
1336 }
1337
IS_ERR(const void * ptr)1338 static inline long IS_ERR(const void *ptr)
1339 {
1340 return (unsigned long)ptr > (unsigned long)-1000L;
1341 }
1342
1343 /*
1344 * The bitmask for a lookup event:
1345 * - follow links at the end
1346 * - require a directory
1347 * - ending slashes ok even for nonexistent files
1348 * - internal "there are more path compnents" flag
1349 */
1350 #define LOOKUP_FOLLOW (1)
1351 #define LOOKUP_DIRECTORY (2)
1352 #define LOOKUP_CONTINUE (4)
1353 #define LOOKUP_POSITIVE (8)
1354 #define LOOKUP_PARENT (16)
1355 #define LOOKUP_NOALT (32)
1356 /*
1357 * Type of the last component on LOOKUP_PARENT
1358 */
1359 enum {LAST_NORM, LAST_ROOT, LAST_DOT, LAST_DOTDOT, LAST_BIND};
1360
1361 /*
1362 * "descriptor" for what we're up to with a read for sendfile().
1363 * This allows us to use the same read code yet
1364 * have multiple different users of the data that
1365 * we read from a file.
1366 *
1367 * The simplest case just copies the data to user
1368 * mode.
1369 */
1370 typedef struct {
1371 size_t written;
1372 size_t count;
1373 char * buf;
1374 int error;
1375 } read_descriptor_t;
1376
1377 typedef int (*read_actor_t)(read_descriptor_t *, struct page *, unsigned long, unsigned long);
1378
1379 /* needed for stackable file system support */
1380 extern loff_t default_llseek(struct file *file, loff_t offset, int origin);
1381
1382 extern int FASTCALL(__user_walk(const char *, unsigned, struct nameidata *));
1383 extern int FASTCALL(path_init(const char *, unsigned, struct nameidata *));
1384 extern int FASTCALL(path_walk(const char *, struct nameidata *));
1385 extern int FASTCALL(path_lookup(const char *, unsigned, struct nameidata *));
1386 extern int FASTCALL(link_path_walk(const char *, struct nameidata *));
1387 extern void path_release(struct nameidata *);
1388 extern int follow_down(struct vfsmount **, struct dentry **);
1389 extern int follow_up(struct vfsmount **, struct dentry **);
1390 extern struct dentry * lookup_one_len(const char *, struct dentry *, int);
1391 extern struct dentry * lookup_hash(struct qstr *, struct dentry *);
1392 #define user_path_walk(name,nd) __user_walk(name, LOOKUP_FOLLOW|LOOKUP_POSITIVE, nd)
1393 #define user_path_walk_link(name,nd) __user_walk(name, LOOKUP_POSITIVE, nd)
1394
1395 extern void inode_init_once(struct inode *);
1396 extern void __inode_init_once(struct inode *);
1397 extern void iput(struct inode *);
1398 extern void refile_inode(struct inode *inode);
1399 extern void force_delete(struct inode *);
1400 extern struct inode * igrab(struct inode *);
1401 extern struct inode * ilookup(struct super_block *, unsigned long);
1402 extern ino_t iunique(struct super_block *, ino_t);
1403 extern void unlock_new_inode(struct inode *);
1404
1405 typedef int (*find_inode_t)(struct inode *, unsigned long, void *);
1406
1407 extern struct inode * iget4_locked(struct super_block *, unsigned long,
1408 find_inode_t, void *);
1409
iget4(struct super_block * sb,unsigned long ino,find_inode_t find_actor,void * opaque)1410 static inline struct inode *iget4(struct super_block *sb, unsigned long ino,
1411 find_inode_t find_actor, void *opaque)
1412 {
1413 struct inode *inode = iget4_locked(sb, ino, find_actor, opaque);
1414
1415 if (inode && (inode->i_state & I_NEW)) {
1416 /*
1417 * reiserfs-specific kludge that is expected to go away ASAP.
1418 */
1419 if (sb->s_op->read_inode2)
1420 sb->s_op->read_inode2(inode, opaque);
1421 else
1422 sb->s_op->read_inode(inode);
1423 unlock_new_inode(inode);
1424 }
1425
1426 return inode;
1427 }
1428
iget(struct super_block * sb,unsigned long ino)1429 static inline struct inode *iget(struct super_block *sb, unsigned long ino)
1430 {
1431 struct inode *inode = iget4_locked(sb, ino, NULL, NULL);
1432
1433 if (inode && (inode->i_state & I_NEW)) {
1434 sb->s_op->read_inode(inode);
1435 unlock_new_inode(inode);
1436 }
1437
1438 return inode;
1439 }
1440
iget_locked(struct super_block * sb,unsigned long ino)1441 static inline struct inode *iget_locked(struct super_block *sb, unsigned long ino)
1442 {
1443 return iget4_locked(sb, ino, NULL, NULL);
1444 }
1445
1446 extern void clear_inode(struct inode *);
1447 extern struct inode *new_inode(struct super_block *sb);
1448 extern void remove_suid(struct inode *inode);
1449
1450 extern void insert_inode_hash(struct inode *);
1451 extern void remove_inode_hash(struct inode *);
1452 extern struct file * get_empty_filp(void);
1453 extern void file_move(struct file *f, struct list_head *list);
1454 extern struct buffer_head * get_hash_table(kdev_t, int, int);
1455 extern struct buffer_head * getblk(kdev_t, int, int);
1456 extern void ll_rw_block(int, int, struct buffer_head * bh[]);
1457 extern void submit_bh(int, struct buffer_head *);
1458 extern int is_read_only(kdev_t);
1459 extern void __brelse(struct buffer_head *);
brelse(struct buffer_head * buf)1460 static inline void brelse(struct buffer_head *buf)
1461 {
1462 if (buf)
1463 __brelse(buf);
1464 }
1465 extern void __bforget(struct buffer_head *);
bforget(struct buffer_head * buf)1466 static inline void bforget(struct buffer_head *buf)
1467 {
1468 if (buf)
1469 __bforget(buf);
1470 }
1471 extern int set_blocksize(kdev_t, int);
1472 extern int sb_set_blocksize(struct super_block *, int);
1473 extern int sb_min_blocksize(struct super_block *, int);
1474 extern struct buffer_head * bread(kdev_t, int, int);
sb_bread(struct super_block * sb,int block)1475 static inline struct buffer_head * sb_bread(struct super_block *sb, int block)
1476 {
1477 return bread(sb->s_dev, block, sb->s_blocksize);
1478 }
sb_getblk(struct super_block * sb,int block)1479 static inline struct buffer_head * sb_getblk(struct super_block *sb, int block)
1480 {
1481 return getblk(sb->s_dev, block, sb->s_blocksize);
1482 }
sb_get_hash_table(struct super_block * sb,int block)1483 static inline struct buffer_head * sb_get_hash_table(struct super_block *sb, int block)
1484 {
1485 return get_hash_table(sb->s_dev, block, sb->s_blocksize);
1486 }
1487 extern void wakeup_bdflush(void);
1488 extern void wakeup_kupdate(void);
1489 extern void put_unused_buffer_head(struct buffer_head * bh);
1490 extern struct buffer_head * get_unused_buffer_head(int async);
1491 extern int block_dump;
1492
1493 extern int brw_page(int, struct page *, kdev_t, int [], int);
1494
1495 typedef int (get_block_t)(struct inode*,long,struct buffer_head*,int);
1496
1497 /* Generic buffer handling for block filesystems.. */
1498 extern int try_to_release_page(struct page * page, int gfp_mask);
1499 extern int discard_bh_page(struct page *, unsigned long, int);
1500 #define block_flushpage(page, offset) discard_bh_page(page, offset, 1)
1501 #define block_invalidate_page(page) discard_bh_page(page, 0, 0)
1502 extern int block_symlink(struct inode *, const char *, int);
1503 extern int block_write_full_page(struct page*, get_block_t*);
1504 extern int block_read_full_page(struct page*, get_block_t*);
1505 extern int block_prepare_write(struct page*, unsigned, unsigned, get_block_t*);
1506 extern int cont_prepare_write(struct page*, unsigned, unsigned, get_block_t*,
1507 unsigned long *);
1508 extern int generic_cont_expand(struct inode *inode, loff_t size) ;
1509 extern int block_commit_write(struct page *page, unsigned from, unsigned to);
1510 extern int block_sync_page(struct page *);
1511
1512 int generic_block_bmap(struct address_space *, long, get_block_t *);
1513 int generic_commit_write(struct file *, struct page *, unsigned, unsigned);
1514 int block_truncate_page(struct address_space *, loff_t, get_block_t *);
1515 extern int generic_direct_IO(int, struct inode *, struct kiobuf *, unsigned long, int, get_block_t *);
1516 extern int waitfor_one_page(struct page *);
1517 extern int writeout_one_page(struct page *);
1518
1519 extern int generic_file_mmap(struct file *, struct vm_area_struct *);
1520 extern int file_read_actor(read_descriptor_t * desc, struct page *page, unsigned long offset, unsigned long size);
1521 extern ssize_t generic_file_read(struct file *, char *, size_t, loff_t *);
1522 extern ssize_t do_generic_direct_read(struct file *, char *, size_t, loff_t *);
1523 extern int precheck_file_write(struct file *, struct inode *, size_t *, loff_t *);
1524 extern ssize_t generic_file_write(struct file *, const char *, size_t, loff_t *);
1525 extern void do_generic_file_read(struct file *, loff_t *, read_descriptor_t *, read_actor_t);
1526 extern ssize_t do_generic_file_write(struct file *, const char *, size_t, loff_t *);
1527 extern ssize_t do_generic_direct_write(struct file *, const char *, size_t, loff_t *);
1528 extern loff_t no_llseek(struct file *file, loff_t offset, int origin);
1529 extern loff_t generic_file_llseek(struct file *file, loff_t offset, int origin);
1530 extern ssize_t generic_read_dir(struct file *, char *, size_t, loff_t *);
1531 extern int generic_file_open(struct inode * inode, struct file * filp);
1532
1533 extern struct file_operations generic_ro_fops;
1534
1535 extern int vfs_readlink(struct dentry *, char *, int, const char *);
1536 extern int vfs_follow_link(struct nameidata *, const char *);
1537 extern int page_readlink(struct dentry *, char *, int);
1538 extern int page_follow_link(struct dentry *, struct nameidata *);
1539 extern struct inode_operations page_symlink_inode_operations;
1540
1541 extern int vfs_readdir(struct file *, filldir_t, void *);
1542 extern int dcache_dir_open(struct inode *, struct file *);
1543 extern int dcache_dir_close(struct inode *, struct file *);
1544 extern loff_t dcache_dir_lseek(struct file *, loff_t, int);
1545 extern int dcache_dir_fsync(struct file *, struct dentry *, int);
1546 extern int dcache_readdir(struct file *, void *, filldir_t);
1547 extern struct file_operations dcache_dir_ops;
1548
1549 extern struct file_system_type *get_fs_type(const char *name);
1550 extern struct super_block *get_super(kdev_t);
1551 extern void drop_super(struct super_block *sb);
is_mounted(kdev_t dev)1552 static inline int is_mounted(kdev_t dev)
1553 {
1554 struct super_block *sb = get_super(dev);
1555 if (sb) {
1556 drop_super(sb);
1557 return 1;
1558 }
1559 return 0;
1560 }
1561 unsigned long generate_cluster(kdev_t, int b[], int);
1562 unsigned long generate_cluster_swab32(kdev_t, int b[], int);
1563 extern kdev_t ROOT_DEV;
1564
1565
1566 extern void show_buffers(void);
1567
1568 #ifdef CONFIG_BLK_DEV_INITRD
1569 extern unsigned int real_root_dev;
1570 #endif
1571
1572 extern ssize_t char_read(struct file *, char *, size_t, loff_t *);
1573 extern ssize_t block_read(struct file *, char *, size_t, loff_t *);
1574 extern int read_ahead[];
1575
1576 extern ssize_t char_write(struct file *, const char *, size_t, loff_t *);
1577 extern ssize_t block_write(struct file *, const char *, size_t, loff_t *);
1578
1579 extern int file_fsync(struct file *, struct dentry *, int);
1580 extern int generic_buffer_fdatasync(struct inode *inode, unsigned long start_idx, unsigned long end_idx);
1581 extern int generic_osync_inode(struct inode *, int);
1582 #define OSYNC_METADATA (1<<0)
1583 #define OSYNC_DATA (1<<1)
1584 #define OSYNC_INODE (1<<2)
1585
1586 extern int inode_change_ok(struct inode *, struct iattr *);
1587 extern int inode_setattr(struct inode *, struct iattr *);
1588
1589 /* kernel/fork.c */
1590 extern int unshare_files(void);
1591
1592 /*
1593 * Common dentry functions for inclusion in the VFS
1594 * or in other stackable file systems. Some of these
1595 * functions were in linux/fs/ C (VFS) files.
1596 *
1597 */
1598
1599 /*
1600 * Locking the parent is needed to:
1601 * - serialize directory operations
1602 * - make sure the parent doesn't change from
1603 * under us in the middle of an operation.
1604 *
1605 * NOTE! Right now we'd rather use a "struct inode"
1606 * for this, but as I expect things to move toward
1607 * using dentries instead for most things it is
1608 * probably better to start with the conceptually
1609 * better interface of relying on a path of dentries.
1610 */
lock_parent(struct dentry * dentry)1611 static inline struct dentry *lock_parent(struct dentry *dentry)
1612 {
1613 struct dentry *dir = dget(dentry->d_parent);
1614
1615 down(&dir->d_inode->i_sem);
1616 return dir;
1617 }
1618
get_parent(struct dentry * dentry)1619 static inline struct dentry *get_parent(struct dentry *dentry)
1620 {
1621 return dget(dentry->d_parent);
1622 }
1623
unlock_dir(struct dentry * dir)1624 static inline void unlock_dir(struct dentry *dir)
1625 {
1626 up(&dir->d_inode->i_sem);
1627 dput(dir);
1628 }
1629
1630 /*
1631 * Whee.. Deadlock country. Happily there are only two VFS
1632 * operations that does this..
1633 */
double_down(struct semaphore * s1,struct semaphore * s2)1634 static inline void double_down(struct semaphore *s1, struct semaphore *s2)
1635 {
1636 if (s1 != s2) {
1637 if ((unsigned long) s1 < (unsigned long) s2) {
1638 struct semaphore *tmp = s2;
1639 s2 = s1; s1 = tmp;
1640 }
1641 down(s1);
1642 }
1643 down(s2);
1644 }
1645
1646 /*
1647 * Ewwwwwwww... _triple_ lock. We are guaranteed that the 3rd argument is
1648 * not equal to 1st and not equal to 2nd - the first case (target is parent of
1649 * source) would be already caught, the second is plain impossible (target is
1650 * its own parent and that case would be caught even earlier). Very messy.
1651 * I _think_ that it works, but no warranties - please, look it through.
1652 * Pox on bloody lusers who mandated overwriting rename() for directories...
1653 */
1654
triple_down(struct semaphore * s1,struct semaphore * s2,struct semaphore * s3)1655 static inline void triple_down(struct semaphore *s1,
1656 struct semaphore *s2,
1657 struct semaphore *s3)
1658 {
1659 if (s1 != s2) {
1660 if ((unsigned long) s1 < (unsigned long) s2) {
1661 if ((unsigned long) s1 < (unsigned long) s3) {
1662 struct semaphore *tmp = s3;
1663 s3 = s1; s1 = tmp;
1664 }
1665 if ((unsigned long) s1 < (unsigned long) s2) {
1666 struct semaphore *tmp = s2;
1667 s2 = s1; s1 = tmp;
1668 }
1669 } else {
1670 if ((unsigned long) s1 < (unsigned long) s3) {
1671 struct semaphore *tmp = s3;
1672 s3 = s1; s1 = tmp;
1673 }
1674 if ((unsigned long) s2 < (unsigned long) s3) {
1675 struct semaphore *tmp = s3;
1676 s3 = s2; s2 = tmp;
1677 }
1678 }
1679 down(s1);
1680 } else if ((unsigned long) s2 < (unsigned long) s3) {
1681 struct semaphore *tmp = s3;
1682 s3 = s2; s2 = tmp;
1683 }
1684 down(s2);
1685 down(s3);
1686 }
1687
double_up(struct semaphore * s1,struct semaphore * s2)1688 static inline void double_up(struct semaphore *s1, struct semaphore *s2)
1689 {
1690 up(s1);
1691 if (s1 != s2)
1692 up(s2);
1693 }
1694
triple_up(struct semaphore * s1,struct semaphore * s2,struct semaphore * s3)1695 static inline void triple_up(struct semaphore *s1,
1696 struct semaphore *s2,
1697 struct semaphore *s3)
1698 {
1699 up(s1);
1700 if (s1 != s2)
1701 up(s2);
1702 up(s3);
1703 }
1704
double_lock(struct dentry * d1,struct dentry * d2)1705 static inline void double_lock(struct dentry *d1, struct dentry *d2)
1706 {
1707 double_down(&d1->d_inode->i_sem, &d2->d_inode->i_sem);
1708 }
1709
double_unlock(struct dentry * d1,struct dentry * d2)1710 static inline void double_unlock(struct dentry *d1, struct dentry *d2)
1711 {
1712 double_up(&d1->d_inode->i_sem,&d2->d_inode->i_sem);
1713 dput(d1);
1714 dput(d2);
1715 }
1716
1717 #endif /* __KERNEL__ */
1718
1719 #endif /* _LINUX_FS_H */
1720