diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-06 14:32:21 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-06 14:32:21 -0500 |
commit | 66ce3cf84deba6cc71dcf43c9d56a4278e5f712d (patch) | |
tree | 7580bcc42fc7c52620b98d78ebdc654bd7ed83ea /fs/xfs/xfs_vnodeops.h | |
parent | 05c5cb31ec47cacf38db56d9efaa37ca9d473132 (diff) | |
parent | 9b1f56d60acfd634728f91f34922066c6f80ede6 (diff) |
Merge branch 'for-linus' of git://oss.sgi.com/xfs/xfs
* 'for-linus' of git://oss.sgi.com/xfs/xfs: (21 commits)
xfs: return inode fork offset in bulkstat for fsr
xfs: Increase the default size of the reserved blocks pool
xfs: truncate delalloc extents when IO fails in writeback
xfs: check for more work before sleeping in xfssyncd
xfs: Fix a build warning in xfs_aops.c
xfs: fix locking for inode cache radix tree tag updates
xfs: remove xfs_ipin/xfs_iunpin
xfs: cleanup xfs_iunpin_wait/xfs_iunpin_nowait
xfs: kill xfs_lrw.h
xfs: factor common xfs_trans_bjoin code
xfs: stop passing opaque handles to xfs_log.c routines
xfs: split xfs_bmap_btalloc
xfs: fix xfs_fsblock_t tracing
xfs: fix inode pincount check in fsync
xfs: Non-blocking inode locking in IO completion
xfs: implement optimized fdatasync
xfs: remove wrapper for the fsync file operation
xfs: remove wrappers for read/write file operations
xfs: merge xfs_lrw.c into xfs_file.c
xfs: fix dquota trace format
...
Diffstat (limited to 'fs/xfs/xfs_vnodeops.h')
-rw-r--r-- | fs/xfs/xfs_vnodeops.h | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/fs/xfs/xfs_vnodeops.h b/fs/xfs/xfs_vnodeops.h index 774f40729ca1..d8dfa8d0dadd 100644 --- a/fs/xfs/xfs_vnodeops.h +++ b/fs/xfs/xfs_vnodeops.h | |||
@@ -21,7 +21,6 @@ int xfs_setattr(struct xfs_inode *ip, struct iattr *vap, int flags); | |||
21 | #define XFS_ATTR_NOACL 0x08 /* Don't call xfs_acl_chmod */ | 21 | #define XFS_ATTR_NOACL 0x08 /* Don't call xfs_acl_chmod */ |
22 | 22 | ||
23 | int xfs_readlink(struct xfs_inode *ip, char *link); | 23 | int xfs_readlink(struct xfs_inode *ip, char *link); |
24 | int xfs_fsync(struct xfs_inode *ip); | ||
25 | int xfs_release(struct xfs_inode *ip); | 24 | int xfs_release(struct xfs_inode *ip); |
26 | int xfs_inactive(struct xfs_inode *ip); | 25 | int xfs_inactive(struct xfs_inode *ip); |
27 | int xfs_lookup(struct xfs_inode *dp, struct xfs_name *name, | 26 | int xfs_lookup(struct xfs_inode *dp, struct xfs_name *name, |
@@ -50,18 +49,6 @@ int xfs_attr_set(struct xfs_inode *dp, const unsigned char *name, | |||
50 | int xfs_attr_remove(struct xfs_inode *dp, const unsigned char *name, int flags); | 49 | int xfs_attr_remove(struct xfs_inode *dp, const unsigned char *name, int flags); |
51 | int xfs_attr_list(struct xfs_inode *dp, char *buffer, int bufsize, | 50 | int xfs_attr_list(struct xfs_inode *dp, char *buffer, int bufsize, |
52 | int flags, struct attrlist_cursor_kern *cursor); | 51 | int flags, struct attrlist_cursor_kern *cursor); |
53 | ssize_t xfs_read(struct xfs_inode *ip, struct kiocb *iocb, | ||
54 | const struct iovec *iovp, unsigned int segs, | ||
55 | loff_t *offset, int ioflags); | ||
56 | ssize_t xfs_splice_read(struct xfs_inode *ip, struct file *infilp, | ||
57 | loff_t *ppos, struct pipe_inode_info *pipe, size_t count, | ||
58 | int flags, int ioflags); | ||
59 | ssize_t xfs_splice_write(struct xfs_inode *ip, | ||
60 | struct pipe_inode_info *pipe, struct file *outfilp, | ||
61 | loff_t *ppos, size_t count, int flags, int ioflags); | ||
62 | ssize_t xfs_write(struct xfs_inode *xip, struct kiocb *iocb, | ||
63 | const struct iovec *iovp, unsigned int nsegs, | ||
64 | loff_t *offset, int ioflags); | ||
65 | int xfs_bmap(struct xfs_inode *ip, xfs_off_t offset, ssize_t count, | 52 | int xfs_bmap(struct xfs_inode *ip, xfs_off_t offset, ssize_t count, |
66 | int flags, struct xfs_iomap *iomapp, int *niomaps); | 53 | int flags, struct xfs_iomap *iomapp, int *niomaps); |
67 | void xfs_tosspages(struct xfs_inode *inode, xfs_off_t first, | 54 | void xfs_tosspages(struct xfs_inode *inode, xfs_off_t first, |
@@ -72,4 +59,6 @@ int xfs_flush_pages(struct xfs_inode *ip, xfs_off_t first, | |||
72 | xfs_off_t last, uint64_t flags, int fiopt); | 59 | xfs_off_t last, uint64_t flags, int fiopt); |
73 | int xfs_wait_on_pages(struct xfs_inode *ip, xfs_off_t first, xfs_off_t last); | 60 | int xfs_wait_on_pages(struct xfs_inode *ip, xfs_off_t first, xfs_off_t last); |
74 | 61 | ||
62 | int xfs_zero_eof(struct xfs_inode *, xfs_off_t, xfs_fsize_t); | ||
63 | |||
75 | #endif /* _XFS_VNODEOPS_H */ | 64 | #endif /* _XFS_VNODEOPS_H */ |