diff options
Diffstat (limited to 'fs/xfs')
86 files changed, 3039 insertions, 3150 deletions
diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile index 56641fe52a23..b4769e40e8bc 100644 --- a/fs/xfs/Makefile +++ b/fs/xfs/Makefile  | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | 16 | # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | 
| 17 | # | 17 | # | 
| 18 | 18 | ||
| 19 | EXTRA_CFLAGS += -I$(src) -I$(src)/linux-2.6 -funsigned-char | 19 | EXTRA_CFLAGS += -I$(src) -I$(src)/linux-2.6 | 
| 20 | 20 | ||
| 21 | XFS_LINUX := linux-2.6 | 21 | XFS_LINUX := linux-2.6 | 
| 22 | 22 | ||
| @@ -105,7 +105,6 @@ xfs-y += $(addprefix $(XFS_LINUX)/, \ | |||
| 105 | xfs_globals.o \ | 105 | xfs_globals.o \ | 
| 106 | xfs_ioctl.o \ | 106 | xfs_ioctl.o \ | 
| 107 | xfs_iops.o \ | 107 | xfs_iops.o \ | 
| 108 | xfs_lrw.o \ | ||
| 109 | xfs_super.o \ | 108 | xfs_super.o \ | 
| 110 | xfs_sync.o \ | 109 | xfs_sync.o \ | 
| 111 | xfs_xattr.o) | 110 | xfs_xattr.o) | 
diff --git a/fs/xfs/linux-2.6/kmem.c b/fs/xfs/linux-2.6/kmem.c index 2d3f90afe5f1..bc7405585def 100644 --- a/fs/xfs/linux-2.6/kmem.c +++ b/fs/xfs/linux-2.6/kmem.c  | |||
| @@ -16,7 +16,6 @@ | |||
| 16 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | 16 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | 
| 17 | */ | 17 | */ | 
| 18 | #include <linux/mm.h> | 18 | #include <linux/mm.h> | 
| 19 | #include <linux/vmalloc.h> | ||
| 20 | #include <linux/highmem.h> | 19 | #include <linux/highmem.h> | 
| 21 | #include <linux/swap.h> | 20 | #include <linux/swap.h> | 
| 22 | #include <linux/blkdev.h> | 21 | #include <linux/blkdev.h> | 
| @@ -24,8 +23,25 @@ | |||
| 24 | #include "time.h" | 23 | #include "time.h" | 
| 25 | #include "kmem.h" | 24 | #include "kmem.h" | 
| 26 | 25 | ||
| 27 | #define MAX_VMALLOCS 6 | 26 | /* | 
| 28 | #define MAX_SLAB_SIZE 0x20000 | 27 | * Greedy allocation. May fail and may return vmalloced memory. | 
| 28 | * | ||
| 29 | * Must be freed using kmem_free_large. | ||
| 30 | */ | ||
| 31 | void * | ||
| 32 | kmem_zalloc_greedy(size_t *size, size_t minsize, size_t maxsize) | ||
| 33 | { | ||
| 34 | void *ptr; | ||
| 35 | size_t kmsize = maxsize; | ||
| 36 | |||
| 37 | while (!(ptr = kmem_zalloc_large(kmsize))) { | ||
| 38 | if ((kmsize >>= 1) <= minsize) | ||
| 39 | kmsize = minsize; | ||
| 40 | } | ||
| 41 | if (ptr) | ||
| 42 | *size = kmsize; | ||
| 43 | return ptr; | ||
| 44 | } | ||
| 29 | 45 | ||
| 30 | void * | 46 | void * | 
| 31 | kmem_alloc(size_t size, unsigned int __nocast flags) | 47 | kmem_alloc(size_t size, unsigned int __nocast flags) | 
| @@ -34,19 +50,8 @@ kmem_alloc(size_t size, unsigned int __nocast flags) | |||
| 34 | gfp_t lflags = kmem_flags_convert(flags); | 50 | gfp_t lflags = kmem_flags_convert(flags); | 
| 35 | void *ptr; | 51 | void *ptr; | 
| 36 | 52 | ||
| 37 | #ifdef DEBUG | ||
| 38 | if (unlikely(!(flags & KM_LARGE) && (size > PAGE_SIZE))) { | ||
| 39 | printk(KERN_WARNING "Large %s attempt, size=%ld\n", | ||
| 40 | __func__, (long)size); | ||
| 41 | dump_stack(); | ||
| 42 | } | ||
| 43 | #endif | ||
| 44 | |||
| 45 | do { | 53 | do { | 
| 46 | if (size < MAX_SLAB_SIZE || retries > MAX_VMALLOCS) | 54 | ptr = kmalloc(size, lflags); | 
| 47 | ptr = kmalloc(size, lflags); | ||
| 48 | else | ||
| 49 | ptr = __vmalloc(size, lflags, PAGE_KERNEL); | ||
| 50 | if (ptr || (flags & (KM_MAYFAIL|KM_NOSLEEP))) | 55 | if (ptr || (flags & (KM_MAYFAIL|KM_NOSLEEP))) | 
| 51 | return ptr; | 56 | return ptr; | 
| 52 | if (!(++retries % 100)) | 57 | if (!(++retries % 100)) | 
| @@ -68,27 +73,6 @@ kmem_zalloc(size_t size, unsigned int __nocast flags) | |||
| 68 | return ptr; | 73 | return ptr; | 
| 69 | } | 74 | } | 
| 70 | 75 | ||
| 71 | void * | ||
| 72 | kmem_zalloc_greedy(size_t *size, size_t minsize, size_t maxsize, | ||
| 73 | unsigned int __nocast flags) | ||
| 74 | { | ||
| 75 | void *ptr; | ||
| 76 | size_t kmsize = maxsize; | ||
| 77 | unsigned int kmflags = (flags & ~KM_SLEEP) | KM_NOSLEEP; | ||
| 78 | |||
| 79 | while (!(ptr = kmem_zalloc(kmsize, kmflags))) { | ||
| 80 | if ((kmsize <= minsize) && (flags & KM_NOSLEEP)) | ||
| 81 | break; | ||
| 82 | if ((kmsize >>= 1) <= minsize) { | ||
| 83 | kmsize = minsize; | ||
| 84 | kmflags = flags; | ||
| 85 | } | ||
| 86 | } | ||
| 87 | if (ptr) | ||
| 88 | *size = kmsize; | ||
| 89 | return ptr; | ||
| 90 | } | ||
| 91 | |||
| 92 | void | 76 | void | 
| 93 | kmem_free(const void *ptr) | 77 | kmem_free(const void *ptr) | 
| 94 | { | 78 | { | 
diff --git a/fs/xfs/linux-2.6/kmem.h b/fs/xfs/linux-2.6/kmem.h index 179cbd630f69..f7c8f7a9ea6d 100644 --- a/fs/xfs/linux-2.6/kmem.h +++ b/fs/xfs/linux-2.6/kmem.h  | |||
| @@ -21,6 +21,7 @@ | |||
| 21 | #include <linux/slab.h> | 21 | #include <linux/slab.h> | 
| 22 | #include <linux/sched.h> | 22 | #include <linux/sched.h> | 
| 23 | #include <linux/mm.h> | 23 | #include <linux/mm.h> | 
| 24 | #include <linux/vmalloc.h> | ||
| 24 | 25 | ||
| 25 | /* | 26 | /* | 
| 26 | * General memory allocation interfaces | 27 | * General memory allocation interfaces | 
| @@ -30,7 +31,6 @@ | |||
| 30 | #define KM_NOSLEEP 0x0002u | 31 | #define KM_NOSLEEP 0x0002u | 
| 31 | #define KM_NOFS 0x0004u | 32 | #define KM_NOFS 0x0004u | 
| 32 | #define KM_MAYFAIL 0x0008u | 33 | #define KM_MAYFAIL 0x0008u | 
| 33 | #define KM_LARGE 0x0010u | ||
| 34 | 34 | ||
| 35 | /* | 35 | /* | 
| 36 | * We use a special process flag to avoid recursive callbacks into | 36 | * We use a special process flag to avoid recursive callbacks into | 
| @@ -42,7 +42,7 @@ kmem_flags_convert(unsigned int __nocast flags) | |||
| 42 | { | 42 | { | 
| 43 | gfp_t lflags; | 43 | gfp_t lflags; | 
| 44 | 44 | ||
| 45 | BUG_ON(flags & ~(KM_SLEEP|KM_NOSLEEP|KM_NOFS|KM_MAYFAIL|KM_LARGE)); | 45 | BUG_ON(flags & ~(KM_SLEEP|KM_NOSLEEP|KM_NOFS|KM_MAYFAIL)); | 
| 46 | 46 | ||
| 47 | if (flags & KM_NOSLEEP) { | 47 | if (flags & KM_NOSLEEP) { | 
| 48 | lflags = GFP_ATOMIC | __GFP_NOWARN; | 48 | lflags = GFP_ATOMIC | __GFP_NOWARN; | 
| @@ -56,10 +56,25 @@ kmem_flags_convert(unsigned int __nocast flags) | |||
| 56 | 56 | ||
| 57 | extern void *kmem_alloc(size_t, unsigned int __nocast); | 57 | extern void *kmem_alloc(size_t, unsigned int __nocast); | 
| 58 | extern void *kmem_zalloc(size_t, unsigned int __nocast); | 58 | extern void *kmem_zalloc(size_t, unsigned int __nocast); | 
| 59 | extern void *kmem_zalloc_greedy(size_t *, size_t, size_t, unsigned int __nocast); | ||
| 60 | extern void *kmem_realloc(const void *, size_t, size_t, unsigned int __nocast); | 59 | extern void *kmem_realloc(const void *, size_t, size_t, unsigned int __nocast); | 
| 61 | extern void kmem_free(const void *); | 60 | extern void kmem_free(const void *); | 
| 62 | 61 | ||
| 62 | static inline void *kmem_zalloc_large(size_t size) | ||
| 63 | { | ||
| 64 | void *ptr; | ||
| 65 | |||
| 66 | ptr = vmalloc(size); | ||
| 67 | if (ptr) | ||
| 68 | memset(ptr, 0, size); | ||
| 69 | return ptr; | ||
| 70 | } | ||
| 71 | static inline void kmem_free_large(void *ptr) | ||
| 72 | { | ||
| 73 | vfree(ptr); | ||
| 74 | } | ||
| 75 | |||
| 76 | extern void *kmem_zalloc_greedy(size_t *, size_t, size_t); | ||
| 77 | |||
| 63 | /* | 78 | /* | 
| 64 | * Zone interfaces | 79 | * Zone interfaces | 
| 65 | */ | 80 | */ | 
diff --git a/fs/xfs/linux-2.6/xfs_acl.c b/fs/xfs/linux-2.6/xfs_acl.c index 883ca5ab8af5..bf85bbe4a9ae 100644 --- a/fs/xfs/linux-2.6/xfs_acl.c +++ b/fs/xfs/linux-2.6/xfs_acl.c  | |||
| @@ -106,7 +106,7 @@ xfs_get_acl(struct inode *inode, int type) | |||
| 106 | struct posix_acl *acl; | 106 | struct posix_acl *acl; | 
| 107 | struct xfs_acl *xfs_acl; | 107 | struct xfs_acl *xfs_acl; | 
| 108 | int len = sizeof(struct xfs_acl); | 108 | int len = sizeof(struct xfs_acl); | 
| 109 | char *ea_name; | 109 | unsigned char *ea_name; | 
| 110 | int error; | 110 | int error; | 
| 111 | 111 | ||
| 112 | acl = get_cached_acl(inode, type); | 112 | acl = get_cached_acl(inode, type); | 
| @@ -133,7 +133,8 @@ xfs_get_acl(struct inode *inode, int type) | |||
| 133 | if (!xfs_acl) | 133 | if (!xfs_acl) | 
| 134 | return ERR_PTR(-ENOMEM); | 134 | return ERR_PTR(-ENOMEM); | 
| 135 | 135 | ||
| 136 | error = -xfs_attr_get(ip, ea_name, (char *)xfs_acl, &len, ATTR_ROOT); | 136 | error = -xfs_attr_get(ip, ea_name, (unsigned char *)xfs_acl, | 
| 137 | &len, ATTR_ROOT); | ||
| 137 | if (error) { | 138 | if (error) { | 
| 138 | /* | 139 | /* | 
| 139 | * If the attribute doesn't exist make sure we have a negative | 140 | * If the attribute doesn't exist make sure we have a negative | 
| @@ -162,7 +163,7 @@ STATIC int | |||
| 162 | xfs_set_acl(struct inode *inode, int type, struct posix_acl *acl) | 163 | xfs_set_acl(struct inode *inode, int type, struct posix_acl *acl) | 
| 163 | { | 164 | { | 
| 164 | struct xfs_inode *ip = XFS_I(inode); | 165 | struct xfs_inode *ip = XFS_I(inode); | 
| 165 | char *ea_name; | 166 | unsigned char *ea_name; | 
| 166 | int error; | 167 | int error; | 
| 167 | 168 | ||
| 168 | if (S_ISLNK(inode->i_mode)) | 169 | if (S_ISLNK(inode->i_mode)) | 
| @@ -194,7 +195,7 @@ xfs_set_acl(struct inode *inode, int type, struct posix_acl *acl) | |||
| 194 | (sizeof(struct xfs_acl_entry) * | 195 | (sizeof(struct xfs_acl_entry) * | 
| 195 | (XFS_ACL_MAX_ENTRIES - acl->a_count)); | 196 | (XFS_ACL_MAX_ENTRIES - acl->a_count)); | 
| 196 | 197 | ||
| 197 | error = -xfs_attr_set(ip, ea_name, (char *)xfs_acl, | 198 | error = -xfs_attr_set(ip, ea_name, (unsigned char *)xfs_acl, | 
| 198 | len, ATTR_ROOT); | 199 | len, ATTR_ROOT); | 
| 199 | 200 | ||
| 200 | kfree(xfs_acl); | 201 | kfree(xfs_acl); | 
| @@ -262,7 +263,7 @@ xfs_set_mode(struct inode *inode, mode_t mode) | |||
| 262 | } | 263 | } | 
| 263 | 264 | ||
| 264 | static int | 265 | static int | 
| 265 | xfs_acl_exists(struct inode *inode, char *name) | 266 | xfs_acl_exists(struct inode *inode, unsigned char *name) | 
| 266 | { | 267 | { | 
| 267 | int len = sizeof(struct xfs_acl); | 268 | int len = sizeof(struct xfs_acl); | 
| 268 | 269 | ||
diff --git a/fs/xfs/linux-2.6/xfs_aops.c b/fs/xfs/linux-2.6/xfs_aops.c index 66abe36c1213..99628508cb11 100644 --- a/fs/xfs/linux-2.6/xfs_aops.c +++ b/fs/xfs/linux-2.6/xfs_aops.c  | |||
| @@ -39,6 +39,7 @@ | |||
| 39 | #include "xfs_iomap.h" | 39 | #include "xfs_iomap.h" | 
| 40 | #include "xfs_vnodeops.h" | 40 | #include "xfs_vnodeops.h" | 
| 41 | #include "xfs_trace.h" | 41 | #include "xfs_trace.h" | 
| 42 | #include "xfs_bmap.h" | ||
| 42 | #include <linux/mpage.h> | 43 | #include <linux/mpage.h> | 
| 43 | #include <linux/pagevec.h> | 44 | #include <linux/pagevec.h> | 
| 44 | #include <linux/writeback.h> | 45 | #include <linux/writeback.h> | 
| @@ -163,14 +164,17 @@ xfs_ioend_new_eof( | |||
| 163 | } | 164 | } | 
| 164 | 165 | ||
| 165 | /* | 166 | /* | 
| 166 | * Update on-disk file size now that data has been written to disk. | 167 | * Update on-disk file size now that data has been written to disk. The | 
| 167 | * The current in-memory file size is i_size. If a write is beyond | 168 | * current in-memory file size is i_size. If a write is beyond eof i_new_size | 
| 168 | * eof i_new_size will be the intended file size until i_size is | 169 | * will be the intended file size until i_size is updated. If this write does | 
| 169 | * updated. If this write does not extend all the way to the valid | 170 | * not extend all the way to the valid file size then restrict this update to | 
| 170 | * file size then restrict this update to the end of the write. | 171 | * the end of the write. | 
| 172 | * | ||
| 173 | * This function does not block as blocking on the inode lock in IO completion | ||
| 174 | * can lead to IO completion order dependency deadlocks.. If it can't get the | ||
| 175 | * inode ilock it will return EAGAIN. Callers must handle this. | ||
| 171 | */ | 176 | */ | 
| 172 | 177 | STATIC int | |
| 173 | STATIC void | ||
| 174 | xfs_setfilesize( | 178 | xfs_setfilesize( | 
| 175 | xfs_ioend_t *ioend) | 179 | xfs_ioend_t *ioend) | 
| 176 | { | 180 | { | 
| @@ -181,16 +185,40 @@ xfs_setfilesize( | |||
| 181 | ASSERT(ioend->io_type != IOMAP_READ); | 185 | ASSERT(ioend->io_type != IOMAP_READ); | 
| 182 | 186 | ||
| 183 | if (unlikely(ioend->io_error)) | 187 | if (unlikely(ioend->io_error)) | 
| 184 | return; | 188 | return 0; | 
| 189 | |||
| 190 | if (!xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) | ||
| 191 | return EAGAIN; | ||
| 185 | 192 | ||
| 186 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 187 | isize = xfs_ioend_new_eof(ioend); | 193 | isize = xfs_ioend_new_eof(ioend); | 
| 188 | if (isize) { | 194 | if (isize) { | 
| 189 | ip->i_d.di_size = isize; | 195 | ip->i_d.di_size = isize; | 
| 190 | xfs_mark_inode_dirty_sync(ip); | 196 | xfs_mark_inode_dirty(ip); | 
| 191 | } | 197 | } | 
| 192 | 198 | ||
| 193 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | 199 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | 
| 200 | return 0; | ||
| 201 | } | ||
| 202 | |||
| 203 | /* | ||
| 204 | * Schedule IO completion handling on a xfsdatad if this was | ||
| 205 | * the final hold on this ioend. If we are asked to wait, | ||
| 206 | * flush the workqueue. | ||
| 207 | */ | ||
| 208 | STATIC void | ||
| 209 | xfs_finish_ioend( | ||
| 210 | xfs_ioend_t *ioend, | ||
| 211 | int wait) | ||
| 212 | { | ||
| 213 | if (atomic_dec_and_test(&ioend->io_remaining)) { | ||
| 214 | struct workqueue_struct *wq; | ||
| 215 | |||
| 216 | wq = (ioend->io_type == IOMAP_UNWRITTEN) ? | ||
| 217 | xfsconvertd_workqueue : xfsdatad_workqueue; | ||
| 218 | queue_work(wq, &ioend->io_work); | ||
| 219 | if (wait) | ||
| 220 | flush_workqueue(wq); | ||
| 221 | } | ||
| 194 | } | 222 | } | 
| 195 | 223 | ||
| 196 | /* | 224 | /* | 
| @@ -198,11 +226,11 @@ xfs_setfilesize( | |||
| 198 | */ | 226 | */ | 
| 199 | STATIC void | 227 | STATIC void | 
| 200 | xfs_end_io( | 228 | xfs_end_io( | 
| 201 | struct work_struct *work) | 229 | struct work_struct *work) | 
| 202 | { | 230 | { | 
| 203 | xfs_ioend_t *ioend = | 231 | xfs_ioend_t *ioend = container_of(work, xfs_ioend_t, io_work); | 
| 204 | container_of(work, xfs_ioend_t, io_work); | 232 | struct xfs_inode *ip = XFS_I(ioend->io_inode); | 
| 205 | struct xfs_inode *ip = XFS_I(ioend->io_inode); | 233 | int error = 0; | 
| 206 | 234 | ||
| 207 | /* | 235 | /* | 
| 208 | * For unwritten extents we need to issue transactions to convert a | 236 | * For unwritten extents we need to issue transactions to convert a | 
| @@ -210,7 +238,6 @@ xfs_end_io( | |||
| 210 | */ | 238 | */ | 
| 211 | if (ioend->io_type == IOMAP_UNWRITTEN && | 239 | if (ioend->io_type == IOMAP_UNWRITTEN && | 
| 212 | likely(!ioend->io_error && !XFS_FORCED_SHUTDOWN(ip->i_mount))) { | 240 | likely(!ioend->io_error && !XFS_FORCED_SHUTDOWN(ip->i_mount))) { | 
| 213 | int error; | ||
| 214 | 241 | ||
| 215 | error = xfs_iomap_write_unwritten(ip, ioend->io_offset, | 242 | error = xfs_iomap_write_unwritten(ip, ioend->io_offset, | 
| 216 | ioend->io_size); | 243 | ioend->io_size); | 
| @@ -222,30 +249,23 @@ xfs_end_io( | |||
| 222 | * We might have to update the on-disk file size after extending | 249 | * We might have to update the on-disk file size after extending | 
| 223 | * writes. | 250 | * writes. | 
| 224 | */ | 251 | */ | 
| 225 | if (ioend->io_type != IOMAP_READ) | 252 | if (ioend->io_type != IOMAP_READ) { | 
| 226 | xfs_setfilesize(ioend); | 253 | error = xfs_setfilesize(ioend); | 
| 227 | xfs_destroy_ioend(ioend); | 254 | ASSERT(!error || error == EAGAIN); | 
| 228 | } | ||
| 229 | |||
| 230 | /* | ||
| 231 | * Schedule IO completion handling on a xfsdatad if this was | ||
| 232 | * the final hold on this ioend. If we are asked to wait, | ||
| 233 | * flush the workqueue. | ||
| 234 | */ | ||
| 235 | STATIC void | ||
| 236 | xfs_finish_ioend( | ||
| 237 | xfs_ioend_t *ioend, | ||
| 238 | int wait) | ||
| 239 | { | ||
| 240 | if (atomic_dec_and_test(&ioend->io_remaining)) { | ||
| 241 | struct workqueue_struct *wq; | ||
| 242 | |||
| 243 | wq = (ioend->io_type == IOMAP_UNWRITTEN) ? | ||
| 244 | xfsconvertd_workqueue : xfsdatad_workqueue; | ||
| 245 | queue_work(wq, &ioend->io_work); | ||
| 246 | if (wait) | ||
| 247 | flush_workqueue(wq); | ||
| 248 | } | 255 | } | 
| 256 | |||
| 257 | /* | ||
| 258 | * If we didn't complete processing of the ioend, requeue it to the | ||
| 259 | * tail of the workqueue for another attempt later. Otherwise destroy | ||
| 260 | * it. | ||
| 261 | */ | ||
| 262 | if (error == EAGAIN) { | ||
| 263 | atomic_inc(&ioend->io_remaining); | ||
| 264 | xfs_finish_ioend(ioend, 0); | ||
| 265 | /* ensure we don't spin on blocked ioends */ | ||
| 266 | delay(1); | ||
| 267 | } else | ||
| 268 | xfs_destroy_ioend(ioend); | ||
| 249 | } | 269 | } | 
| 250 | 270 | ||
| 251 | /* | 271 | /* | 
| @@ -341,7 +361,7 @@ xfs_submit_ioend_bio( | |||
| 341 | * but don't update the inode size until I/O completion. | 361 | * but don't update the inode size until I/O completion. | 
| 342 | */ | 362 | */ | 
| 343 | if (xfs_ioend_new_eof(ioend)) | 363 | if (xfs_ioend_new_eof(ioend)) | 
| 344 | xfs_mark_inode_dirty_sync(XFS_I(ioend->io_inode)); | 364 | xfs_mark_inode_dirty(XFS_I(ioend->io_inode)); | 
| 345 | 365 | ||
| 346 | submit_bio(wbc->sync_mode == WB_SYNC_ALL ? | 366 | submit_bio(wbc->sync_mode == WB_SYNC_ALL ? | 
| 347 | WRITE_SYNC_PLUG : WRITE, bio); | 367 | WRITE_SYNC_PLUG : WRITE, bio); | 
| @@ -874,6 +894,125 @@ xfs_cluster_write( | |||
| 874 | } | 894 | } | 
| 875 | } | 895 | } | 
| 876 | 896 | ||
| 897 | STATIC void | ||
| 898 | xfs_vm_invalidatepage( | ||
| 899 | struct page *page, | ||
| 900 | unsigned long offset) | ||
| 901 | { | ||
| 902 | trace_xfs_invalidatepage(page->mapping->host, page, offset); | ||
| 903 | block_invalidatepage(page, offset); | ||
| 904 | } | ||
| 905 | |||
| 906 | /* | ||
| 907 | * If the page has delalloc buffers on it, we need to punch them out before we | ||
| 908 | * invalidate the page. If we don't, we leave a stale delalloc mapping on the | ||
| 909 | * inode that can trip a BUG() in xfs_get_blocks() later on if a direct IO read | ||
| 910 | * is done on that same region - the delalloc extent is returned when none is | ||
| 911 | * supposed to be there. | ||
| 912 | * | ||
| 913 | * We prevent this by truncating away the delalloc regions on the page before | ||
| 914 | * invalidating it. Because they are delalloc, we can do this without needing a | ||
| 915 | * transaction. Indeed - if we get ENOSPC errors, we have to be able to do this | ||
| 916 | * truncation without a transaction as there is no space left for block | ||
| 917 | * reservation (typically why we see a ENOSPC in writeback). | ||
| 918 | * | ||
| 919 | * This is not a performance critical path, so for now just do the punching a | ||
| 920 | * buffer head at a time. | ||
| 921 | */ | ||
| 922 | STATIC void | ||
| 923 | xfs_aops_discard_page( | ||
| 924 | struct page *page) | ||
| 925 | { | ||
| 926 | struct inode *inode = page->mapping->host; | ||
| 927 | struct xfs_inode *ip = XFS_I(inode); | ||
| 928 | struct buffer_head *bh, *head; | ||
| 929 | loff_t offset = page_offset(page); | ||
| 930 | ssize_t len = 1 << inode->i_blkbits; | ||
| 931 | |||
| 932 | if (!xfs_is_delayed_page(page, IOMAP_DELAY)) | ||
| 933 | goto out_invalidate; | ||
| 934 | |||
| 935 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) | ||
| 936 | goto out_invalidate; | ||
| 937 | |||
| 938 | xfs_fs_cmn_err(CE_ALERT, ip->i_mount, | ||
| 939 | "page discard on page %p, inode 0x%llx, offset %llu.", | ||
| 940 | page, ip->i_ino, offset); | ||
| 941 | |||
| 942 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 943 | bh = head = page_buffers(page); | ||
| 944 | do { | ||
| 945 | int done; | ||
| 946 | xfs_fileoff_t offset_fsb; | ||
| 947 | xfs_bmbt_irec_t imap; | ||
| 948 | int nimaps = 1; | ||
| 949 | int error; | ||
| 950 | xfs_fsblock_t firstblock; | ||
| 951 | xfs_bmap_free_t flist; | ||
| 952 | |||
| 953 | if (!buffer_delay(bh)) | ||
| 954 | goto next_buffer; | ||
| 955 | |||
| 956 | offset_fsb = XFS_B_TO_FSBT(ip->i_mount, offset); | ||
| 957 | |||
| 958 | /* | ||
| 959 | * Map the range first and check that it is a delalloc extent | ||
| 960 | * before trying to unmap the range. Otherwise we will be | ||
| 961 | * trying to remove a real extent (which requires a | ||
| 962 | * transaction) or a hole, which is probably a bad idea... | ||
| 963 | */ | ||
| 964 | error = xfs_bmapi(NULL, ip, offset_fsb, 1, | ||
| 965 | XFS_BMAPI_ENTIRE, NULL, 0, &imap, | ||
| 966 | &nimaps, NULL, NULL); | ||
| 967 | |||
| 968 | if (error) { | ||
| 969 | /* something screwed, just bail */ | ||
| 970 | if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) { | ||
| 971 | xfs_fs_cmn_err(CE_ALERT, ip->i_mount, | ||
| 972 | "page discard failed delalloc mapping lookup."); | ||
| 973 | } | ||
| 974 | break; | ||
| 975 | } | ||
| 976 | if (!nimaps) { | ||
| 977 | /* nothing there */ | ||
| 978 | goto next_buffer; | ||
| 979 | } | ||
| 980 | if (imap.br_startblock != DELAYSTARTBLOCK) { | ||
| 981 | /* been converted, ignore */ | ||
| 982 | goto next_buffer; | ||
| 983 | } | ||
| 984 | WARN_ON(imap.br_blockcount == 0); | ||
| 985 | |||
| 986 | /* | ||
| 987 | * Note: while we initialise the firstblock/flist pair, they | ||
| 988 | * should never be used because blocks should never be | ||
| 989 | * allocated or freed for a delalloc extent and hence we need | ||
| 990 | * don't cancel or finish them after the xfs_bunmapi() call. | ||
| 991 | */ | ||
| 992 | xfs_bmap_init(&flist, &firstblock); | ||
| 993 | error = xfs_bunmapi(NULL, ip, offset_fsb, 1, 0, 1, &firstblock, | ||
| 994 | &flist, NULL, &done); | ||
| 995 | |||
| 996 | ASSERT(!flist.xbf_count && !flist.xbf_first); | ||
| 997 | if (error) { | ||
| 998 | /* something screwed, just bail */ | ||
| 999 | if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) { | ||
| 1000 | xfs_fs_cmn_err(CE_ALERT, ip->i_mount, | ||
| 1001 | "page discard unable to remove delalloc mapping."); | ||
| 1002 | } | ||
| 1003 | break; | ||
| 1004 | } | ||
| 1005 | next_buffer: | ||
| 1006 | offset += len; | ||
| 1007 | |||
| 1008 | } while ((bh = bh->b_this_page) != head); | ||
| 1009 | |||
| 1010 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 1011 | out_invalidate: | ||
| 1012 | xfs_vm_invalidatepage(page, 0); | ||
| 1013 | return; | ||
| 1014 | } | ||
| 1015 | |||
| 877 | /* | 1016 | /* | 
| 878 | * Calling this without startio set means we are being asked to make a dirty | 1017 | * Calling this without startio set means we are being asked to make a dirty | 
| 879 | * page ready for freeing it's buffers. When called with startio set then | 1018 | * page ready for freeing it's buffers. When called with startio set then | 
| @@ -1125,7 +1264,7 @@ error: | |||
| 1125 | */ | 1264 | */ | 
| 1126 | if (err != -EAGAIN) { | 1265 | if (err != -EAGAIN) { | 
| 1127 | if (!unmapped) | 1266 | if (!unmapped) | 
| 1128 | block_invalidatepage(page, 0); | 1267 | xfs_aops_discard_page(page); | 
| 1129 | ClearPageUptodate(page); | 1268 | ClearPageUptodate(page); | 
| 1130 | } | 1269 | } | 
| 1131 | return err; | 1270 | return err; | 
| @@ -1535,15 +1674,6 @@ xfs_vm_readpages( | |||
| 1535 | return mpage_readpages(mapping, pages, nr_pages, xfs_get_blocks); | 1674 | return mpage_readpages(mapping, pages, nr_pages, xfs_get_blocks); | 
| 1536 | } | 1675 | } | 
| 1537 | 1676 | ||
| 1538 | STATIC void | ||
| 1539 | xfs_vm_invalidatepage( | ||
| 1540 | struct page *page, | ||
| 1541 | unsigned long offset) | ||
| 1542 | { | ||
| 1543 | trace_xfs_invalidatepage(page->mapping->host, page, offset); | ||
| 1544 | block_invalidatepage(page, offset); | ||
| 1545 | } | ||
| 1546 | |||
| 1547 | const struct address_space_operations xfs_address_space_operations = { | 1677 | const struct address_space_operations xfs_address_space_operations = { | 
| 1548 | .readpage = xfs_vm_readpage, | 1678 | .readpage = xfs_vm_readpage, | 
| 1549 | .readpages = xfs_vm_readpages, | 1679 | .readpages = xfs_vm_readpages, | 
diff --git a/fs/xfs/linux-2.6/xfs_buf.c b/fs/xfs/linux-2.6/xfs_buf.c index 77b8be81c769..bd111b7e1daa 100644 --- a/fs/xfs/linux-2.6/xfs_buf.c +++ b/fs/xfs/linux-2.6/xfs_buf.c  | |||
| @@ -33,6 +33,7 @@ | |||
| 33 | #include <linux/migrate.h> | 33 | #include <linux/migrate.h> | 
| 34 | #include <linux/backing-dev.h> | 34 | #include <linux/backing-dev.h> | 
| 35 | #include <linux/freezer.h> | 35 | #include <linux/freezer.h> | 
| 36 | #include <linux/list_sort.h> | ||
| 36 | 37 | ||
| 37 | #include "xfs_sb.h" | 38 | #include "xfs_sb.h" | 
| 38 | #include "xfs_inum.h" | 39 | #include "xfs_inum.h" | 
| @@ -76,6 +77,27 @@ struct workqueue_struct *xfsconvertd_workqueue; | |||
| 76 | #define xfs_buf_deallocate(bp) \ | 77 | #define xfs_buf_deallocate(bp) \ | 
| 77 | kmem_zone_free(xfs_buf_zone, (bp)); | 78 | kmem_zone_free(xfs_buf_zone, (bp)); | 
| 78 | 79 | ||
| 80 | static inline int | ||
| 81 | xfs_buf_is_vmapped( | ||
| 82 | struct xfs_buf *bp) | ||
| 83 | { | ||
| 84 | /* | ||
| 85 | * Return true if the buffer is vmapped. | ||
| 86 | * | ||
| 87 | * The XBF_MAPPED flag is set if the buffer should be mapped, but the | ||
| 88 | * code is clever enough to know it doesn't have to map a single page, | ||
| 89 | * so the check has to be both for XBF_MAPPED and bp->b_page_count > 1. | ||
| 90 | */ | ||
| 91 | return (bp->b_flags & XBF_MAPPED) && bp->b_page_count > 1; | ||
| 92 | } | ||
| 93 | |||
| 94 | static inline int | ||
| 95 | xfs_buf_vmap_len( | ||
| 96 | struct xfs_buf *bp) | ||
| 97 | { | ||
| 98 | return (bp->b_page_count * PAGE_SIZE) - bp->b_offset; | ||
| 99 | } | ||
| 100 | |||
| 79 | /* | 101 | /* | 
| 80 | * Page Region interfaces. | 102 | * Page Region interfaces. | 
| 81 | * | 103 | * | 
| @@ -146,75 +168,6 @@ test_page_region( | |||
| 146 | } | 168 | } | 
| 147 | 169 | ||
| 148 | /* | 170 | /* | 
| 149 | * Mapping of multi-page buffers into contiguous virtual space | ||
| 150 | */ | ||
| 151 | |||
| 152 | typedef struct a_list { | ||
| 153 | void *vm_addr; | ||
| 154 | struct a_list *next; | ||
| 155 | } a_list_t; | ||
| 156 | |||
| 157 | static a_list_t *as_free_head; | ||
| 158 | static int as_list_len; | ||
| 159 | static DEFINE_SPINLOCK(as_lock); | ||
| 160 | |||
| 161 | /* | ||
| 162 | * Try to batch vunmaps because they are costly. | ||
| 163 | */ | ||
| 164 | STATIC void | ||
| 165 | free_address( | ||
| 166 | void *addr) | ||
| 167 | { | ||
| 168 | a_list_t *aentry; | ||
| 169 | |||
| 170 | #ifdef CONFIG_XEN | ||
| 171 | /* | ||
| 172 | * Xen needs to be able to make sure it can get an exclusive | ||
| 173 | * RO mapping of pages it wants to turn into a pagetable. If | ||
| 174 | * a newly allocated page is also still being vmap()ed by xfs, | ||
| 175 | * it will cause pagetable construction to fail. This is a | ||
| 176 | * quick workaround to always eagerly unmap pages so that Xen | ||
| 177 | * is happy. | ||
| 178 | */ | ||
| 179 | vunmap(addr); | ||
| 180 | return; | ||
| 181 | #endif | ||
| 182 | |||
| 183 | aentry = kmalloc(sizeof(a_list_t), GFP_NOWAIT); | ||
| 184 | if (likely(aentry)) { | ||
| 185 | spin_lock(&as_lock); | ||
| 186 | aentry->next = as_free_head; | ||
| 187 | aentry->vm_addr = addr; | ||
| 188 | as_free_head = aentry; | ||
| 189 | as_list_len++; | ||
| 190 | spin_unlock(&as_lock); | ||
| 191 | } else { | ||
| 192 | vunmap(addr); | ||
| 193 | } | ||
| 194 | } | ||
| 195 | |||
| 196 | STATIC void | ||
| 197 | purge_addresses(void) | ||
| 198 | { | ||
| 199 | a_list_t *aentry, *old; | ||
| 200 | |||
| 201 | if (as_free_head == NULL) | ||
| 202 | return; | ||
| 203 | |||
| 204 | spin_lock(&as_lock); | ||
| 205 | aentry = as_free_head; | ||
| 206 | as_free_head = NULL; | ||
| 207 | as_list_len = 0; | ||
| 208 | spin_unlock(&as_lock); | ||
| 209 | |||
| 210 | while ((old = aentry) != NULL) { | ||
| 211 | vunmap(aentry->vm_addr); | ||
| 212 | aentry = aentry->next; | ||
| 213 | kfree(old); | ||
| 214 | } | ||
| 215 | } | ||
| 216 | |||
| 217 | /* | ||
| 218 | * Internal xfs_buf_t object manipulation | 171 | * Internal xfs_buf_t object manipulation | 
| 219 | */ | 172 | */ | 
| 220 | 173 | ||
| @@ -314,8 +267,9 @@ xfs_buf_free( | |||
| 314 | if (bp->b_flags & (_XBF_PAGE_CACHE|_XBF_PAGES)) { | 267 | if (bp->b_flags & (_XBF_PAGE_CACHE|_XBF_PAGES)) { | 
| 315 | uint i; | 268 | uint i; | 
| 316 | 269 | ||
| 317 | if ((bp->b_flags & XBF_MAPPED) && (bp->b_page_count > 1)) | 270 | if (xfs_buf_is_vmapped(bp)) | 
| 318 | free_address(bp->b_addr - bp->b_offset); | 271 | vm_unmap_ram(bp->b_addr - bp->b_offset, | 
| 272 | bp->b_page_count); | ||
| 319 | 273 | ||
| 320 | for (i = 0; i < bp->b_page_count; i++) { | 274 | for (i = 0; i < bp->b_page_count; i++) { | 
| 321 | struct page *page = bp->b_pages[i]; | 275 | struct page *page = bp->b_pages[i]; | 
| @@ -435,10 +389,8 @@ _xfs_buf_map_pages( | |||
| 435 | bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset; | 389 | bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset; | 
| 436 | bp->b_flags |= XBF_MAPPED; | 390 | bp->b_flags |= XBF_MAPPED; | 
| 437 | } else if (flags & XBF_MAPPED) { | 391 | } else if (flags & XBF_MAPPED) { | 
| 438 | if (as_list_len > 64) | 392 | bp->b_addr = vm_map_ram(bp->b_pages, bp->b_page_count, | 
| 439 | purge_addresses(); | 393 | -1, PAGE_KERNEL); | 
| 440 | bp->b_addr = vmap(bp->b_pages, bp->b_page_count, | ||
| 441 | VM_MAP, PAGE_KERNEL); | ||
| 442 | if (unlikely(bp->b_addr == NULL)) | 394 | if (unlikely(bp->b_addr == NULL)) | 
| 443 | return -ENOMEM; | 395 | return -ENOMEM; | 
| 444 | bp->b_addr += bp->b_offset; | 396 | bp->b_addr += bp->b_offset; | 
| @@ -1051,22 +1003,30 @@ xfs_buf_ioerror( | |||
| 1051 | } | 1003 | } | 
| 1052 | 1004 | ||
| 1053 | int | 1005 | int | 
| 1054 | xfs_bawrite( | 1006 | xfs_bwrite( | 
| 1055 | void *mp, | 1007 | struct xfs_mount *mp, | 
| 1056 | struct xfs_buf *bp) | 1008 | struct xfs_buf *bp) | 
| 1057 | { | 1009 | { | 
| 1058 | trace_xfs_buf_bawrite(bp, _RET_IP_); | 1010 | int iowait = (bp->b_flags & XBF_ASYNC) == 0; | 
| 1011 | int error = 0; | ||
| 1059 | 1012 | ||
| 1060 | ASSERT(bp->b_bn != XFS_BUF_DADDR_NULL); | 1013 | bp->b_strat = xfs_bdstrat_cb; | 
| 1014 | bp->b_mount = mp; | ||
| 1015 | bp->b_flags |= XBF_WRITE; | ||
| 1016 | if (!iowait) | ||
| 1017 | bp->b_flags |= _XBF_RUN_QUEUES; | ||
| 1061 | 1018 | ||
| 1062 | xfs_buf_delwri_dequeue(bp); | 1019 | xfs_buf_delwri_dequeue(bp); | 
| 1020 | xfs_buf_iostrategy(bp); | ||
| 1063 | 1021 | ||
| 1064 | bp->b_flags &= ~(XBF_READ | XBF_DELWRI | XBF_READ_AHEAD); | 1022 | if (iowait) { | 
| 1065 | bp->b_flags |= (XBF_WRITE | XBF_ASYNC | _XBF_RUN_QUEUES); | 1023 | error = xfs_buf_iowait(bp); | 
| 1024 | if (error) | ||
| 1025 | xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR); | ||
| 1026 | xfs_buf_relse(bp); | ||
| 1027 | } | ||
| 1066 | 1028 | ||
| 1067 | bp->b_mount = mp; | 1029 | return error; | 
| 1068 | bp->b_strat = xfs_bdstrat_cb; | ||
| 1069 | return xfs_bdstrat_cb(bp); | ||
| 1070 | } | 1030 | } | 
| 1071 | 1031 | ||
| 1072 | void | 1032 | void | 
| @@ -1085,6 +1045,126 @@ xfs_bdwrite( | |||
| 1085 | xfs_buf_delwri_queue(bp, 1); | 1045 | xfs_buf_delwri_queue(bp, 1); | 
| 1086 | } | 1046 | } | 
| 1087 | 1047 | ||
| 1048 | /* | ||
| 1049 | * Called when we want to stop a buffer from getting written or read. | ||
| 1050 | * We attach the EIO error, muck with its flags, and call biodone | ||
| 1051 | * so that the proper iodone callbacks get called. | ||
| 1052 | */ | ||
| 1053 | STATIC int | ||
| 1054 | xfs_bioerror( | ||
| 1055 | xfs_buf_t *bp) | ||
| 1056 | { | ||
| 1057 | #ifdef XFSERRORDEBUG | ||
| 1058 | ASSERT(XFS_BUF_ISREAD(bp) || bp->b_iodone); | ||
| 1059 | #endif | ||
| 1060 | |||
| 1061 | /* | ||
| 1062 | * No need to wait until the buffer is unpinned, we aren't flushing it. | ||
| 1063 | */ | ||
| 1064 | XFS_BUF_ERROR(bp, EIO); | ||
| 1065 | |||
| 1066 | /* | ||
| 1067 | * We're calling biodone, so delete XBF_DONE flag. | ||
| 1068 | */ | ||
| 1069 | XFS_BUF_UNREAD(bp); | ||
| 1070 | XFS_BUF_UNDELAYWRITE(bp); | ||
| 1071 | XFS_BUF_UNDONE(bp); | ||
| 1072 | XFS_BUF_STALE(bp); | ||
| 1073 | |||
| 1074 | XFS_BUF_CLR_BDSTRAT_FUNC(bp); | ||
| 1075 | xfs_biodone(bp); | ||
| 1076 | |||
| 1077 | return EIO; | ||
| 1078 | } | ||
| 1079 | |||
| 1080 | /* | ||
| 1081 | * Same as xfs_bioerror, except that we are releasing the buffer | ||
| 1082 | * here ourselves, and avoiding the biodone call. | ||
| 1083 | * This is meant for userdata errors; metadata bufs come with | ||
| 1084 | * iodone functions attached, so that we can track down errors. | ||
| 1085 | */ | ||
| 1086 | STATIC int | ||
| 1087 | xfs_bioerror_relse( | ||
| 1088 | struct xfs_buf *bp) | ||
| 1089 | { | ||
| 1090 | int64_t fl = XFS_BUF_BFLAGS(bp); | ||
| 1091 | /* | ||
| 1092 | * No need to wait until the buffer is unpinned. | ||
| 1093 | * We aren't flushing it. | ||
| 1094 | * | ||
| 1095 | * chunkhold expects B_DONE to be set, whether | ||
| 1096 | * we actually finish the I/O or not. We don't want to | ||
| 1097 | * change that interface. | ||
| 1098 | */ | ||
| 1099 | XFS_BUF_UNREAD(bp); | ||
| 1100 | XFS_BUF_UNDELAYWRITE(bp); | ||
| 1101 | XFS_BUF_DONE(bp); | ||
| 1102 | XFS_BUF_STALE(bp); | ||
| 1103 | XFS_BUF_CLR_IODONE_FUNC(bp); | ||
| 1104 | XFS_BUF_CLR_BDSTRAT_FUNC(bp); | ||
| 1105 | if (!(fl & XBF_ASYNC)) { | ||
| 1106 | /* | ||
| 1107 | * Mark b_error and B_ERROR _both_. | ||
| 1108 | * Lot's of chunkcache code assumes that. | ||
| 1109 | * There's no reason to mark error for | ||
| 1110 | * ASYNC buffers. | ||
| 1111 | */ | ||
| 1112 | XFS_BUF_ERROR(bp, EIO); | ||
| 1113 | XFS_BUF_FINISH_IOWAIT(bp); | ||
| 1114 | } else { | ||
| 1115 | xfs_buf_relse(bp); | ||
| 1116 | } | ||
| 1117 | |||
| 1118 | return EIO; | ||
| 1119 | } | ||
| 1120 | |||
| 1121 | |||
| 1122 | /* | ||
| 1123 | * All xfs metadata buffers except log state machine buffers | ||
| 1124 | * get this attached as their b_bdstrat callback function. | ||
| 1125 | * This is so that we can catch a buffer | ||
| 1126 | * after prematurely unpinning it to forcibly shutdown the filesystem. | ||
| 1127 | */ | ||
| 1128 | int | ||
| 1129 | xfs_bdstrat_cb( | ||
| 1130 | struct xfs_buf *bp) | ||
| 1131 | { | ||
| 1132 | if (XFS_FORCED_SHUTDOWN(bp->b_mount)) { | ||
| 1133 | trace_xfs_bdstrat_shut(bp, _RET_IP_); | ||
| 1134 | /* | ||
| 1135 | * Metadata write that didn't get logged but | ||
| 1136 | * written delayed anyway. These aren't associated | ||
| 1137 | * with a transaction, and can be ignored. | ||
| 1138 | */ | ||
| 1139 | if (!bp->b_iodone && !XFS_BUF_ISREAD(bp)) | ||
| 1140 | return xfs_bioerror_relse(bp); | ||
| 1141 | else | ||
| 1142 | return xfs_bioerror(bp); | ||
| 1143 | } | ||
| 1144 | |||
| 1145 | xfs_buf_iorequest(bp); | ||
| 1146 | return 0; | ||
| 1147 | } | ||
| 1148 | |||
| 1149 | /* | ||
| 1150 | * Wrapper around bdstrat so that we can stop data from going to disk in case | ||
| 1151 | * we are shutting down the filesystem. Typically user data goes thru this | ||
| 1152 | * path; one of the exceptions is the superblock. | ||
| 1153 | */ | ||
| 1154 | void | ||
| 1155 | xfsbdstrat( | ||
| 1156 | struct xfs_mount *mp, | ||
| 1157 | struct xfs_buf *bp) | ||
| 1158 | { | ||
| 1159 | if (XFS_FORCED_SHUTDOWN(mp)) { | ||
| 1160 | trace_xfs_bdstrat_shut(bp, _RET_IP_); | ||
| 1161 | xfs_bioerror_relse(bp); | ||
| 1162 | return; | ||
| 1163 | } | ||
| 1164 | |||
| 1165 | xfs_buf_iorequest(bp); | ||
| 1166 | } | ||
| 1167 | |||
| 1088 | STATIC void | 1168 | STATIC void | 
| 1089 | _xfs_buf_ioend( | 1169 | _xfs_buf_ioend( | 
| 1090 | xfs_buf_t *bp, | 1170 | xfs_buf_t *bp, | 
| @@ -1107,6 +1187,9 @@ xfs_buf_bio_end_io( | |||
| 1107 | 1187 | ||
| 1108 | xfs_buf_ioerror(bp, -error); | 1188 | xfs_buf_ioerror(bp, -error); | 
| 1109 | 1189 | ||
| 1190 | if (!error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ)) | ||
| 1191 | invalidate_kernel_vmap_range(bp->b_addr, xfs_buf_vmap_len(bp)); | ||
| 1192 | |||
| 1110 | do { | 1193 | do { | 
| 1111 | struct page *page = bvec->bv_page; | 1194 | struct page *page = bvec->bv_page; | 
| 1112 | 1195 | ||
| @@ -1216,6 +1299,10 @@ next_chunk: | |||
| 1216 | 1299 | ||
| 1217 | submit_io: | 1300 | submit_io: | 
| 1218 | if (likely(bio->bi_size)) { | 1301 | if (likely(bio->bi_size)) { | 
| 1302 | if (xfs_buf_is_vmapped(bp)) { | ||
| 1303 | flush_kernel_vmap_range(bp->b_addr, | ||
| 1304 | xfs_buf_vmap_len(bp)); | ||
| 1305 | } | ||
| 1219 | submit_bio(rw, bio); | 1306 | submit_bio(rw, bio); | 
| 1220 | if (size) | 1307 | if (size) | 
| 1221 | goto next_chunk; | 1308 | goto next_chunk; | 
| @@ -1296,7 +1383,7 @@ xfs_buf_iomove( | |||
| 1296 | xfs_buf_t *bp, /* buffer to process */ | 1383 | xfs_buf_t *bp, /* buffer to process */ | 
| 1297 | size_t boff, /* starting buffer offset */ | 1384 | size_t boff, /* starting buffer offset */ | 
| 1298 | size_t bsize, /* length to copy */ | 1385 | size_t bsize, /* length to copy */ | 
| 1299 | caddr_t data, /* data address */ | 1386 | void *data, /* data address */ | 
| 1300 | xfs_buf_rw_t mode) /* read/write/zero flag */ | 1387 | xfs_buf_rw_t mode) /* read/write/zero flag */ | 
| 1301 | { | 1388 | { | 
| 1302 | size_t bend, cpoff, csize; | 1389 | size_t bend, cpoff, csize; | 
| @@ -1378,8 +1465,8 @@ xfs_alloc_bufhash( | |||
| 1378 | 1465 | ||
| 1379 | btp->bt_hashshift = external ? 3 : 8; /* 8 or 256 buckets */ | 1466 | btp->bt_hashshift = external ? 3 : 8; /* 8 or 256 buckets */ | 
| 1380 | btp->bt_hashmask = (1 << btp->bt_hashshift) - 1; | 1467 | btp->bt_hashmask = (1 << btp->bt_hashshift) - 1; | 
| 1381 | btp->bt_hash = kmem_zalloc((1 << btp->bt_hashshift) * | 1468 | btp->bt_hash = kmem_zalloc_large((1 << btp->bt_hashshift) * | 
| 1382 | sizeof(xfs_bufhash_t), KM_SLEEP | KM_LARGE); | 1469 | sizeof(xfs_bufhash_t)); | 
| 1383 | for (i = 0; i < (1 << btp->bt_hashshift); i++) { | 1470 | for (i = 0; i < (1 << btp->bt_hashshift); i++) { | 
| 1384 | spin_lock_init(&btp->bt_hash[i].bh_lock); | 1471 | spin_lock_init(&btp->bt_hash[i].bh_lock); | 
| 1385 | INIT_LIST_HEAD(&btp->bt_hash[i].bh_list); | 1472 | INIT_LIST_HEAD(&btp->bt_hash[i].bh_list); | 
| @@ -1390,7 +1477,7 @@ STATIC void | |||
| 1390 | xfs_free_bufhash( | 1477 | xfs_free_bufhash( | 
| 1391 | xfs_buftarg_t *btp) | 1478 | xfs_buftarg_t *btp) | 
| 1392 | { | 1479 | { | 
| 1393 | kmem_free(btp->bt_hash); | 1480 | kmem_free_large(btp->bt_hash); | 
| 1394 | btp->bt_hash = NULL; | 1481 | btp->bt_hash = NULL; | 
| 1395 | } | 1482 | } | 
| 1396 | 1483 | ||
| @@ -1595,6 +1682,11 @@ xfs_buf_delwri_queue( | |||
| 1595 | list_del(&bp->b_list); | 1682 | list_del(&bp->b_list); | 
| 1596 | } | 1683 | } | 
| 1597 | 1684 | ||
| 1685 | if (list_empty(dwq)) { | ||
| 1686 | /* start xfsbufd as it is about to have something to do */ | ||
| 1687 | wake_up_process(bp->b_target->bt_task); | ||
| 1688 | } | ||
| 1689 | |||
| 1598 | bp->b_flags |= _XBF_DELWRI_Q; | 1690 | bp->b_flags |= _XBF_DELWRI_Q; | 
| 1599 | list_add_tail(&bp->b_list, dwq); | 1691 | list_add_tail(&bp->b_list, dwq); | 
| 1600 | bp->b_queuetime = jiffies; | 1692 | bp->b_queuetime = jiffies; | 
| @@ -1626,6 +1718,35 @@ xfs_buf_delwri_dequeue( | |||
| 1626 | trace_xfs_buf_delwri_dequeue(bp, _RET_IP_); | 1718 | trace_xfs_buf_delwri_dequeue(bp, _RET_IP_); | 
| 1627 | } | 1719 | } | 
| 1628 | 1720 | ||
| 1721 | /* | ||
| 1722 | * If a delwri buffer needs to be pushed before it has aged out, then promote | ||
| 1723 | * it to the head of the delwri queue so that it will be flushed on the next | ||
| 1724 | * xfsbufd run. We do this by resetting the queuetime of the buffer to be older | ||
| 1725 | * than the age currently needed to flush the buffer. Hence the next time the | ||
| 1726 | * xfsbufd sees it is guaranteed to be considered old enough to flush. | ||
| 1727 | */ | ||
| 1728 | void | ||
| 1729 | xfs_buf_delwri_promote( | ||
| 1730 | struct xfs_buf *bp) | ||
| 1731 | { | ||
| 1732 | struct xfs_buftarg *btp = bp->b_target; | ||
| 1733 | long age = xfs_buf_age_centisecs * msecs_to_jiffies(10) + 1; | ||
| 1734 | |||
| 1735 | ASSERT(bp->b_flags & XBF_DELWRI); | ||
| 1736 | ASSERT(bp->b_flags & _XBF_DELWRI_Q); | ||
| 1737 | |||
| 1738 | /* | ||
| 1739 | * Check the buffer age before locking the delayed write queue as we | ||
| 1740 | * don't need to promote buffers that are already past the flush age. | ||
| 1741 | */ | ||
| 1742 | if (bp->b_queuetime < jiffies - age) | ||
| 1743 | return; | ||
| 1744 | bp->b_queuetime = jiffies - age; | ||
| 1745 | spin_lock(&btp->bt_delwrite_lock); | ||
| 1746 | list_move(&bp->b_list, &btp->bt_delwrite_queue); | ||
| 1747 | spin_unlock(&btp->bt_delwrite_lock); | ||
| 1748 | } | ||
| 1749 | |||
| 1629 | STATIC void | 1750 | STATIC void | 
| 1630 | xfs_buf_runall_queues( | 1751 | xfs_buf_runall_queues( | 
| 1631 | struct workqueue_struct *queue) | 1752 | struct workqueue_struct *queue) | 
| @@ -1644,6 +1765,8 @@ xfsbufd_wakeup( | |||
| 1644 | list_for_each_entry(btp, &xfs_buftarg_list, bt_list) { | 1765 | list_for_each_entry(btp, &xfs_buftarg_list, bt_list) { | 
| 1645 | if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags)) | 1766 | if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags)) | 
| 1646 | continue; | 1767 | continue; | 
| 1768 | if (list_empty(&btp->bt_delwrite_queue)) | ||
| 1769 | continue; | ||
| 1647 | set_bit(XBT_FORCE_FLUSH, &btp->bt_flags); | 1770 | set_bit(XBT_FORCE_FLUSH, &btp->bt_flags); | 
| 1648 | wake_up_process(btp->bt_task); | 1771 | wake_up_process(btp->bt_task); | 
| 1649 | } | 1772 | } | 
| @@ -1694,20 +1817,53 @@ xfs_buf_delwri_split( | |||
| 1694 | 1817 | ||
| 1695 | } | 1818 | } | 
| 1696 | 1819 | ||
| 1820 | /* | ||
| 1821 | * Compare function is more complex than it needs to be because | ||
| 1822 | * the return value is only 32 bits and we are doing comparisons | ||
| 1823 | * on 64 bit values | ||
| 1824 | */ | ||
| 1825 | static int | ||
| 1826 | xfs_buf_cmp( | ||
| 1827 | void *priv, | ||
| 1828 | struct list_head *a, | ||
| 1829 | struct list_head *b) | ||
| 1830 | { | ||
| 1831 | struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list); | ||
| 1832 | struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list); | ||
| 1833 | xfs_daddr_t diff; | ||
| 1834 | |||
| 1835 | diff = ap->b_bn - bp->b_bn; | ||
| 1836 | if (diff < 0) | ||
| 1837 | return -1; | ||
| 1838 | if (diff > 0) | ||
| 1839 | return 1; | ||
| 1840 | return 0; | ||
| 1841 | } | ||
| 1842 | |||
| 1843 | void | ||
| 1844 | xfs_buf_delwri_sort( | ||
| 1845 | xfs_buftarg_t *target, | ||
| 1846 | struct list_head *list) | ||
| 1847 | { | ||
| 1848 | list_sort(NULL, list, xfs_buf_cmp); | ||
| 1849 | } | ||
| 1850 | |||
| 1697 | STATIC int | 1851 | STATIC int | 
| 1698 | xfsbufd( | 1852 | xfsbufd( | 
| 1699 | void *data) | 1853 | void *data) | 
| 1700 | { | 1854 | { | 
| 1701 | struct list_head tmp; | 1855 | xfs_buftarg_t *target = (xfs_buftarg_t *)data; | 
| 1702 | xfs_buftarg_t *target = (xfs_buftarg_t *)data; | ||
| 1703 | int count; | ||
| 1704 | xfs_buf_t *bp; | ||
| 1705 | 1856 | ||
| 1706 | current->flags |= PF_MEMALLOC; | 1857 | current->flags |= PF_MEMALLOC; | 
| 1707 | 1858 | ||
| 1708 | set_freezable(); | 1859 | set_freezable(); | 
| 1709 | 1860 | ||
| 1710 | do { | 1861 | do { | 
| 1862 | long age = xfs_buf_age_centisecs * msecs_to_jiffies(10); | ||
| 1863 | long tout = xfs_buf_timer_centisecs * msecs_to_jiffies(10); | ||
| 1864 | int count = 0; | ||
| 1865 | struct list_head tmp; | ||
| 1866 | |||
| 1711 | if (unlikely(freezing(current))) { | 1867 | if (unlikely(freezing(current))) { | 
| 1712 | set_bit(XBT_FORCE_SLEEP, &target->bt_flags); | 1868 | set_bit(XBT_FORCE_SLEEP, &target->bt_flags); | 
| 1713 | refrigerator(); | 1869 | refrigerator(); | 
| @@ -1715,24 +1871,20 @@ xfsbufd( | |||
| 1715 | clear_bit(XBT_FORCE_SLEEP, &target->bt_flags); | 1871 | clear_bit(XBT_FORCE_SLEEP, &target->bt_flags); | 
| 1716 | } | 1872 | } | 
| 1717 | 1873 | ||
| 1718 | schedule_timeout_interruptible( | 1874 | /* sleep for a long time if there is nothing to do. */ | 
| 1719 | xfs_buf_timer_centisecs * msecs_to_jiffies(10)); | 1875 | if (list_empty(&target->bt_delwrite_queue)) | 
| 1876 | tout = MAX_SCHEDULE_TIMEOUT; | ||
| 1877 | schedule_timeout_interruptible(tout); | ||
| 1720 | 1878 | ||
| 1721 | xfs_buf_delwri_split(target, &tmp, | 1879 | xfs_buf_delwri_split(target, &tmp, age); | 
| 1722 | xfs_buf_age_centisecs * msecs_to_jiffies(10)); | 1880 | list_sort(NULL, &tmp, xfs_buf_cmp); | 
| 1723 | |||
| 1724 | count = 0; | ||
| 1725 | while (!list_empty(&tmp)) { | 1881 | while (!list_empty(&tmp)) { | 
| 1726 | bp = list_entry(tmp.next, xfs_buf_t, b_list); | 1882 | struct xfs_buf *bp; | 
| 1727 | ASSERT(target == bp->b_target); | 1883 | bp = list_first_entry(&tmp, struct xfs_buf, b_list); | 
| 1728 | |||
| 1729 | list_del_init(&bp->b_list); | 1884 | list_del_init(&bp->b_list); | 
| 1730 | xfs_buf_iostrategy(bp); | 1885 | xfs_buf_iostrategy(bp); | 
| 1731 | count++; | 1886 | count++; | 
| 1732 | } | 1887 | } | 
| 1733 | |||
| 1734 | if (as_list_len > 0) | ||
| 1735 | purge_addresses(); | ||
| 1736 | if (count) | 1888 | if (count) | 
| 1737 | blk_run_address_space(target->bt_mapping); | 1889 | blk_run_address_space(target->bt_mapping); | 
| 1738 | 1890 | ||
| @@ -1751,42 +1903,45 @@ xfs_flush_buftarg( | |||
| 1751 | xfs_buftarg_t *target, | 1903 | xfs_buftarg_t *target, | 
| 1752 | int wait) | 1904 | int wait) | 
| 1753 | { | 1905 | { | 
| 1754 | struct list_head tmp; | 1906 | xfs_buf_t *bp; | 
| 1755 | xfs_buf_t *bp, *n; | ||
| 1756 | int pincount = 0; | 1907 | int pincount = 0; | 
| 1908 | LIST_HEAD(tmp_list); | ||
| 1909 | LIST_HEAD(wait_list); | ||
| 1757 | 1910 | ||
| 1758 | xfs_buf_runall_queues(xfsconvertd_workqueue); | 1911 | xfs_buf_runall_queues(xfsconvertd_workqueue); | 
| 1759 | xfs_buf_runall_queues(xfsdatad_workqueue); | 1912 | xfs_buf_runall_queues(xfsdatad_workqueue); | 
| 1760 | xfs_buf_runall_queues(xfslogd_workqueue); | 1913 | xfs_buf_runall_queues(xfslogd_workqueue); | 
| 1761 | 1914 | ||
| 1762 | set_bit(XBT_FORCE_FLUSH, &target->bt_flags); | 1915 | set_bit(XBT_FORCE_FLUSH, &target->bt_flags); | 
| 1763 | pincount = xfs_buf_delwri_split(target, &tmp, 0); | 1916 | pincount = xfs_buf_delwri_split(target, &tmp_list, 0); | 
| 1764 | 1917 | ||
| 1765 | /* | 1918 | /* | 
| 1766 | * Dropped the delayed write list lock, now walk the temporary list | 1919 | * Dropped the delayed write list lock, now walk the temporary list. | 
| 1920 | * All I/O is issued async and then if we need to wait for completion | ||
| 1921 | * we do that after issuing all the IO. | ||
| 1767 | */ | 1922 | */ | 
| 1768 | list_for_each_entry_safe(bp, n, &tmp, b_list) { | 1923 | list_sort(NULL, &tmp_list, xfs_buf_cmp); | 
| 1924 | while (!list_empty(&tmp_list)) { | ||
| 1925 | bp = list_first_entry(&tmp_list, struct xfs_buf, b_list); | ||
| 1769 | ASSERT(target == bp->b_target); | 1926 | ASSERT(target == bp->b_target); | 
| 1770 | if (wait) | 1927 | list_del_init(&bp->b_list); | 
| 1928 | if (wait) { | ||
| 1771 | bp->b_flags &= ~XBF_ASYNC; | 1929 | bp->b_flags &= ~XBF_ASYNC; | 
| 1772 | else | 1930 | list_add(&bp->b_list, &wait_list); | 
| 1773 | list_del_init(&bp->b_list); | 1931 | } | 
| 1774 | |||
| 1775 | xfs_buf_iostrategy(bp); | 1932 | xfs_buf_iostrategy(bp); | 
| 1776 | } | 1933 | } | 
| 1777 | 1934 | ||
| 1778 | if (wait) | 1935 | if (wait) { | 
| 1936 | /* Expedite and wait for IO to complete. */ | ||
| 1779 | blk_run_address_space(target->bt_mapping); | 1937 | blk_run_address_space(target->bt_mapping); | 
| 1938 | while (!list_empty(&wait_list)) { | ||
| 1939 | bp = list_first_entry(&wait_list, struct xfs_buf, b_list); | ||
| 1780 | 1940 | ||
| 1781 | /* | 1941 | list_del_init(&bp->b_list); | 
| 1782 | * Remaining list items must be flushed before returning | 1942 | xfs_iowait(bp); | 
| 1783 | */ | 1943 | xfs_buf_relse(bp); | 
| 1784 | while (!list_empty(&tmp)) { | 1944 | } | 
| 1785 | bp = list_entry(tmp.next, xfs_buf_t, b_list); | ||
| 1786 | |||
| 1787 | list_del_init(&bp->b_list); | ||
| 1788 | xfs_iowait(bp); | ||
| 1789 | xfs_buf_relse(bp); | ||
| 1790 | } | 1945 | } | 
| 1791 | 1946 | ||
| 1792 | return pincount; | 1947 | return pincount; | 
diff --git a/fs/xfs/linux-2.6/xfs_buf.h b/fs/xfs/linux-2.6/xfs_buf.h index a34c7b54822d..386e7361e50e 100644 --- a/fs/xfs/linux-2.6/xfs_buf.h +++ b/fs/xfs/linux-2.6/xfs_buf.h  | |||
| @@ -232,13 +232,17 @@ extern void xfs_buf_lock(xfs_buf_t *); | |||
| 232 | extern void xfs_buf_unlock(xfs_buf_t *); | 232 | extern void xfs_buf_unlock(xfs_buf_t *); | 
| 233 | 233 | ||
| 234 | /* Buffer Read and Write Routines */ | 234 | /* Buffer Read and Write Routines */ | 
| 235 | extern int xfs_bawrite(void *mp, xfs_buf_t *bp); | 235 | extern int xfs_bwrite(struct xfs_mount *mp, struct xfs_buf *bp); | 
| 236 | extern void xfs_bdwrite(void *mp, xfs_buf_t *bp); | 236 | extern void xfs_bdwrite(void *mp, xfs_buf_t *bp); | 
| 237 | |||
| 238 | extern void xfsbdstrat(struct xfs_mount *, struct xfs_buf *); | ||
| 239 | extern int xfs_bdstrat_cb(struct xfs_buf *); | ||
| 240 | |||
| 237 | extern void xfs_buf_ioend(xfs_buf_t *, int); | 241 | extern void xfs_buf_ioend(xfs_buf_t *, int); | 
| 238 | extern void xfs_buf_ioerror(xfs_buf_t *, int); | 242 | extern void xfs_buf_ioerror(xfs_buf_t *, int); | 
| 239 | extern int xfs_buf_iorequest(xfs_buf_t *); | 243 | extern int xfs_buf_iorequest(xfs_buf_t *); | 
| 240 | extern int xfs_buf_iowait(xfs_buf_t *); | 244 | extern int xfs_buf_iowait(xfs_buf_t *); | 
| 241 | extern void xfs_buf_iomove(xfs_buf_t *, size_t, size_t, xfs_caddr_t, | 245 | extern void xfs_buf_iomove(xfs_buf_t *, size_t, size_t, void *, | 
| 242 | xfs_buf_rw_t); | 246 | xfs_buf_rw_t); | 
| 243 | 247 | ||
| 244 | static inline int xfs_buf_iostrategy(xfs_buf_t *bp) | 248 | static inline int xfs_buf_iostrategy(xfs_buf_t *bp) | 
| @@ -261,6 +265,7 @@ extern int xfs_buf_ispin(xfs_buf_t *); | |||
| 261 | 265 | ||
| 262 | /* Delayed Write Buffer Routines */ | 266 | /* Delayed Write Buffer Routines */ | 
| 263 | extern void xfs_buf_delwri_dequeue(xfs_buf_t *); | 267 | extern void xfs_buf_delwri_dequeue(xfs_buf_t *); | 
| 268 | extern void xfs_buf_delwri_promote(xfs_buf_t *); | ||
| 264 | 269 | ||
| 265 | /* Buffer Daemon Setup Routines */ | 270 | /* Buffer Daemon Setup Routines */ | 
| 266 | extern int xfs_buf_init(void); | 271 | extern int xfs_buf_init(void); | 
| @@ -270,33 +275,19 @@ extern void xfs_buf_terminate(void); | |||
| 270 | ({ char __b[BDEVNAME_SIZE]; bdevname((target)->bt_bdev, __b); __b; }) | 275 | ({ char __b[BDEVNAME_SIZE]; bdevname((target)->bt_bdev, __b); __b; }) | 
| 271 | 276 | ||
| 272 | 277 | ||
| 273 | #define XFS_B_ASYNC XBF_ASYNC | ||
| 274 | #define XFS_B_DELWRI XBF_DELWRI | ||
| 275 | #define XFS_B_READ XBF_READ | ||
| 276 | #define XFS_B_WRITE XBF_WRITE | ||
| 277 | #define XFS_B_STALE XBF_STALE | ||
| 278 | |||
| 279 | #define XFS_BUF_TRYLOCK XBF_TRYLOCK | ||
| 280 | #define XFS_INCORE_TRYLOCK XBF_TRYLOCK | ||
| 281 | #define XFS_BUF_LOCK XBF_LOCK | ||
| 282 | #define XFS_BUF_MAPPED XBF_MAPPED | ||
| 283 | |||
| 284 | #define BUF_BUSY XBF_DONT_BLOCK | ||
| 285 | |||
| 286 | #define XFS_BUF_BFLAGS(bp) ((bp)->b_flags) | 278 | #define XFS_BUF_BFLAGS(bp) ((bp)->b_flags) | 
| 287 | #define XFS_BUF_ZEROFLAGS(bp) ((bp)->b_flags &= \ | 279 | #define XFS_BUF_ZEROFLAGS(bp) ((bp)->b_flags &= \ | 
| 288 | ~(XBF_READ|XBF_WRITE|XBF_ASYNC|XBF_DELWRI|XBF_ORDERED)) | 280 | ~(XBF_READ|XBF_WRITE|XBF_ASYNC|XBF_DELWRI|XBF_ORDERED)) | 
| 289 | 281 | ||
| 290 | #define XFS_BUF_STALE(bp) ((bp)->b_flags |= XFS_B_STALE) | 282 | #define XFS_BUF_STALE(bp) ((bp)->b_flags |= XBF_STALE) | 
| 291 | #define XFS_BUF_UNSTALE(bp) ((bp)->b_flags &= ~XFS_B_STALE) | 283 | #define XFS_BUF_UNSTALE(bp) ((bp)->b_flags &= ~XBF_STALE) | 
| 292 | #define XFS_BUF_ISSTALE(bp) ((bp)->b_flags & XFS_B_STALE) | 284 | #define XFS_BUF_ISSTALE(bp) ((bp)->b_flags & XBF_STALE) | 
| 293 | #define XFS_BUF_SUPER_STALE(bp) do { \ | 285 | #define XFS_BUF_SUPER_STALE(bp) do { \ | 
| 294 | XFS_BUF_STALE(bp); \ | 286 | XFS_BUF_STALE(bp); \ | 
| 295 | xfs_buf_delwri_dequeue(bp); \ | 287 | xfs_buf_delwri_dequeue(bp); \ | 
| 296 | XFS_BUF_DONE(bp); \ | 288 | XFS_BUF_DONE(bp); \ | 
| 297 | } while (0) | 289 | } while (0) | 
| 298 | 290 | ||
| 299 | #define XFS_BUF_MANAGE XBF_FS_MANAGED | ||
| 300 | #define XFS_BUF_UNMANAGE(bp) ((bp)->b_flags &= ~XBF_FS_MANAGED) | 291 | #define XFS_BUF_UNMANAGE(bp) ((bp)->b_flags &= ~XBF_FS_MANAGED) | 
| 301 | 292 | ||
| 302 | #define XFS_BUF_DELAYWRITE(bp) ((bp)->b_flags |= XBF_DELWRI) | 293 | #define XFS_BUF_DELAYWRITE(bp) ((bp)->b_flags |= XBF_DELWRI) | 
| @@ -385,31 +376,11 @@ static inline void xfs_buf_relse(xfs_buf_t *bp) | |||
| 385 | 376 | ||
| 386 | #define xfs_biomove(bp, off, len, data, rw) \ | 377 | #define xfs_biomove(bp, off, len, data, rw) \ | 
| 387 | xfs_buf_iomove((bp), (off), (len), (data), \ | 378 | xfs_buf_iomove((bp), (off), (len), (data), \ | 
| 388 | ((rw) == XFS_B_WRITE) ? XBRW_WRITE : XBRW_READ) | 379 | ((rw) == XBF_WRITE) ? XBRW_WRITE : XBRW_READ) | 
| 389 | 380 | ||
| 390 | #define xfs_biozero(bp, off, len) \ | 381 | #define xfs_biozero(bp, off, len) \ | 
| 391 | xfs_buf_iomove((bp), (off), (len), NULL, XBRW_ZERO) | 382 | xfs_buf_iomove((bp), (off), (len), NULL, XBRW_ZERO) | 
| 392 | 383 | ||
| 393 | |||
| 394 | static inline int XFS_bwrite(xfs_buf_t *bp) | ||
| 395 | { | ||
| 396 | int iowait = (bp->b_flags & XBF_ASYNC) == 0; | ||
| 397 | int error = 0; | ||
| 398 | |||
| 399 | if (!iowait) | ||
| 400 | bp->b_flags |= _XBF_RUN_QUEUES; | ||
| 401 | |||
| 402 | xfs_buf_delwri_dequeue(bp); | ||
| 403 | xfs_buf_iostrategy(bp); | ||
| 404 | if (iowait) { | ||
| 405 | error = xfs_buf_iowait(bp); | ||
| 406 | xfs_buf_relse(bp); | ||
| 407 | } | ||
| 408 | return error; | ||
| 409 | } | ||
| 410 | |||
| 411 | #define XFS_bdstrat(bp) xfs_buf_iorequest(bp) | ||
| 412 | |||
| 413 | #define xfs_iowait(bp) xfs_buf_iowait(bp) | 384 | #define xfs_iowait(bp) xfs_buf_iowait(bp) | 
| 414 | 385 | ||
| 415 | #define xfs_baread(target, rablkno, ralen) \ | 386 | #define xfs_baread(target, rablkno, ralen) \ | 
| @@ -424,6 +395,7 @@ extern void xfs_free_buftarg(struct xfs_mount *, struct xfs_buftarg *); | |||
| 424 | extern void xfs_wait_buftarg(xfs_buftarg_t *); | 395 | extern void xfs_wait_buftarg(xfs_buftarg_t *); | 
| 425 | extern int xfs_setsize_buftarg(xfs_buftarg_t *, unsigned int, unsigned int); | 396 | extern int xfs_setsize_buftarg(xfs_buftarg_t *, unsigned int, unsigned int); | 
| 426 | extern int xfs_flush_buftarg(xfs_buftarg_t *, int); | 397 | extern int xfs_flush_buftarg(xfs_buftarg_t *, int); | 
| 398 | |||
| 427 | #ifdef CONFIG_KDB_MODULES | 399 | #ifdef CONFIG_KDB_MODULES | 
| 428 | extern struct list_head *xfs_get_buftarg_list(void); | 400 | extern struct list_head *xfs_get_buftarg_list(void); | 
| 429 | #endif | 401 | #endif | 
diff --git a/fs/xfs/linux-2.6/xfs_export.c b/fs/xfs/linux-2.6/xfs_export.c index 87b8cbd23d4b..846b75aeb2ab 100644 --- a/fs/xfs/linux-2.6/xfs_export.c +++ b/fs/xfs/linux-2.6/xfs_export.c  | |||
| @@ -29,6 +29,7 @@ | |||
| 29 | #include "xfs_vnodeops.h" | 29 | #include "xfs_vnodeops.h" | 
| 30 | #include "xfs_bmap_btree.h" | 30 | #include "xfs_bmap_btree.h" | 
| 31 | #include "xfs_inode.h" | 31 | #include "xfs_inode.h" | 
| 32 | #include "xfs_inode_item.h" | ||
| 32 | 33 | ||
| 33 | /* | 34 | /* | 
| 34 | * Note that we only accept fileids which are long enough rather than allow | 35 | * Note that we only accept fileids which are long enough rather than allow | 
| @@ -215,9 +216,28 @@ xfs_fs_get_parent( | |||
| 215 | return d_obtain_alias(VFS_I(cip)); | 216 | return d_obtain_alias(VFS_I(cip)); | 
| 216 | } | 217 | } | 
| 217 | 218 | ||
| 219 | STATIC int | ||
| 220 | xfs_fs_nfs_commit_metadata( | ||
| 221 | struct inode *inode) | ||
| 222 | { | ||
| 223 | struct xfs_inode *ip = XFS_I(inode); | ||
| 224 | struct xfs_mount *mp = ip->i_mount; | ||
| 225 | int error = 0; | ||
| 226 | |||
| 227 | xfs_ilock(ip, XFS_ILOCK_SHARED); | ||
| 228 | if (xfs_ipincount(ip)) { | ||
| 229 | error = _xfs_log_force_lsn(mp, ip->i_itemp->ili_last_lsn, | ||
| 230 | XFS_LOG_SYNC, NULL); | ||
| 231 | } | ||
| 232 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | ||
| 233 | |||
| 234 | return error; | ||
| 235 | } | ||
| 236 | |||
| 218 | const struct export_operations xfs_export_operations = { | 237 | const struct export_operations xfs_export_operations = { | 
| 219 | .encode_fh = xfs_fs_encode_fh, | 238 | .encode_fh = xfs_fs_encode_fh, | 
| 220 | .fh_to_dentry = xfs_fs_fh_to_dentry, | 239 | .fh_to_dentry = xfs_fs_fh_to_dentry, | 
| 221 | .fh_to_parent = xfs_fs_fh_to_parent, | 240 | .fh_to_parent = xfs_fs_fh_to_parent, | 
| 222 | .get_parent = xfs_fs_get_parent, | 241 | .get_parent = xfs_fs_get_parent, | 
| 242 | .commit_metadata = xfs_fs_nfs_commit_metadata, | ||
| 223 | }; | 243 | }; | 
diff --git a/fs/xfs/linux-2.6/xfs_file.c b/fs/xfs/linux-2.6/xfs_file.c index e4caeb28ce2e..42dd3bcfba6b 100644 --- a/fs/xfs/linux-2.6/xfs_file.c +++ b/fs/xfs/linux-2.6/xfs_file.c  | |||
| @@ -16,6 +16,7 @@ | |||
| 16 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | 16 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | 
| 17 | */ | 17 | */ | 
| 18 | #include "xfs.h" | 18 | #include "xfs.h" | 
| 19 | #include "xfs_fs.h" | ||
| 19 | #include "xfs_bit.h" | 20 | #include "xfs_bit.h" | 
| 20 | #include "xfs_log.h" | 21 | #include "xfs_log.h" | 
| 21 | #include "xfs_inum.h" | 22 | #include "xfs_inum.h" | 
| @@ -34,52 +35,279 @@ | |||
| 34 | #include "xfs_dir2_sf.h" | 35 | #include "xfs_dir2_sf.h" | 
| 35 | #include "xfs_dinode.h" | 36 | #include "xfs_dinode.h" | 
| 36 | #include "xfs_inode.h" | 37 | #include "xfs_inode.h" | 
| 38 | #include "xfs_inode_item.h" | ||
| 39 | #include "xfs_bmap.h" | ||
| 37 | #include "xfs_error.h" | 40 | #include "xfs_error.h" | 
| 38 | #include "xfs_rw.h" | 41 | #include "xfs_rw.h" | 
| 39 | #include "xfs_vnodeops.h" | 42 | #include "xfs_vnodeops.h" | 
| 40 | #include "xfs_da_btree.h" | 43 | #include "xfs_da_btree.h" | 
| 41 | #include "xfs_ioctl.h" | 44 | #include "xfs_ioctl.h" | 
| 45 | #include "xfs_trace.h" | ||
| 42 | 46 | ||
| 43 | #include <linux/dcache.h> | 47 | #include <linux/dcache.h> | 
| 44 | 48 | ||
| 45 | static const struct vm_operations_struct xfs_file_vm_ops; | 49 | static const struct vm_operations_struct xfs_file_vm_ops; | 
| 46 | 50 | ||
| 47 | STATIC ssize_t | 51 | /* | 
| 48 | xfs_file_aio_read( | 52 | * xfs_iozero | 
| 49 | struct kiocb *iocb, | 53 | * | 
| 50 | const struct iovec *iov, | 54 | * xfs_iozero clears the specified range of buffer supplied, | 
| 51 | unsigned long nr_segs, | 55 | * and marks all the affected blocks as valid and modified. If | 
| 52 | loff_t pos) | 56 | * an affected block is not allocated, it will be allocated. If | 
| 57 | * an affected block is not completely overwritten, and is not | ||
| 58 | * valid before the operation, it will be read from disk before | ||
| 59 | * being partially zeroed. | ||
| 60 | */ | ||
| 61 | STATIC int | ||
| 62 | xfs_iozero( | ||
| 63 | struct xfs_inode *ip, /* inode */ | ||
| 64 | loff_t pos, /* offset in file */ | ||
| 65 | size_t count) /* size of data to zero */ | ||
| 53 | { | 66 | { | 
| 54 | struct file *file = iocb->ki_filp; | 67 | struct page *page; | 
| 55 | int ioflags = 0; | 68 | struct address_space *mapping; | 
| 69 | int status; | ||
| 56 | 70 | ||
| 57 | BUG_ON(iocb->ki_pos != pos); | 71 | mapping = VFS_I(ip)->i_mapping; | 
| 58 | if (unlikely(file->f_flags & O_DIRECT)) | 72 | do { | 
| 59 | ioflags |= IO_ISDIRECT; | 73 | unsigned offset, bytes; | 
| 60 | if (file->f_mode & FMODE_NOCMTIME) | 74 | void *fsdata; | 
| 61 | ioflags |= IO_INVIS; | 75 | |
| 62 | return xfs_read(XFS_I(file->f_path.dentry->d_inode), iocb, iov, | 76 | offset = (pos & (PAGE_CACHE_SIZE -1)); /* Within page */ | 
| 63 | nr_segs, &iocb->ki_pos, ioflags); | 77 | bytes = PAGE_CACHE_SIZE - offset; | 
| 78 | if (bytes > count) | ||
| 79 | bytes = count; | ||
| 80 | |||
| 81 | status = pagecache_write_begin(NULL, mapping, pos, bytes, | ||
| 82 | AOP_FLAG_UNINTERRUPTIBLE, | ||
| 83 | &page, &fsdata); | ||
| 84 | if (status) | ||
| 85 | break; | ||
| 86 | |||
| 87 | zero_user(page, offset, bytes); | ||
| 88 | |||
| 89 | status = pagecache_write_end(NULL, mapping, pos, bytes, bytes, | ||
| 90 | page, fsdata); | ||
| 91 | WARN_ON(status <= 0); /* can't return less than zero! */ | ||
| 92 | pos += bytes; | ||
| 93 | count -= bytes; | ||
| 94 | status = 0; | ||
| 95 | } while (count); | ||
| 96 | |||
| 97 | return (-status); | ||
| 98 | } | ||
| 99 | |||
| 100 | STATIC int | ||
| 101 | xfs_file_fsync( | ||
| 102 | struct file *file, | ||
| 103 | struct dentry *dentry, | ||
| 104 | int datasync) | ||
| 105 | { | ||
| 106 | struct xfs_inode *ip = XFS_I(dentry->d_inode); | ||
| 107 | struct xfs_trans *tp; | ||
| 108 | int error = 0; | ||
| 109 | int log_flushed = 0; | ||
| 110 | |||
| 111 | xfs_itrace_entry(ip); | ||
| 112 | |||
| 113 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) | ||
| 114 | return -XFS_ERROR(EIO); | ||
| 115 | |||
| 116 | xfs_iflags_clear(ip, XFS_ITRUNCATED); | ||
| 117 | |||
| 118 | /* | ||
| 119 | * We always need to make sure that the required inode state is safe on | ||
| 120 | * disk. The inode might be clean but we still might need to force the | ||
| 121 | * log because of committed transactions that haven't hit the disk yet. | ||
| 122 | * Likewise, there could be unflushed non-transactional changes to the | ||
| 123 | * inode core that have to go to disk and this requires us to issue | ||
| 124 | * a synchronous transaction to capture these changes correctly. | ||
| 125 | * | ||
| 126 | * This code relies on the assumption that if the i_update_core field | ||
| 127 | * of the inode is clear and the inode is unpinned then it is clean | ||
| 128 | * and no action is required. | ||
| 129 | */ | ||
| 130 | xfs_ilock(ip, XFS_ILOCK_SHARED); | ||
| 131 | |||
| 132 | /* | ||
| 133 | * First check if the VFS inode is marked dirty. All the dirtying | ||
| 134 | * of non-transactional updates no goes through mark_inode_dirty*, | ||
| 135 | * which allows us to distinguish beteeen pure timestamp updates | ||
| 136 | * and i_size updates which need to be caught for fdatasync. | ||
| 137 | * After that also theck for the dirty state in the XFS inode, which | ||
| 138 | * might gets cleared when the inode gets written out via the AIL | ||
| 139 | * or xfs_iflush_cluster. | ||
| 140 | */ | ||
| 141 | if (((dentry->d_inode->i_state & I_DIRTY_DATASYNC) || | ||
| 142 | ((dentry->d_inode->i_state & I_DIRTY_SYNC) && !datasync)) && | ||
| 143 | ip->i_update_core) { | ||
| 144 | /* | ||
| 145 | * Kick off a transaction to log the inode core to get the | ||
| 146 | * updates. The sync transaction will also force the log. | ||
| 147 | */ | ||
| 148 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | ||
| 149 | tp = xfs_trans_alloc(ip->i_mount, XFS_TRANS_FSYNC_TS); | ||
| 150 | error = xfs_trans_reserve(tp, 0, | ||
| 151 | XFS_FSYNC_TS_LOG_RES(ip->i_mount), 0, 0, 0); | ||
| 152 | if (error) { | ||
| 153 | xfs_trans_cancel(tp, 0); | ||
| 154 | return -error; | ||
| 155 | } | ||
| 156 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 157 | |||
| 158 | /* | ||
| 159 | * Note - it's possible that we might have pushed ourselves out | ||
| 160 | * of the way during trans_reserve which would flush the inode. | ||
| 161 | * But there's no guarantee that the inode buffer has actually | ||
| 162 | * gone out yet (it's delwri). Plus the buffer could be pinned | ||
| 163 | * anyway if it's part of an inode in another recent | ||
| 164 | * transaction. So we play it safe and fire off the | ||
| 165 | * transaction anyway. | ||
| 166 | */ | ||
| 167 | xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL); | ||
| 168 | xfs_trans_ihold(tp, ip); | ||
| 169 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); | ||
| 170 | xfs_trans_set_sync(tp); | ||
| 171 | error = _xfs_trans_commit(tp, 0, &log_flushed); | ||
| 172 | |||
| 173 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 174 | } else { | ||
| 175 | /* | ||
| 176 | * Timestamps/size haven't changed since last inode flush or | ||
| 177 | * inode transaction commit. That means either nothing got | ||
| 178 | * written or a transaction committed which caught the updates. | ||
| 179 | * If the latter happened and the transaction hasn't hit the | ||
| 180 | * disk yet, the inode will be still be pinned. If it is, | ||
| 181 | * force the log. | ||
| 182 | */ | ||
| 183 | if (xfs_ipincount(ip)) { | ||
| 184 | error = _xfs_log_force_lsn(ip->i_mount, | ||
| 185 | ip->i_itemp->ili_last_lsn, | ||
| 186 | XFS_LOG_SYNC, &log_flushed); | ||
| 187 | } | ||
| 188 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | ||
| 189 | } | ||
| 190 | |||
| 191 | if (ip->i_mount->m_flags & XFS_MOUNT_BARRIER) { | ||
| 192 | /* | ||
| 193 | * If the log write didn't issue an ordered tag we need | ||
| 194 | * to flush the disk cache for the data device now. | ||
| 195 | */ | ||
| 196 | if (!log_flushed) | ||
| 197 | xfs_blkdev_issue_flush(ip->i_mount->m_ddev_targp); | ||
| 198 | |||
| 199 | /* | ||
| 200 | * If this inode is on the RT dev we need to flush that | ||
| 201 | * cache as well. | ||
| 202 | */ | ||
| 203 | if (XFS_IS_REALTIME_INODE(ip)) | ||
| 204 | xfs_blkdev_issue_flush(ip->i_mount->m_rtdev_targp); | ||
| 205 | } | ||
| 206 | |||
| 207 | return -error; | ||
| 64 | } | 208 | } | 
| 65 | 209 | ||
| 66 | STATIC ssize_t | 210 | STATIC ssize_t | 
| 67 | xfs_file_aio_write( | 211 | xfs_file_aio_read( | 
| 68 | struct kiocb *iocb, | 212 | struct kiocb *iocb, | 
| 69 | const struct iovec *iov, | 213 | const struct iovec *iovp, | 
| 70 | unsigned long nr_segs, | 214 | unsigned long nr_segs, | 
| 71 | loff_t pos) | 215 | loff_t pos) | 
| 72 | { | 216 | { | 
| 73 | struct file *file = iocb->ki_filp; | 217 | struct file *file = iocb->ki_filp; | 
| 218 | struct inode *inode = file->f_mapping->host; | ||
| 219 | struct xfs_inode *ip = XFS_I(inode); | ||
| 220 | struct xfs_mount *mp = ip->i_mount; | ||
| 221 | size_t size = 0; | ||
| 222 | ssize_t ret = 0; | ||
| 74 | int ioflags = 0; | 223 | int ioflags = 0; | 
| 224 | xfs_fsize_t n; | ||
| 225 | unsigned long seg; | ||
| 226 | |||
| 227 | XFS_STATS_INC(xs_read_calls); | ||
| 75 | 228 | ||
| 76 | BUG_ON(iocb->ki_pos != pos); | 229 | BUG_ON(iocb->ki_pos != pos); | 
| 230 | |||
| 77 | if (unlikely(file->f_flags & O_DIRECT)) | 231 | if (unlikely(file->f_flags & O_DIRECT)) | 
| 78 | ioflags |= IO_ISDIRECT; | 232 | ioflags |= IO_ISDIRECT; | 
| 79 | if (file->f_mode & FMODE_NOCMTIME) | 233 | if (file->f_mode & FMODE_NOCMTIME) | 
| 80 | ioflags |= IO_INVIS; | 234 | ioflags |= IO_INVIS; | 
| 81 | return xfs_write(XFS_I(file->f_mapping->host), iocb, iov, nr_segs, | 235 | |
| 82 | &iocb->ki_pos, ioflags); | 236 | /* START copy & waste from filemap.c */ | 
| 237 | for (seg = 0; seg < nr_segs; seg++) { | ||
| 238 | const struct iovec *iv = &iovp[seg]; | ||
| 239 | |||
| 240 | /* | ||
| 241 | * If any segment has a negative length, or the cumulative | ||
| 242 | * length ever wraps negative then return -EINVAL. | ||
| 243 | */ | ||
| 244 | size += iv->iov_len; | ||
| 245 | if (unlikely((ssize_t)(size|iv->iov_len) < 0)) | ||
| 246 | return XFS_ERROR(-EINVAL); | ||
| 247 | } | ||
| 248 | /* END copy & waste from filemap.c */ | ||
| 249 | |||
| 250 | if (unlikely(ioflags & IO_ISDIRECT)) { | ||
| 251 | xfs_buftarg_t *target = | ||
| 252 | XFS_IS_REALTIME_INODE(ip) ? | ||
| 253 | mp->m_rtdev_targp : mp->m_ddev_targp; | ||
| 254 | if ((iocb->ki_pos & target->bt_smask) || | ||
| 255 | (size & target->bt_smask)) { | ||
| 256 | if (iocb->ki_pos == ip->i_size) | ||
| 257 | return 0; | ||
| 258 | return -XFS_ERROR(EINVAL); | ||
| 259 | } | ||
| 260 | } | ||
| 261 | |||
| 262 | n = XFS_MAXIOFFSET(mp) - iocb->ki_pos; | ||
| 263 | if (n <= 0 || size == 0) | ||
| 264 | return 0; | ||
| 265 | |||
| 266 | if (n < size) | ||
| 267 | size = n; | ||
| 268 | |||
| 269 | if (XFS_FORCED_SHUTDOWN(mp)) | ||
| 270 | return -EIO; | ||
| 271 | |||
| 272 | if (unlikely(ioflags & IO_ISDIRECT)) | ||
| 273 | mutex_lock(&inode->i_mutex); | ||
| 274 | xfs_ilock(ip, XFS_IOLOCK_SHARED); | ||
| 275 | |||
| 276 | if (DM_EVENT_ENABLED(ip, DM_EVENT_READ) && !(ioflags & IO_INVIS)) { | ||
| 277 | int dmflags = FILP_DELAY_FLAG(file) | DM_SEM_FLAG_RD(ioflags); | ||
| 278 | int iolock = XFS_IOLOCK_SHARED; | ||
| 279 | |||
| 280 | ret = -XFS_SEND_DATA(mp, DM_EVENT_READ, ip, iocb->ki_pos, size, | ||
| 281 | dmflags, &iolock); | ||
| 282 | if (ret) { | ||
| 283 | xfs_iunlock(ip, XFS_IOLOCK_SHARED); | ||
| 284 | if (unlikely(ioflags & IO_ISDIRECT)) | ||
| 285 | mutex_unlock(&inode->i_mutex); | ||
| 286 | return ret; | ||
| 287 | } | ||
| 288 | } | ||
| 289 | |||
| 290 | if (unlikely(ioflags & IO_ISDIRECT)) { | ||
| 291 | if (inode->i_mapping->nrpages) { | ||
| 292 | ret = -xfs_flushinval_pages(ip, | ||
| 293 | (iocb->ki_pos & PAGE_CACHE_MASK), | ||
| 294 | -1, FI_REMAPF_LOCKED); | ||
| 295 | } | ||
| 296 | mutex_unlock(&inode->i_mutex); | ||
| 297 | if (ret) { | ||
| 298 | xfs_iunlock(ip, XFS_IOLOCK_SHARED); | ||
| 299 | return ret; | ||
| 300 | } | ||
| 301 | } | ||
| 302 | |||
| 303 | trace_xfs_file_read(ip, size, iocb->ki_pos, ioflags); | ||
| 304 | |||
| 305 | ret = generic_file_aio_read(iocb, iovp, nr_segs, iocb->ki_pos); | ||
| 306 | if (ret > 0) | ||
| 307 | XFS_STATS_ADD(xs_read_bytes, ret); | ||
| 308 | |||
| 309 | xfs_iunlock(ip, XFS_IOLOCK_SHARED); | ||
| 310 | return ret; | ||
| 83 | } | 311 | } | 
| 84 | 312 | ||
| 85 | STATIC ssize_t | 313 | STATIC ssize_t | 
| @@ -87,16 +315,44 @@ xfs_file_splice_read( | |||
| 87 | struct file *infilp, | 315 | struct file *infilp, | 
| 88 | loff_t *ppos, | 316 | loff_t *ppos, | 
| 89 | struct pipe_inode_info *pipe, | 317 | struct pipe_inode_info *pipe, | 
| 90 | size_t len, | 318 | size_t count, | 
| 91 | unsigned int flags) | 319 | unsigned int flags) | 
| 92 | { | 320 | { | 
| 321 | struct xfs_inode *ip = XFS_I(infilp->f_mapping->host); | ||
| 322 | struct xfs_mount *mp = ip->i_mount; | ||
| 93 | int ioflags = 0; | 323 | int ioflags = 0; | 
| 324 | ssize_t ret; | ||
| 325 | |||
| 326 | XFS_STATS_INC(xs_read_calls); | ||
| 94 | 327 | ||
| 95 | if (infilp->f_mode & FMODE_NOCMTIME) | 328 | if (infilp->f_mode & FMODE_NOCMTIME) | 
| 96 | ioflags |= IO_INVIS; | 329 | ioflags |= IO_INVIS; | 
| 97 | 330 | ||
| 98 | return xfs_splice_read(XFS_I(infilp->f_path.dentry->d_inode), | 331 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) | 
| 99 | infilp, ppos, pipe, len, flags, ioflags); | 332 | return -EIO; | 
| 333 | |||
| 334 | xfs_ilock(ip, XFS_IOLOCK_SHARED); | ||
| 335 | |||
| 336 | if (DM_EVENT_ENABLED(ip, DM_EVENT_READ) && !(ioflags & IO_INVIS)) { | ||
| 337 | int iolock = XFS_IOLOCK_SHARED; | ||
| 338 | int error; | ||
| 339 | |||
| 340 | error = XFS_SEND_DATA(mp, DM_EVENT_READ, ip, *ppos, count, | ||
| 341 | FILP_DELAY_FLAG(infilp), &iolock); | ||
| 342 | if (error) { | ||
| 343 | xfs_iunlock(ip, XFS_IOLOCK_SHARED); | ||
| 344 | return -error; | ||
| 345 | } | ||
| 346 | } | ||
| 347 | |||
| 348 | trace_xfs_file_splice_read(ip, count, *ppos, ioflags); | ||
| 349 | |||
| 350 | ret = generic_file_splice_read(infilp, ppos, pipe, count, flags); | ||
| 351 | if (ret > 0) | ||
| 352 | XFS_STATS_ADD(xs_read_bytes, ret); | ||
| 353 | |||
| 354 | xfs_iunlock(ip, XFS_IOLOCK_SHARED); | ||
| 355 | return ret; | ||
| 100 | } | 356 | } | 
| 101 | 357 | ||
| 102 | STATIC ssize_t | 358 | STATIC ssize_t | 
| @@ -104,16 +360,538 @@ xfs_file_splice_write( | |||
| 104 | struct pipe_inode_info *pipe, | 360 | struct pipe_inode_info *pipe, | 
| 105 | struct file *outfilp, | 361 | struct file *outfilp, | 
| 106 | loff_t *ppos, | 362 | loff_t *ppos, | 
| 107 | size_t len, | 363 | size_t count, | 
| 108 | unsigned int flags) | 364 | unsigned int flags) | 
| 109 | { | 365 | { | 
| 366 | struct inode *inode = outfilp->f_mapping->host; | ||
| 367 | struct xfs_inode *ip = XFS_I(inode); | ||
| 368 | struct xfs_mount *mp = ip->i_mount; | ||
| 369 | xfs_fsize_t isize, new_size; | ||
| 110 | int ioflags = 0; | 370 | int ioflags = 0; | 
| 371 | ssize_t ret; | ||
| 372 | |||
| 373 | XFS_STATS_INC(xs_write_calls); | ||
| 111 | 374 | ||
| 112 | if (outfilp->f_mode & FMODE_NOCMTIME) | 375 | if (outfilp->f_mode & FMODE_NOCMTIME) | 
| 113 | ioflags |= IO_INVIS; | 376 | ioflags |= IO_INVIS; | 
| 114 | 377 | ||
| 115 | return xfs_splice_write(XFS_I(outfilp->f_path.dentry->d_inode), | 378 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) | 
| 116 | pipe, outfilp, ppos, len, flags, ioflags); | 379 | return -EIO; | 
| 380 | |||
| 381 | xfs_ilock(ip, XFS_IOLOCK_EXCL); | ||
| 382 | |||
| 383 | if (DM_EVENT_ENABLED(ip, DM_EVENT_WRITE) && !(ioflags & IO_INVIS)) { | ||
| 384 | int iolock = XFS_IOLOCK_EXCL; | ||
| 385 | int error; | ||
| 386 | |||
| 387 | error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, ip, *ppos, count, | ||
| 388 | FILP_DELAY_FLAG(outfilp), &iolock); | ||
| 389 | if (error) { | ||
| 390 | xfs_iunlock(ip, XFS_IOLOCK_EXCL); | ||
| 391 | return -error; | ||
| 392 | } | ||
| 393 | } | ||
| 394 | |||
| 395 | new_size = *ppos + count; | ||
| 396 | |||
| 397 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 398 | if (new_size > ip->i_size) | ||
| 399 | ip->i_new_size = new_size; | ||
| 400 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 401 | |||
| 402 | trace_xfs_file_splice_write(ip, count, *ppos, ioflags); | ||
| 403 | |||
| 404 | ret = generic_file_splice_write(pipe, outfilp, ppos, count, flags); | ||
| 405 | if (ret > 0) | ||
| 406 | XFS_STATS_ADD(xs_write_bytes, ret); | ||
| 407 | |||
| 408 | isize = i_size_read(inode); | ||
| 409 | if (unlikely(ret < 0 && ret != -EFAULT && *ppos > isize)) | ||
| 410 | *ppos = isize; | ||
| 411 | |||
| 412 | if (*ppos > ip->i_size) { | ||
| 413 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 414 | if (*ppos > ip->i_size) | ||
| 415 | ip->i_size = *ppos; | ||
| 416 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 417 | } | ||
| 418 | |||
| 419 | if (ip->i_new_size) { | ||
| 420 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 421 | ip->i_new_size = 0; | ||
| 422 | if (ip->i_d.di_size > ip->i_size) | ||
| 423 | ip->i_d.di_size = ip->i_size; | ||
| 424 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 425 | } | ||
| 426 | xfs_iunlock(ip, XFS_IOLOCK_EXCL); | ||
| 427 | return ret; | ||
| 428 | } | ||
| 429 | |||
| 430 | /* | ||
| 431 | * This routine is called to handle zeroing any space in the last | ||
| 432 | * block of the file that is beyond the EOF. We do this since the | ||
| 433 | * size is being increased without writing anything to that block | ||
| 434 | * and we don't want anyone to read the garbage on the disk. | ||
| 435 | */ | ||
| 436 | STATIC int /* error (positive) */ | ||
| 437 | xfs_zero_last_block( | ||
| 438 | xfs_inode_t *ip, | ||
| 439 | xfs_fsize_t offset, | ||
| 440 | xfs_fsize_t isize) | ||
| 441 | { | ||
| 442 | xfs_fileoff_t last_fsb; | ||
| 443 | xfs_mount_t *mp = ip->i_mount; | ||
| 444 | int nimaps; | ||
| 445 | int zero_offset; | ||
| 446 | int zero_len; | ||
| 447 | int error = 0; | ||
| 448 | xfs_bmbt_irec_t imap; | ||
| 449 | |||
| 450 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL)); | ||
| 451 | |||
| 452 | zero_offset = XFS_B_FSB_OFFSET(mp, isize); | ||
| 453 | if (zero_offset == 0) { | ||
| 454 | /* | ||
| 455 | * There are no extra bytes in the last block on disk to | ||
| 456 | * zero, so return. | ||
| 457 | */ | ||
| 458 | return 0; | ||
| 459 | } | ||
| 460 | |||
| 461 | last_fsb = XFS_B_TO_FSBT(mp, isize); | ||
| 462 | nimaps = 1; | ||
| 463 | error = xfs_bmapi(NULL, ip, last_fsb, 1, 0, NULL, 0, &imap, | ||
| 464 | &nimaps, NULL, NULL); | ||
| 465 | if (error) { | ||
| 466 | return error; | ||
| 467 | } | ||
| 468 | ASSERT(nimaps > 0); | ||
| 469 | /* | ||
| 470 | * If the block underlying isize is just a hole, then there | ||
| 471 | * is nothing to zero. | ||
| 472 | */ | ||
| 473 | if (imap.br_startblock == HOLESTARTBLOCK) { | ||
| 474 | return 0; | ||
| 475 | } | ||
| 476 | /* | ||
| 477 | * Zero the part of the last block beyond the EOF, and write it | ||
| 478 | * out sync. We need to drop the ilock while we do this so we | ||
| 479 | * don't deadlock when the buffer cache calls back to us. | ||
| 480 | */ | ||
| 481 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 482 | |||
| 483 | zero_len = mp->m_sb.sb_blocksize - zero_offset; | ||
| 484 | if (isize + zero_len > offset) | ||
| 485 | zero_len = offset - isize; | ||
| 486 | error = xfs_iozero(ip, isize, zero_len); | ||
| 487 | |||
| 488 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 489 | ASSERT(error >= 0); | ||
| 490 | return error; | ||
| 491 | } | ||
| 492 | |||
| 493 | /* | ||
| 494 | * Zero any on disk space between the current EOF and the new, | ||
| 495 | * larger EOF. This handles the normal case of zeroing the remainder | ||
| 496 | * of the last block in the file and the unusual case of zeroing blocks | ||
| 497 | * out beyond the size of the file. This second case only happens | ||
| 498 | * with fixed size extents and when the system crashes before the inode | ||
| 499 | * size was updated but after blocks were allocated. If fill is set, | ||
| 500 | * then any holes in the range are filled and zeroed. If not, the holes | ||
| 501 | * are left alone as holes. | ||
| 502 | */ | ||
| 503 | |||
| 504 | int /* error (positive) */ | ||
| 505 | xfs_zero_eof( | ||
| 506 | xfs_inode_t *ip, | ||
| 507 | xfs_off_t offset, /* starting I/O offset */ | ||
| 508 | xfs_fsize_t isize) /* current inode size */ | ||
| 509 | { | ||
| 510 | xfs_mount_t *mp = ip->i_mount; | ||
| 511 | xfs_fileoff_t start_zero_fsb; | ||
| 512 | xfs_fileoff_t end_zero_fsb; | ||
| 513 | xfs_fileoff_t zero_count_fsb; | ||
| 514 | xfs_fileoff_t last_fsb; | ||
| 515 | xfs_fileoff_t zero_off; | ||
| 516 | xfs_fsize_t zero_len; | ||
| 517 | int nimaps; | ||
| 518 | int error = 0; | ||
| 519 | xfs_bmbt_irec_t imap; | ||
| 520 | |||
| 521 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_IOLOCK_EXCL)); | ||
| 522 | ASSERT(offset > isize); | ||
| 523 | |||
| 524 | /* | ||
| 525 | * First handle zeroing the block on which isize resides. | ||
| 526 | * We only zero a part of that block so it is handled specially. | ||
| 527 | */ | ||
| 528 | error = xfs_zero_last_block(ip, offset, isize); | ||
| 529 | if (error) { | ||
| 530 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_IOLOCK_EXCL)); | ||
| 531 | return error; | ||
| 532 | } | ||
| 533 | |||
| 534 | /* | ||
| 535 | * Calculate the range between the new size and the old | ||
| 536 | * where blocks needing to be zeroed may exist. To get the | ||
| 537 | * block where the last byte in the file currently resides, | ||
| 538 | * we need to subtract one from the size and truncate back | ||
| 539 | * to a block boundary. We subtract 1 in case the size is | ||
| 540 | * exactly on a block boundary. | ||
| 541 | */ | ||
| 542 | last_fsb = isize ? XFS_B_TO_FSBT(mp, isize - 1) : (xfs_fileoff_t)-1; | ||
| 543 | start_zero_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)isize); | ||
| 544 | end_zero_fsb = XFS_B_TO_FSBT(mp, offset - 1); | ||
| 545 | ASSERT((xfs_sfiloff_t)last_fsb < (xfs_sfiloff_t)start_zero_fsb); | ||
| 546 | if (last_fsb == end_zero_fsb) { | ||
| 547 | /* | ||
| 548 | * The size was only incremented on its last block. | ||
| 549 | * We took care of that above, so just return. | ||
| 550 | */ | ||
| 551 | return 0; | ||
| 552 | } | ||
| 553 | |||
| 554 | ASSERT(start_zero_fsb <= end_zero_fsb); | ||
| 555 | while (start_zero_fsb <= end_zero_fsb) { | ||
| 556 | nimaps = 1; | ||
| 557 | zero_count_fsb = end_zero_fsb - start_zero_fsb + 1; | ||
| 558 | error = xfs_bmapi(NULL, ip, start_zero_fsb, zero_count_fsb, | ||
| 559 | 0, NULL, 0, &imap, &nimaps, NULL, NULL); | ||
| 560 | if (error) { | ||
| 561 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_IOLOCK_EXCL)); | ||
| 562 | return error; | ||
| 563 | } | ||
| 564 | ASSERT(nimaps > 0); | ||
| 565 | |||
| 566 | if (imap.br_state == XFS_EXT_UNWRITTEN || | ||
| 567 | imap.br_startblock == HOLESTARTBLOCK) { | ||
| 568 | /* | ||
| 569 | * This loop handles initializing pages that were | ||
| 570 | * partially initialized by the code below this | ||
| 571 | * loop. It basically zeroes the part of the page | ||
| 572 | * that sits on a hole and sets the page as P_HOLE | ||
| 573 | * and calls remapf if it is a mapped file. | ||
| 574 | */ | ||
| 575 | start_zero_fsb = imap.br_startoff + imap.br_blockcount; | ||
| 576 | ASSERT(start_zero_fsb <= (end_zero_fsb + 1)); | ||
| 577 | continue; | ||
| 578 | } | ||
| 579 | |||
| 580 | /* | ||
| 581 | * There are blocks we need to zero. | ||
| 582 | * Drop the inode lock while we're doing the I/O. | ||
| 583 | * We'll still have the iolock to protect us. | ||
| 584 | */ | ||
| 585 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 586 | |||
| 587 | zero_off = XFS_FSB_TO_B(mp, start_zero_fsb); | ||
| 588 | zero_len = XFS_FSB_TO_B(mp, imap.br_blockcount); | ||
| 589 | |||
| 590 | if ((zero_off + zero_len) > offset) | ||
| 591 | zero_len = offset - zero_off; | ||
| 592 | |||
| 593 | error = xfs_iozero(ip, zero_off, zero_len); | ||
| 594 | if (error) { | ||
| 595 | goto out_lock; | ||
| 596 | } | ||
| 597 | |||
| 598 | start_zero_fsb = imap.br_startoff + imap.br_blockcount; | ||
| 599 | ASSERT(start_zero_fsb <= (end_zero_fsb + 1)); | ||
| 600 | |||
| 601 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 602 | } | ||
| 603 | |||
| 604 | return 0; | ||
| 605 | |||
| 606 | out_lock: | ||
| 607 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 608 | ASSERT(error >= 0); | ||
| 609 | return error; | ||
| 610 | } | ||
| 611 | |||
| 612 | STATIC ssize_t | ||
| 613 | xfs_file_aio_write( | ||
| 614 | struct kiocb *iocb, | ||
| 615 | const struct iovec *iovp, | ||
| 616 | unsigned long nr_segs, | ||
| 617 | loff_t pos) | ||
| 618 | { | ||
| 619 | struct file *file = iocb->ki_filp; | ||
| 620 | struct address_space *mapping = file->f_mapping; | ||
| 621 | struct inode *inode = mapping->host; | ||
| 622 | struct xfs_inode *ip = XFS_I(inode); | ||
| 623 | struct xfs_mount *mp = ip->i_mount; | ||
| 624 | ssize_t ret = 0, error = 0; | ||
| 625 | int ioflags = 0; | ||
| 626 | xfs_fsize_t isize, new_size; | ||
| 627 | int iolock; | ||
| 628 | int eventsent = 0; | ||
| 629 | size_t ocount = 0, count; | ||
| 630 | int need_i_mutex; | ||
| 631 | |||
| 632 | XFS_STATS_INC(xs_write_calls); | ||
| 633 | |||
| 634 | BUG_ON(iocb->ki_pos != pos); | ||
| 635 | |||
| 636 | if (unlikely(file->f_flags & O_DIRECT)) | ||
| 637 | ioflags |= IO_ISDIRECT; | ||
| 638 | if (file->f_mode & FMODE_NOCMTIME) | ||
| 639 | ioflags |= IO_INVIS; | ||
| 640 | |||
| 641 | error = generic_segment_checks(iovp, &nr_segs, &ocount, VERIFY_READ); | ||
| 642 | if (error) | ||
| 643 | return error; | ||
| 644 | |||
| 645 | count = ocount; | ||
| 646 | if (count == 0) | ||
| 647 | return 0; | ||
| 648 | |||
| 649 | xfs_wait_for_freeze(mp, SB_FREEZE_WRITE); | ||
| 650 | |||
| 651 | if (XFS_FORCED_SHUTDOWN(mp)) | ||
| 652 | return -EIO; | ||
| 653 | |||
| 654 | relock: | ||
| 655 | if (ioflags & IO_ISDIRECT) { | ||
| 656 | iolock = XFS_IOLOCK_SHARED; | ||
| 657 | need_i_mutex = 0; | ||
| 658 | } else { | ||
| 659 | iolock = XFS_IOLOCK_EXCL; | ||
| 660 | need_i_mutex = 1; | ||
| 661 | mutex_lock(&inode->i_mutex); | ||
| 662 | } | ||
| 663 | |||
| 664 | xfs_ilock(ip, XFS_ILOCK_EXCL|iolock); | ||
| 665 | |||
| 666 | start: | ||
| 667 | error = -generic_write_checks(file, &pos, &count, | ||
| 668 | S_ISBLK(inode->i_mode)); | ||
| 669 | if (error) { | ||
| 670 | xfs_iunlock(ip, XFS_ILOCK_EXCL|iolock); | ||
| 671 | goto out_unlock_mutex; | ||
| 672 | } | ||
| 673 | |||
| 674 | if ((DM_EVENT_ENABLED(ip, DM_EVENT_WRITE) && | ||
| 675 | !(ioflags & IO_INVIS) && !eventsent)) { | ||
| 676 | int dmflags = FILP_DELAY_FLAG(file); | ||
| 677 | |||
| 678 | if (need_i_mutex) | ||
| 679 | dmflags |= DM_FLAGS_IMUX; | ||
| 680 | |||
| 681 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 682 | error = XFS_SEND_DATA(ip->i_mount, DM_EVENT_WRITE, ip, | ||
| 683 | pos, count, dmflags, &iolock); | ||
| 684 | if (error) { | ||
| 685 | goto out_unlock_internal; | ||
| 686 | } | ||
| 687 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 688 | eventsent = 1; | ||
| 689 | |||
| 690 | /* | ||
| 691 | * The iolock was dropped and reacquired in XFS_SEND_DATA | ||
| 692 | * so we have to recheck the size when appending. | ||
| 693 | * We will only "goto start;" once, since having sent the | ||
| 694 | * event prevents another call to XFS_SEND_DATA, which is | ||
| 695 | * what allows the size to change in the first place. | ||
| 696 | */ | ||
| 697 | if ((file->f_flags & O_APPEND) && pos != ip->i_size) | ||
| 698 | goto start; | ||
| 699 | } | ||
| 700 | |||
| 701 | if (ioflags & IO_ISDIRECT) { | ||
| 702 | xfs_buftarg_t *target = | ||
| 703 | XFS_IS_REALTIME_INODE(ip) ? | ||
| 704 | mp->m_rtdev_targp : mp->m_ddev_targp; | ||
| 705 | |||
| 706 | if ((pos & target->bt_smask) || (count & target->bt_smask)) { | ||
| 707 | xfs_iunlock(ip, XFS_ILOCK_EXCL|iolock); | ||
| 708 | return XFS_ERROR(-EINVAL); | ||
| 709 | } | ||
| 710 | |||
| 711 | if (!need_i_mutex && (mapping->nrpages || pos > ip->i_size)) { | ||
| 712 | xfs_iunlock(ip, XFS_ILOCK_EXCL|iolock); | ||
| 713 | iolock = XFS_IOLOCK_EXCL; | ||
| 714 | need_i_mutex = 1; | ||
| 715 | mutex_lock(&inode->i_mutex); | ||
| 716 | xfs_ilock(ip, XFS_ILOCK_EXCL|iolock); | ||
| 717 | goto start; | ||
| 718 | } | ||
| 719 | } | ||
| 720 | |||
| 721 | new_size = pos + count; | ||
| 722 | if (new_size > ip->i_size) | ||
| 723 | ip->i_new_size = new_size; | ||
| 724 | |||
| 725 | if (likely(!(ioflags & IO_INVIS))) | ||
| 726 | file_update_time(file); | ||
| 727 | |||
| 728 | /* | ||
| 729 | * If the offset is beyond the size of the file, we have a couple | ||
| 730 | * of things to do. First, if there is already space allocated | ||
| 731 | * we need to either create holes or zero the disk or ... | ||
| 732 | * | ||
| 733 | * If there is a page where the previous size lands, we need | ||
| 734 | * to zero it out up to the new size. | ||
| 735 | */ | ||
| 736 | |||
| 737 | if (pos > ip->i_size) { | ||
| 738 | error = xfs_zero_eof(ip, pos, ip->i_size); | ||
| 739 | if (error) { | ||
| 740 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 741 | goto out_unlock_internal; | ||
| 742 | } | ||
| 743 | } | ||
| 744 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 745 | |||
| 746 | /* | ||
| 747 | * If we're writing the file then make sure to clear the | ||
| 748 | * setuid and setgid bits if the process is not being run | ||
| 749 | * by root. This keeps people from modifying setuid and | ||
| 750 | * setgid binaries. | ||
| 751 | */ | ||
| 752 | error = -file_remove_suid(file); | ||
| 753 | if (unlikely(error)) | ||
| 754 | goto out_unlock_internal; | ||
| 755 | |||
| 756 | /* We can write back this queue in page reclaim */ | ||
| 757 | current->backing_dev_info = mapping->backing_dev_info; | ||
| 758 | |||
| 759 | if ((ioflags & IO_ISDIRECT)) { | ||
| 760 | if (mapping->nrpages) { | ||
| 761 | WARN_ON(need_i_mutex == 0); | ||
| 762 | error = xfs_flushinval_pages(ip, | ||
| 763 | (pos & PAGE_CACHE_MASK), | ||
| 764 | -1, FI_REMAPF_LOCKED); | ||
| 765 | if (error) | ||
| 766 | goto out_unlock_internal; | ||
| 767 | } | ||
| 768 | |||
| 769 | if (need_i_mutex) { | ||
| 770 | /* demote the lock now the cached pages are gone */ | ||
| 771 | xfs_ilock_demote(ip, XFS_IOLOCK_EXCL); | ||
| 772 | mutex_unlock(&inode->i_mutex); | ||
| 773 | |||
| 774 | iolock = XFS_IOLOCK_SHARED; | ||
| 775 | need_i_mutex = 0; | ||
| 776 | } | ||
| 777 | |||
| 778 | trace_xfs_file_direct_write(ip, count, iocb->ki_pos, ioflags); | ||
| 779 | ret = generic_file_direct_write(iocb, iovp, | ||
| 780 | &nr_segs, pos, &iocb->ki_pos, count, ocount); | ||
| 781 | |||
| 782 | /* | ||
| 783 | * direct-io write to a hole: fall through to buffered I/O | ||
| 784 | * for completing the rest of the request. | ||
| 785 | */ | ||
| 786 | if (ret >= 0 && ret != count) { | ||
| 787 | XFS_STATS_ADD(xs_write_bytes, ret); | ||
| 788 | |||
| 789 | pos += ret; | ||
| 790 | count -= ret; | ||
| 791 | |||
| 792 | ioflags &= ~IO_ISDIRECT; | ||
| 793 | xfs_iunlock(ip, iolock); | ||
| 794 | goto relock; | ||
| 795 | } | ||
| 796 | } else { | ||
| 797 | int enospc = 0; | ||
| 798 | ssize_t ret2 = 0; | ||
| 799 | |||
| 800 | write_retry: | ||
| 801 | trace_xfs_file_buffered_write(ip, count, iocb->ki_pos, ioflags); | ||
| 802 | ret2 = generic_file_buffered_write(iocb, iovp, nr_segs, | ||
| 803 | pos, &iocb->ki_pos, count, ret); | ||
| 804 | /* | ||
| 805 | * if we just got an ENOSPC, flush the inode now we | ||
| 806 | * aren't holding any page locks and retry *once* | ||
| 807 | */ | ||
| 808 | if (ret2 == -ENOSPC && !enospc) { | ||
| 809 | error = xfs_flush_pages(ip, 0, -1, 0, FI_NONE); | ||
| 810 | if (error) | ||
| 811 | goto out_unlock_internal; | ||
| 812 | enospc = 1; | ||
| 813 | goto write_retry; | ||
| 814 | } | ||
| 815 | ret = ret2; | ||
| 816 | } | ||
| 817 | |||
| 818 | current->backing_dev_info = NULL; | ||
| 819 | |||
| 820 | isize = i_size_read(inode); | ||
| 821 | if (unlikely(ret < 0 && ret != -EFAULT && iocb->ki_pos > isize)) | ||
| 822 | iocb->ki_pos = isize; | ||
| 823 | |||
| 824 | if (iocb->ki_pos > ip->i_size) { | ||
| 825 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 826 | if (iocb->ki_pos > ip->i_size) | ||
| 827 | ip->i_size = iocb->ki_pos; | ||
| 828 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 829 | } | ||
| 830 | |||
| 831 | if (ret == -ENOSPC && | ||
| 832 | DM_EVENT_ENABLED(ip, DM_EVENT_NOSPACE) && !(ioflags & IO_INVIS)) { | ||
| 833 | xfs_iunlock(ip, iolock); | ||
| 834 | if (need_i_mutex) | ||
| 835 | mutex_unlock(&inode->i_mutex); | ||
| 836 | error = XFS_SEND_NAMESP(ip->i_mount, DM_EVENT_NOSPACE, ip, | ||
| 837 | DM_RIGHT_NULL, ip, DM_RIGHT_NULL, NULL, NULL, | ||
| 838 | 0, 0, 0); /* Delay flag intentionally unused */ | ||
| 839 | if (need_i_mutex) | ||
| 840 | mutex_lock(&inode->i_mutex); | ||
| 841 | xfs_ilock(ip, iolock); | ||
| 842 | if (error) | ||
| 843 | goto out_unlock_internal; | ||
| 844 | goto start; | ||
| 845 | } | ||
| 846 | |||
| 847 | error = -ret; | ||
| 848 | if (ret <= 0) | ||
| 849 | goto out_unlock_internal; | ||
| 850 | |||
| 851 | XFS_STATS_ADD(xs_write_bytes, ret); | ||
| 852 | |||
| 853 | /* Handle various SYNC-type writes */ | ||
| 854 | if ((file->f_flags & O_DSYNC) || IS_SYNC(inode)) { | ||
| 855 | loff_t end = pos + ret - 1; | ||
| 856 | int error2; | ||
| 857 | |||
| 858 | xfs_iunlock(ip, iolock); | ||
| 859 | if (need_i_mutex) | ||
| 860 | mutex_unlock(&inode->i_mutex); | ||
| 861 | |||
| 862 | error2 = filemap_write_and_wait_range(mapping, pos, end); | ||
| 863 | if (!error) | ||
| 864 | error = error2; | ||
| 865 | if (need_i_mutex) | ||
| 866 | mutex_lock(&inode->i_mutex); | ||
| 867 | xfs_ilock(ip, iolock); | ||
| 868 | |||
| 869 | error2 = -xfs_file_fsync(file, file->f_path.dentry, | ||
| 870 | (file->f_flags & __O_SYNC) ? 0 : 1); | ||
| 871 | if (!error) | ||
| 872 | error = error2; | ||
| 873 | } | ||
| 874 | |||
| 875 | out_unlock_internal: | ||
| 876 | if (ip->i_new_size) { | ||
| 877 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 878 | ip->i_new_size = 0; | ||
| 879 | /* | ||
| 880 | * If this was a direct or synchronous I/O that failed (such | ||
| 881 | * as ENOSPC) then part of the I/O may have been written to | ||
| 882 | * disk before the error occured. In this case the on-disk | ||
| 883 | * file size may have been adjusted beyond the in-memory file | ||
| 884 | * size and now needs to be truncated back. | ||
| 885 | */ | ||
| 886 | if (ip->i_d.di_size > ip->i_size) | ||
| 887 | ip->i_d.di_size = ip->i_size; | ||
| 888 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 889 | } | ||
| 890 | xfs_iunlock(ip, iolock); | ||
| 891 | out_unlock_mutex: | ||
| 892 | if (need_i_mutex) | ||
| 893 | mutex_unlock(&inode->i_mutex); | ||
| 894 | return -error; | ||
| 117 | } | 895 | } | 
| 118 | 896 | ||
| 119 | STATIC int | 897 | STATIC int | 
| @@ -160,28 +938,6 @@ xfs_file_release( | |||
| 160 | return -xfs_release(XFS_I(inode)); | 938 | return -xfs_release(XFS_I(inode)); | 
| 161 | } | 939 | } | 
| 162 | 940 | ||
| 163 | /* | ||
| 164 | * We ignore the datasync flag here because a datasync is effectively | ||
| 165 | * identical to an fsync. That is, datasync implies that we need to write | ||
| 166 | * only the metadata needed to be able to access the data that is written | ||
| 167 | * if we crash after the call completes. Hence if we are writing beyond | ||
| 168 | * EOF we have to log the inode size change as well, which makes it a | ||
| 169 | * full fsync. If we don't write beyond EOF, the inode core will be | ||
| 170 | * clean in memory and so we don't need to log the inode, just like | ||
| 171 | * fsync. | ||
| 172 | */ | ||
| 173 | STATIC int | ||
| 174 | xfs_file_fsync( | ||
| 175 | struct file *file, | ||
| 176 | struct dentry *dentry, | ||
| 177 | int datasync) | ||
| 178 | { | ||
| 179 | struct xfs_inode *ip = XFS_I(dentry->d_inode); | ||
| 180 | |||
| 181 | xfs_iflags_clear(ip, XFS_ITRUNCATED); | ||
| 182 | return -xfs_fsync(ip); | ||
| 183 | } | ||
| 184 | |||
| 185 | STATIC int | 941 | STATIC int | 
| 186 | xfs_file_readdir( | 942 | xfs_file_readdir( | 
| 187 | struct file *filp, | 943 | struct file *filp, | 
| @@ -203,9 +959,9 @@ xfs_file_readdir( | |||
| 203 | * | 959 | * | 
| 204 | * Try to give it an estimate that's good enough, maybe at some | 960 | * Try to give it an estimate that's good enough, maybe at some | 
| 205 | * point we can change the ->readdir prototype to include the | 961 | * point we can change the ->readdir prototype to include the | 
| 206 | * buffer size. | 962 | * buffer size. For now we use the current glibc buffer size. | 
| 207 | */ | 963 | */ | 
| 208 | bufsize = (size_t)min_t(loff_t, PAGE_SIZE, ip->i_d.di_size); | 964 | bufsize = (size_t)min_t(loff_t, 32768, ip->i_d.di_size); | 
| 209 | 965 | ||
| 210 | error = xfs_readdir(ip, dirent, bufsize, | 966 | error = xfs_readdir(ip, dirent, bufsize, | 
| 211 | (xfs_off_t *)&filp->f_pos, filldir); | 967 | (xfs_off_t *)&filp->f_pos, filldir); | 
diff --git a/fs/xfs/linux-2.6/xfs_fs_subr.c b/fs/xfs/linux-2.6/xfs_fs_subr.c index 7501b85fd860..b6918d76bc7b 100644 --- a/fs/xfs/linux-2.6/xfs_fs_subr.c +++ b/fs/xfs/linux-2.6/xfs_fs_subr.c  | |||
| @@ -79,7 +79,7 @@ xfs_flush_pages( | |||
| 79 | xfs_iflags_clear(ip, XFS_ITRUNCATED); | 79 | xfs_iflags_clear(ip, XFS_ITRUNCATED); | 
| 80 | ret = -filemap_fdatawrite(mapping); | 80 | ret = -filemap_fdatawrite(mapping); | 
| 81 | } | 81 | } | 
| 82 | if (flags & XFS_B_ASYNC) | 82 | if (flags & XBF_ASYNC) | 
| 83 | return ret; | 83 | return ret; | 
| 84 | ret2 = xfs_wait_on_pages(ip, first, last); | 84 | ret2 = xfs_wait_on_pages(ip, first, last); | 
| 85 | if (!ret) | 85 | if (!ret) | 
diff --git a/fs/xfs/linux-2.6/xfs_ioctl.c b/fs/xfs/linux-2.6/xfs_ioctl.c index a034cf624437..4ea1ee18aded 100644 --- a/fs/xfs/linux-2.6/xfs_ioctl.c +++ b/fs/xfs/linux-2.6/xfs_ioctl.c  | |||
| @@ -447,12 +447,12 @@ xfs_attrlist_by_handle( | |||
| 447 | int | 447 | int | 
| 448 | xfs_attrmulti_attr_get( | 448 | xfs_attrmulti_attr_get( | 
| 449 | struct inode *inode, | 449 | struct inode *inode, | 
| 450 | char *name, | 450 | unsigned char *name, | 
| 451 | char __user *ubuf, | 451 | unsigned char __user *ubuf, | 
| 452 | __uint32_t *len, | 452 | __uint32_t *len, | 
| 453 | __uint32_t flags) | 453 | __uint32_t flags) | 
| 454 | { | 454 | { | 
| 455 | char *kbuf; | 455 | unsigned char *kbuf; | 
| 456 | int error = EFAULT; | 456 | int error = EFAULT; | 
| 457 | 457 | ||
| 458 | if (*len > XATTR_SIZE_MAX) | 458 | if (*len > XATTR_SIZE_MAX) | 
| @@ -476,12 +476,12 @@ xfs_attrmulti_attr_get( | |||
| 476 | int | 476 | int | 
| 477 | xfs_attrmulti_attr_set( | 477 | xfs_attrmulti_attr_set( | 
| 478 | struct inode *inode, | 478 | struct inode *inode, | 
| 479 | char *name, | 479 | unsigned char *name, | 
| 480 | const char __user *ubuf, | 480 | const unsigned char __user *ubuf, | 
| 481 | __uint32_t len, | 481 | __uint32_t len, | 
| 482 | __uint32_t flags) | 482 | __uint32_t flags) | 
| 483 | { | 483 | { | 
| 484 | char *kbuf; | 484 | unsigned char *kbuf; | 
| 485 | int error = EFAULT; | 485 | int error = EFAULT; | 
| 486 | 486 | ||
| 487 | if (IS_IMMUTABLE(inode) || IS_APPEND(inode)) | 487 | if (IS_IMMUTABLE(inode) || IS_APPEND(inode)) | 
| @@ -501,7 +501,7 @@ xfs_attrmulti_attr_set( | |||
| 501 | int | 501 | int | 
| 502 | xfs_attrmulti_attr_remove( | 502 | xfs_attrmulti_attr_remove( | 
| 503 | struct inode *inode, | 503 | struct inode *inode, | 
| 504 | char *name, | 504 | unsigned char *name, | 
| 505 | __uint32_t flags) | 505 | __uint32_t flags) | 
| 506 | { | 506 | { | 
| 507 | if (IS_IMMUTABLE(inode) || IS_APPEND(inode)) | 507 | if (IS_IMMUTABLE(inode) || IS_APPEND(inode)) | 
| @@ -519,7 +519,7 @@ xfs_attrmulti_by_handle( | |||
| 519 | xfs_fsop_attrmulti_handlereq_t am_hreq; | 519 | xfs_fsop_attrmulti_handlereq_t am_hreq; | 
| 520 | struct dentry *dentry; | 520 | struct dentry *dentry; | 
| 521 | unsigned int i, size; | 521 | unsigned int i, size; | 
| 522 | char *attr_name; | 522 | unsigned char *attr_name; | 
| 523 | 523 | ||
| 524 | if (!capable(CAP_SYS_ADMIN)) | 524 | if (!capable(CAP_SYS_ADMIN)) | 
| 525 | return -XFS_ERROR(EPERM); | 525 | return -XFS_ERROR(EPERM); | 
| @@ -547,7 +547,7 @@ xfs_attrmulti_by_handle( | |||
| 547 | 547 | ||
| 548 | error = 0; | 548 | error = 0; | 
| 549 | for (i = 0; i < am_hreq.opcount; i++) { | 549 | for (i = 0; i < am_hreq.opcount; i++) { | 
| 550 | ops[i].am_error = strncpy_from_user(attr_name, | 550 | ops[i].am_error = strncpy_from_user((char *)attr_name, | 
| 551 | ops[i].am_attrname, MAXNAMELEN); | 551 | ops[i].am_attrname, MAXNAMELEN); | 
| 552 | if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN) | 552 | if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN) | 
| 553 | error = -ERANGE; | 553 | error = -ERANGE; | 
| @@ -1431,6 +1431,9 @@ xfs_file_ioctl( | |||
| 1431 | if (!capable(CAP_SYS_ADMIN)) | 1431 | if (!capable(CAP_SYS_ADMIN)) | 
| 1432 | return -EPERM; | 1432 | return -EPERM; | 
| 1433 | 1433 | ||
| 1434 | if (mp->m_flags & XFS_MOUNT_RDONLY) | ||
| 1435 | return -XFS_ERROR(EROFS); | ||
| 1436 | |||
| 1434 | if (copy_from_user(&inout, arg, sizeof(inout))) | 1437 | if (copy_from_user(&inout, arg, sizeof(inout))) | 
| 1435 | return -XFS_ERROR(EFAULT); | 1438 | return -XFS_ERROR(EFAULT); | 
| 1436 | 1439 | ||
diff --git a/fs/xfs/linux-2.6/xfs_ioctl.h b/fs/xfs/linux-2.6/xfs_ioctl.h index 7bd7c6afc1eb..d56173b34a2a 100644 --- a/fs/xfs/linux-2.6/xfs_ioctl.h +++ b/fs/xfs/linux-2.6/xfs_ioctl.h  | |||
| @@ -45,23 +45,23 @@ xfs_readlink_by_handle( | |||
| 45 | extern int | 45 | extern int | 
| 46 | xfs_attrmulti_attr_get( | 46 | xfs_attrmulti_attr_get( | 
| 47 | struct inode *inode, | 47 | struct inode *inode, | 
| 48 | char *name, | 48 | unsigned char *name, | 
| 49 | char __user *ubuf, | 49 | unsigned char __user *ubuf, | 
| 50 | __uint32_t *len, | 50 | __uint32_t *len, | 
| 51 | __uint32_t flags); | 51 | __uint32_t flags); | 
| 52 | 52 | ||
| 53 | extern int | 53 | extern int | 
| 54 | xfs_attrmulti_attr_set( | 54 | xfs_attrmulti_attr_set( | 
| 55 | struct inode *inode, | 55 | struct inode *inode, | 
| 56 | char *name, | 56 | unsigned char *name, | 
| 57 | const char __user *ubuf, | 57 | const unsigned char __user *ubuf, | 
| 58 | __uint32_t len, | 58 | __uint32_t len, | 
| 59 | __uint32_t flags); | 59 | __uint32_t flags); | 
| 60 | 60 | ||
| 61 | extern int | 61 | extern int | 
| 62 | xfs_attrmulti_attr_remove( | 62 | xfs_attrmulti_attr_remove( | 
| 63 | struct inode *inode, | 63 | struct inode *inode, | 
| 64 | char *name, | 64 | unsigned char *name, | 
| 65 | __uint32_t flags); | 65 | __uint32_t flags); | 
| 66 | 66 | ||
| 67 | extern struct dentry * | 67 | extern struct dentry * | 
diff --git a/fs/xfs/linux-2.6/xfs_ioctl32.c b/fs/xfs/linux-2.6/xfs_ioctl32.c index be1527b1670c..0bf6d61f0528 100644 --- a/fs/xfs/linux-2.6/xfs_ioctl32.c +++ b/fs/xfs/linux-2.6/xfs_ioctl32.c  | |||
| @@ -411,7 +411,7 @@ xfs_compat_attrmulti_by_handle( | |||
| 411 | compat_xfs_fsop_attrmulti_handlereq_t am_hreq; | 411 | compat_xfs_fsop_attrmulti_handlereq_t am_hreq; | 
| 412 | struct dentry *dentry; | 412 | struct dentry *dentry; | 
| 413 | unsigned int i, size; | 413 | unsigned int i, size; | 
| 414 | char *attr_name; | 414 | unsigned char *attr_name; | 
| 415 | 415 | ||
| 416 | if (!capable(CAP_SYS_ADMIN)) | 416 | if (!capable(CAP_SYS_ADMIN)) | 
| 417 | return -XFS_ERROR(EPERM); | 417 | return -XFS_ERROR(EPERM); | 
| @@ -440,7 +440,7 @@ xfs_compat_attrmulti_by_handle( | |||
| 440 | 440 | ||
| 441 | error = 0; | 441 | error = 0; | 
| 442 | for (i = 0; i < am_hreq.opcount; i++) { | 442 | for (i = 0; i < am_hreq.opcount; i++) { | 
| 443 | ops[i].am_error = strncpy_from_user(attr_name, | 443 | ops[i].am_error = strncpy_from_user((char *)attr_name, | 
| 444 | compat_ptr(ops[i].am_attrname), | 444 | compat_ptr(ops[i].am_attrname), | 
| 445 | MAXNAMELEN); | 445 | MAXNAMELEN); | 
| 446 | if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN) | 446 | if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN) | 
diff --git a/fs/xfs/linux-2.6/xfs_iops.c b/fs/xfs/linux-2.6/xfs_iops.c index 225946012d0b..61a99608731e 100644 --- a/fs/xfs/linux-2.6/xfs_iops.c +++ b/fs/xfs/linux-2.6/xfs_iops.c  | |||
| @@ -91,6 +91,16 @@ xfs_mark_inode_dirty_sync( | |||
| 91 | mark_inode_dirty_sync(inode); | 91 | mark_inode_dirty_sync(inode); | 
| 92 | } | 92 | } | 
| 93 | 93 | ||
| 94 | void | ||
| 95 | xfs_mark_inode_dirty( | ||
| 96 | xfs_inode_t *ip) | ||
| 97 | { | ||
| 98 | struct inode *inode = VFS_I(ip); | ||
| 99 | |||
| 100 | if (!(inode->i_state & (I_WILL_FREE|I_FREEING|I_CLEAR))) | ||
| 101 | mark_inode_dirty(inode); | ||
| 102 | } | ||
| 103 | |||
| 94 | /* | 104 | /* | 
| 95 | * Change the requested timestamp in the given inode. | 105 | * Change the requested timestamp in the given inode. | 
| 96 | * We don't lock across timestamp updates, and we don't log them but | 106 | * We don't lock across timestamp updates, and we don't log them but | 
| @@ -140,10 +150,10 @@ xfs_init_security( | |||
| 140 | struct xfs_inode *ip = XFS_I(inode); | 150 | struct xfs_inode *ip = XFS_I(inode); | 
| 141 | size_t length; | 151 | size_t length; | 
| 142 | void *value; | 152 | void *value; | 
| 143 | char *name; | 153 | unsigned char *name; | 
| 144 | int error; | 154 | int error; | 
| 145 | 155 | ||
| 146 | error = security_inode_init_security(inode, dir, &name, | 156 | error = security_inode_init_security(inode, dir, (char **)&name, | 
| 147 | &value, &length); | 157 | &value, &length); | 
| 148 | if (error) { | 158 | if (error) { | 
| 149 | if (error == -EOPNOTSUPP) | 159 | if (error == -EOPNOTSUPP) | 
diff --git a/fs/xfs/linux-2.6/xfs_linux.h b/fs/xfs/linux-2.6/xfs_linux.h index 5af0c81ca1ae..facfb323a706 100644 --- a/fs/xfs/linux-2.6/xfs_linux.h +++ b/fs/xfs/linux-2.6/xfs_linux.h  | |||
| @@ -88,7 +88,6 @@ | |||
| 88 | #include <xfs_super.h> | 88 | #include <xfs_super.h> | 
| 89 | #include <xfs_globals.h> | 89 | #include <xfs_globals.h> | 
| 90 | #include <xfs_fs_subr.h> | 90 | #include <xfs_fs_subr.h> | 
| 91 | #include <xfs_lrw.h> | ||
| 92 | #include <xfs_buf.h> | 91 | #include <xfs_buf.h> | 
| 93 | 92 | ||
| 94 | /* | 93 | /* | 
diff --git a/fs/xfs/linux-2.6/xfs_lrw.c b/fs/xfs/linux-2.6/xfs_lrw.c deleted file mode 100644 index 0d32457abef1..000000000000 --- a/fs/xfs/linux-2.6/xfs_lrw.c +++ /dev/null  | |||
| @@ -1,852 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc. | ||
| 3 | * All Rights Reserved. | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or | ||
| 6 | * modify it under the terms of the GNU General Public License as | ||
| 7 | * published by the Free Software Foundation. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it would be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program; if not, write the Free Software Foundation, | ||
| 16 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 17 | */ | ||
| 18 | #include "xfs.h" | ||
| 19 | #include "xfs_fs.h" | ||
| 20 | #include "xfs_bit.h" | ||
| 21 | #include "xfs_log.h" | ||
| 22 | #include "xfs_inum.h" | ||
| 23 | #include "xfs_trans.h" | ||
| 24 | #include "xfs_sb.h" | ||
| 25 | #include "xfs_ag.h" | ||
| 26 | #include "xfs_dir2.h" | ||
| 27 | #include "xfs_alloc.h" | ||
| 28 | #include "xfs_dmapi.h" | ||
| 29 | #include "xfs_quota.h" | ||
| 30 | #include "xfs_mount.h" | ||
| 31 | #include "xfs_bmap_btree.h" | ||
| 32 | #include "xfs_alloc_btree.h" | ||
| 33 | #include "xfs_ialloc_btree.h" | ||
| 34 | #include "xfs_dir2_sf.h" | ||
| 35 | #include "xfs_attr_sf.h" | ||
| 36 | #include "xfs_dinode.h" | ||
| 37 | #include "xfs_inode.h" | ||
| 38 | #include "xfs_bmap.h" | ||
| 39 | #include "xfs_btree.h" | ||
| 40 | #include "xfs_ialloc.h" | ||
| 41 | #include "xfs_rtalloc.h" | ||
| 42 | #include "xfs_error.h" | ||
| 43 | #include "xfs_itable.h" | ||
| 44 | #include "xfs_rw.h" | ||
| 45 | #include "xfs_attr.h" | ||
| 46 | #include "xfs_inode_item.h" | ||
| 47 | #include "xfs_buf_item.h" | ||
| 48 | #include "xfs_utils.h" | ||
| 49 | #include "xfs_iomap.h" | ||
| 50 | #include "xfs_vnodeops.h" | ||
| 51 | #include "xfs_trace.h" | ||
| 52 | |||
| 53 | #include <linux/capability.h> | ||
| 54 | #include <linux/writeback.h> | ||
| 55 | |||
| 56 | |||
| 57 | /* | ||
| 58 | * xfs_iozero | ||
| 59 | * | ||
| 60 | * xfs_iozero clears the specified range of buffer supplied, | ||
| 61 | * and marks all the affected blocks as valid and modified. If | ||
| 62 | * an affected block is not allocated, it will be allocated. If | ||
| 63 | * an affected block is not completely overwritten, and is not | ||
| 64 | * valid before the operation, it will be read from disk before | ||
| 65 | * being partially zeroed. | ||
| 66 | */ | ||
| 67 | STATIC int | ||
| 68 | xfs_iozero( | ||
| 69 | struct xfs_inode *ip, /* inode */ | ||
| 70 | loff_t pos, /* offset in file */ | ||
| 71 | size_t count) /* size of data to zero */ | ||
| 72 | { | ||
| 73 | struct page *page; | ||
| 74 | struct address_space *mapping; | ||
| 75 | int status; | ||
| 76 | |||
| 77 | mapping = VFS_I(ip)->i_mapping; | ||
| 78 | do { | ||
| 79 | unsigned offset, bytes; | ||
| 80 | void *fsdata; | ||
| 81 | |||
| 82 | offset = (pos & (PAGE_CACHE_SIZE -1)); /* Within page */ | ||
| 83 | bytes = PAGE_CACHE_SIZE - offset; | ||
| 84 | if (bytes > count) | ||
| 85 | bytes = count; | ||
| 86 | |||
| 87 | status = pagecache_write_begin(NULL, mapping, pos, bytes, | ||
| 88 | AOP_FLAG_UNINTERRUPTIBLE, | ||
| 89 | &page, &fsdata); | ||
| 90 | if (status) | ||
| 91 | break; | ||
| 92 | |||
| 93 | zero_user(page, offset, bytes); | ||
| 94 | |||
| 95 | status = pagecache_write_end(NULL, mapping, pos, bytes, bytes, | ||
| 96 | page, fsdata); | ||
| 97 | WARN_ON(status <= 0); /* can't return less than zero! */ | ||
| 98 | pos += bytes; | ||
| 99 | count -= bytes; | ||
| 100 | status = 0; | ||
| 101 | } while (count); | ||
| 102 | |||
| 103 | return (-status); | ||
| 104 | } | ||
| 105 | |||
| 106 | ssize_t /* bytes read, or (-) error */ | ||
| 107 | xfs_read( | ||
| 108 | xfs_inode_t *ip, | ||
| 109 | struct kiocb *iocb, | ||
| 110 | const struct iovec *iovp, | ||
| 111 | unsigned int segs, | ||
| 112 | loff_t *offset, | ||
| 113 | int ioflags) | ||
| 114 | { | ||
| 115 | struct file *file = iocb->ki_filp; | ||
| 116 | struct inode *inode = file->f_mapping->host; | ||
| 117 | xfs_mount_t *mp = ip->i_mount; | ||
| 118 | size_t size = 0; | ||
| 119 | ssize_t ret = 0; | ||
| 120 | xfs_fsize_t n; | ||
| 121 | unsigned long seg; | ||
| 122 | |||
| 123 | |||
| 124 | XFS_STATS_INC(xs_read_calls); | ||
| 125 | |||
| 126 | /* START copy & waste from filemap.c */ | ||
| 127 | for (seg = 0; seg < segs; seg++) { | ||
| 128 | const struct iovec *iv = &iovp[seg]; | ||
| 129 | |||
| 130 | /* | ||
| 131 | * If any segment has a negative length, or the cumulative | ||
| 132 | * length ever wraps negative then return -EINVAL. | ||
| 133 | */ | ||
| 134 | size += iv->iov_len; | ||
| 135 | if (unlikely((ssize_t)(size|iv->iov_len) < 0)) | ||
| 136 | return XFS_ERROR(-EINVAL); | ||
| 137 | } | ||
| 138 | /* END copy & waste from filemap.c */ | ||
| 139 | |||
| 140 | if (unlikely(ioflags & IO_ISDIRECT)) { | ||
| 141 | xfs_buftarg_t *target = | ||
| 142 | XFS_IS_REALTIME_INODE(ip) ? | ||
| 143 | mp->m_rtdev_targp : mp->m_ddev_targp; | ||
| 144 | if ((*offset & target->bt_smask) || | ||
| 145 | (size & target->bt_smask)) { | ||
| 146 | if (*offset == ip->i_size) { | ||
| 147 | return (0); | ||
| 148 | } | ||
| 149 | return -XFS_ERROR(EINVAL); | ||
| 150 | } | ||
| 151 | } | ||
| 152 | |||
| 153 | n = XFS_MAXIOFFSET(mp) - *offset; | ||
| 154 | if ((n <= 0) || (size == 0)) | ||
| 155 | return 0; | ||
| 156 | |||
| 157 | if (n < size) | ||
| 158 | size = n; | ||
| 159 | |||
| 160 | if (XFS_FORCED_SHUTDOWN(mp)) | ||
| 161 | return -EIO; | ||
| 162 | |||
| 163 | if (unlikely(ioflags & IO_ISDIRECT)) | ||
| 164 | mutex_lock(&inode->i_mutex); | ||
| 165 | xfs_ilock(ip, XFS_IOLOCK_SHARED); | ||
| 166 | |||
| 167 | if (DM_EVENT_ENABLED(ip, DM_EVENT_READ) && !(ioflags & IO_INVIS)) { | ||
| 168 | int dmflags = FILP_DELAY_FLAG(file) | DM_SEM_FLAG_RD(ioflags); | ||
| 169 | int iolock = XFS_IOLOCK_SHARED; | ||
| 170 | |||
| 171 | ret = -XFS_SEND_DATA(mp, DM_EVENT_READ, ip, *offset, size, | ||
| 172 | dmflags, &iolock); | ||
| 173 | if (ret) { | ||
| 174 | xfs_iunlock(ip, XFS_IOLOCK_SHARED); | ||
| 175 | if (unlikely(ioflags & IO_ISDIRECT)) | ||
| 176 | mutex_unlock(&inode->i_mutex); | ||
| 177 | return ret; | ||
| 178 | } | ||
| 179 | } | ||
| 180 | |||
| 181 | if (unlikely(ioflags & IO_ISDIRECT)) { | ||
| 182 | if (inode->i_mapping->nrpages) | ||
| 183 | ret = -xfs_flushinval_pages(ip, (*offset & PAGE_CACHE_MASK), | ||
| 184 | -1, FI_REMAPF_LOCKED); | ||
| 185 | mutex_unlock(&inode->i_mutex); | ||
| 186 | if (ret) { | ||
| 187 | xfs_iunlock(ip, XFS_IOLOCK_SHARED); | ||
| 188 | return ret; | ||
| 189 | } | ||
| 190 | } | ||
| 191 | |||
| 192 | trace_xfs_file_read(ip, size, *offset, ioflags); | ||
| 193 | |||
| 194 | iocb->ki_pos = *offset; | ||
| 195 | ret = generic_file_aio_read(iocb, iovp, segs, *offset); | ||
| 196 | if (ret > 0) | ||
| 197 | XFS_STATS_ADD(xs_read_bytes, ret); | ||
| 198 | |||
| 199 | xfs_iunlock(ip, XFS_IOLOCK_SHARED); | ||
| 200 | return ret; | ||
| 201 | } | ||
| 202 | |||
| 203 | ssize_t | ||
| 204 | xfs_splice_read( | ||
| 205 | xfs_inode_t *ip, | ||
| 206 | struct file *infilp, | ||
| 207 | loff_t *ppos, | ||
| 208 | struct pipe_inode_info *pipe, | ||
| 209 | size_t count, | ||
| 210 | int flags, | ||
| 211 | int ioflags) | ||
| 212 | { | ||
| 213 | xfs_mount_t *mp = ip->i_mount; | ||
| 214 | ssize_t ret; | ||
| 215 | |||
| 216 | XFS_STATS_INC(xs_read_calls); | ||
| 217 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) | ||
| 218 | return -EIO; | ||
| 219 | |||
| 220 | xfs_ilock(ip, XFS_IOLOCK_SHARED); | ||
| 221 | |||
| 222 | if (DM_EVENT_ENABLED(ip, DM_EVENT_READ) && !(ioflags & IO_INVIS)) { | ||
| 223 | int iolock = XFS_IOLOCK_SHARED; | ||
| 224 | int error; | ||
| 225 | |||
| 226 | error = XFS_SEND_DATA(mp, DM_EVENT_READ, ip, *ppos, count, | ||
| 227 | FILP_DELAY_FLAG(infilp), &iolock); | ||
| 228 | if (error) { | ||
| 229 | xfs_iunlock(ip, XFS_IOLOCK_SHARED); | ||
| 230 | return -error; | ||
| 231 | } | ||
| 232 | } | ||
| 233 | |||
| 234 | trace_xfs_file_splice_read(ip, count, *ppos, ioflags); | ||
| 235 | |||
| 236 | ret = generic_file_splice_read(infilp, ppos, pipe, count, flags); | ||
| 237 | if (ret > 0) | ||
| 238 | XFS_STATS_ADD(xs_read_bytes, ret); | ||
| 239 | |||
| 240 | xfs_iunlock(ip, XFS_IOLOCK_SHARED); | ||
| 241 | return ret; | ||
| 242 | } | ||
| 243 | |||
| 244 | ssize_t | ||
| 245 | xfs_splice_write( | ||
| 246 | xfs_inode_t *ip, | ||
| 247 | struct pipe_inode_info *pipe, | ||
| 248 | struct file *outfilp, | ||
| 249 | loff_t *ppos, | ||
| 250 | size_t count, | ||
| 251 | int flags, | ||
| 252 | int ioflags) | ||
| 253 | { | ||
| 254 | xfs_mount_t *mp = ip->i_mount; | ||
| 255 | ssize_t ret; | ||
| 256 | struct inode *inode = outfilp->f_mapping->host; | ||
| 257 | xfs_fsize_t isize, new_size; | ||
| 258 | |||
| 259 | XFS_STATS_INC(xs_write_calls); | ||
| 260 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) | ||
| 261 | return -EIO; | ||
| 262 | |||
| 263 | xfs_ilock(ip, XFS_IOLOCK_EXCL); | ||
| 264 | |||
| 265 | if (DM_EVENT_ENABLED(ip, DM_EVENT_WRITE) && !(ioflags & IO_INVIS)) { | ||
| 266 | int iolock = XFS_IOLOCK_EXCL; | ||
| 267 | int error; | ||
| 268 | |||
| 269 | error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, ip, *ppos, count, | ||
| 270 | FILP_DELAY_FLAG(outfilp), &iolock); | ||
| 271 | if (error) { | ||
| 272 | xfs_iunlock(ip, XFS_IOLOCK_EXCL); | ||
| 273 | return -error; | ||
| 274 | } | ||
| 275 | } | ||
| 276 | |||
| 277 | new_size = *ppos + count; | ||
| 278 | |||
| 279 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 280 | if (new_size > ip->i_size) | ||
| 281 | ip->i_new_size = new_size; | ||
| 282 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 283 | |||
| 284 | trace_xfs_file_splice_write(ip, count, *ppos, ioflags); | ||
| 285 | |||
| 286 | ret = generic_file_splice_write(pipe, outfilp, ppos, count, flags); | ||
| 287 | if (ret > 0) | ||
| 288 | XFS_STATS_ADD(xs_write_bytes, ret); | ||
| 289 | |||
| 290 | isize = i_size_read(inode); | ||
| 291 | if (unlikely(ret < 0 && ret != -EFAULT && *ppos > isize)) | ||
| 292 | *ppos = isize; | ||
| 293 | |||
| 294 | if (*ppos > ip->i_size) { | ||
| 295 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 296 | if (*ppos > ip->i_size) | ||
| 297 | ip->i_size = *ppos; | ||
| 298 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 299 | } | ||
| 300 | |||
| 301 | if (ip->i_new_size) { | ||
| 302 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 303 | ip->i_new_size = 0; | ||
| 304 | if (ip->i_d.di_size > ip->i_size) | ||
| 305 | ip->i_d.di_size = ip->i_size; | ||
| 306 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 307 | } | ||
| 308 | xfs_iunlock(ip, XFS_IOLOCK_EXCL); | ||
| 309 | return ret; | ||
| 310 | } | ||
| 311 | |||
| 312 | /* | ||
| 313 | * This routine is called to handle zeroing any space in the last | ||
| 314 | * block of the file that is beyond the EOF. We do this since the | ||
| 315 | * size is being increased without writing anything to that block | ||
| 316 | * and we don't want anyone to read the garbage on the disk. | ||
| 317 | */ | ||
| 318 | STATIC int /* error (positive) */ | ||
| 319 | xfs_zero_last_block( | ||
| 320 | xfs_inode_t *ip, | ||
| 321 | xfs_fsize_t offset, | ||
| 322 | xfs_fsize_t isize) | ||
| 323 | { | ||
| 324 | xfs_fileoff_t last_fsb; | ||
| 325 | xfs_mount_t *mp = ip->i_mount; | ||
| 326 | int nimaps; | ||
| 327 | int zero_offset; | ||
| 328 | int zero_len; | ||
| 329 | int error = 0; | ||
| 330 | xfs_bmbt_irec_t imap; | ||
| 331 | |||
| 332 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL)); | ||
| 333 | |||
| 334 | zero_offset = XFS_B_FSB_OFFSET(mp, isize); | ||
| 335 | if (zero_offset == 0) { | ||
| 336 | /* | ||
| 337 | * There are no extra bytes in the last block on disk to | ||
| 338 | * zero, so return. | ||
| 339 | */ | ||
| 340 | return 0; | ||
| 341 | } | ||
| 342 | |||
| 343 | last_fsb = XFS_B_TO_FSBT(mp, isize); | ||
| 344 | nimaps = 1; | ||
| 345 | error = xfs_bmapi(NULL, ip, last_fsb, 1, 0, NULL, 0, &imap, | ||
| 346 | &nimaps, NULL, NULL); | ||
| 347 | if (error) { | ||
| 348 | return error; | ||
| 349 | } | ||
| 350 | ASSERT(nimaps > 0); | ||
| 351 | /* | ||
| 352 | * If the block underlying isize is just a hole, then there | ||
| 353 | * is nothing to zero. | ||
| 354 | */ | ||
| 355 | if (imap.br_startblock == HOLESTARTBLOCK) { | ||
| 356 | return 0; | ||
| 357 | } | ||
| 358 | /* | ||
| 359 | * Zero the part of the last block beyond the EOF, and write it | ||
| 360 | * out sync. We need to drop the ilock while we do this so we | ||
| 361 | * don't deadlock when the buffer cache calls back to us. | ||
| 362 | */ | ||
| 363 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 364 | |||
| 365 | zero_len = mp->m_sb.sb_blocksize - zero_offset; | ||
| 366 | if (isize + zero_len > offset) | ||
| 367 | zero_len = offset - isize; | ||
| 368 | error = xfs_iozero(ip, isize, zero_len); | ||
| 369 | |||
| 370 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 371 | ASSERT(error >= 0); | ||
| 372 | return error; | ||
| 373 | } | ||
| 374 | |||
| 375 | /* | ||
| 376 | * Zero any on disk space between the current EOF and the new, | ||
| 377 | * larger EOF. This handles the normal case of zeroing the remainder | ||
| 378 | * of the last block in the file and the unusual case of zeroing blocks | ||
| 379 | * out beyond the size of the file. This second case only happens | ||
| 380 | * with fixed size extents and when the system crashes before the inode | ||
| 381 | * size was updated but after blocks were allocated. If fill is set, | ||
| 382 | * then any holes in the range are filled and zeroed. If not, the holes | ||
| 383 | * are left alone as holes. | ||
| 384 | */ | ||
| 385 | |||
| 386 | int /* error (positive) */ | ||
| 387 | xfs_zero_eof( | ||
| 388 | xfs_inode_t *ip, | ||
| 389 | xfs_off_t offset, /* starting I/O offset */ | ||
| 390 | xfs_fsize_t isize) /* current inode size */ | ||
| 391 | { | ||
| 392 | xfs_mount_t *mp = ip->i_mount; | ||
| 393 | xfs_fileoff_t start_zero_fsb; | ||
| 394 | xfs_fileoff_t end_zero_fsb; | ||
| 395 | xfs_fileoff_t zero_count_fsb; | ||
| 396 | xfs_fileoff_t last_fsb; | ||
| 397 | xfs_fileoff_t zero_off; | ||
| 398 | xfs_fsize_t zero_len; | ||
| 399 | int nimaps; | ||
| 400 | int error = 0; | ||
| 401 | xfs_bmbt_irec_t imap; | ||
| 402 | |||
| 403 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_IOLOCK_EXCL)); | ||
| 404 | ASSERT(offset > isize); | ||
| 405 | |||
| 406 | /* | ||
| 407 | * First handle zeroing the block on which isize resides. | ||
| 408 | * We only zero a part of that block so it is handled specially. | ||
| 409 | */ | ||
| 410 | error = xfs_zero_last_block(ip, offset, isize); | ||
| 411 | if (error) { | ||
| 412 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_IOLOCK_EXCL)); | ||
| 413 | return error; | ||
| 414 | } | ||
| 415 | |||
| 416 | /* | ||
| 417 | * Calculate the range between the new size and the old | ||
| 418 | * where blocks needing to be zeroed may exist. To get the | ||
| 419 | * block where the last byte in the file currently resides, | ||
| 420 | * we need to subtract one from the size and truncate back | ||
| 421 | * to a block boundary. We subtract 1 in case the size is | ||
| 422 | * exactly on a block boundary. | ||
| 423 | */ | ||
| 424 | last_fsb = isize ? XFS_B_TO_FSBT(mp, isize - 1) : (xfs_fileoff_t)-1; | ||
| 425 | start_zero_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)isize); | ||
| 426 | end_zero_fsb = XFS_B_TO_FSBT(mp, offset - 1); | ||
| 427 | ASSERT((xfs_sfiloff_t)last_fsb < (xfs_sfiloff_t)start_zero_fsb); | ||
| 428 | if (last_fsb == end_zero_fsb) { | ||
| 429 | /* | ||
| 430 | * The size was only incremented on its last block. | ||
| 431 | * We took care of that above, so just return. | ||
| 432 | */ | ||
| 433 | return 0; | ||
| 434 | } | ||
| 435 | |||
| 436 | ASSERT(start_zero_fsb <= end_zero_fsb); | ||
| 437 | while (start_zero_fsb <= end_zero_fsb) { | ||
| 438 | nimaps = 1; | ||
| 439 | zero_count_fsb = end_zero_fsb - start_zero_fsb + 1; | ||
| 440 | error = xfs_bmapi(NULL, ip, start_zero_fsb, zero_count_fsb, | ||
| 441 | 0, NULL, 0, &imap, &nimaps, NULL, NULL); | ||
| 442 | if (error) { | ||
| 443 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_IOLOCK_EXCL)); | ||
| 444 | return error; | ||
| 445 | } | ||
| 446 | ASSERT(nimaps > 0); | ||
| 447 | |||
| 448 | if (imap.br_state == XFS_EXT_UNWRITTEN || | ||
| 449 | imap.br_startblock == HOLESTARTBLOCK) { | ||
| 450 | /* | ||
| 451 | * This loop handles initializing pages that were | ||
| 452 | * partially initialized by the code below this | ||
| 453 | * loop. It basically zeroes the part of the page | ||
| 454 | * that sits on a hole and sets the page as P_HOLE | ||
| 455 | * and calls remapf if it is a mapped file. | ||
| 456 | */ | ||
| 457 | start_zero_fsb = imap.br_startoff + imap.br_blockcount; | ||
| 458 | ASSERT(start_zero_fsb <= (end_zero_fsb + 1)); | ||
| 459 | continue; | ||
| 460 | } | ||
| 461 | |||
| 462 | /* | ||
| 463 | * There are blocks we need to zero. | ||
| 464 | * Drop the inode lock while we're doing the I/O. | ||
| 465 | * We'll still have the iolock to protect us. | ||
| 466 | */ | ||
| 467 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 468 | |||
| 469 | zero_off = XFS_FSB_TO_B(mp, start_zero_fsb); | ||
| 470 | zero_len = XFS_FSB_TO_B(mp, imap.br_blockcount); | ||
| 471 | |||
| 472 | if ((zero_off + zero_len) > offset) | ||
| 473 | zero_len = offset - zero_off; | ||
| 474 | |||
| 475 | error = xfs_iozero(ip, zero_off, zero_len); | ||
| 476 | if (error) { | ||
| 477 | goto out_lock; | ||
| 478 | } | ||
| 479 | |||
| 480 | start_zero_fsb = imap.br_startoff + imap.br_blockcount; | ||
| 481 | ASSERT(start_zero_fsb <= (end_zero_fsb + 1)); | ||
| 482 | |||
| 483 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 484 | } | ||
| 485 | |||
| 486 | return 0; | ||
| 487 | |||
| 488 | out_lock: | ||
| 489 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 490 | ASSERT(error >= 0); | ||
| 491 | return error; | ||
| 492 | } | ||
| 493 | |||
| 494 | ssize_t /* bytes written, or (-) error */ | ||
| 495 | xfs_write( | ||
| 496 | struct xfs_inode *xip, | ||
| 497 | struct kiocb *iocb, | ||
| 498 | const struct iovec *iovp, | ||
| 499 | unsigned int nsegs, | ||
| 500 | loff_t *offset, | ||
| 501 | int ioflags) | ||
| 502 | { | ||
| 503 | struct file *file = iocb->ki_filp; | ||
| 504 | struct address_space *mapping = file->f_mapping; | ||
| 505 | struct inode *inode = mapping->host; | ||
| 506 | unsigned long segs = nsegs; | ||
| 507 | xfs_mount_t *mp; | ||
| 508 | ssize_t ret = 0, error = 0; | ||
| 509 | xfs_fsize_t isize, new_size; | ||
| 510 | int iolock; | ||
| 511 | int eventsent = 0; | ||
| 512 | size_t ocount = 0, count; | ||
| 513 | loff_t pos; | ||
| 514 | int need_i_mutex; | ||
| 515 | |||
| 516 | XFS_STATS_INC(xs_write_calls); | ||
| 517 | |||
| 518 | error = generic_segment_checks(iovp, &segs, &ocount, VERIFY_READ); | ||
| 519 | if (error) | ||
| 520 | return error; | ||
| 521 | |||
| 522 | count = ocount; | ||
| 523 | pos = *offset; | ||
| 524 | |||
| 525 | if (count == 0) | ||
| 526 | return 0; | ||
| 527 | |||
| 528 | mp = xip->i_mount; | ||
| 529 | |||
| 530 | xfs_wait_for_freeze(mp, SB_FREEZE_WRITE); | ||
| 531 | |||
| 532 | if (XFS_FORCED_SHUTDOWN(mp)) | ||
| 533 | return -EIO; | ||
| 534 | |||
| 535 | relock: | ||
| 536 | if (ioflags & IO_ISDIRECT) { | ||
| 537 | iolock = XFS_IOLOCK_SHARED; | ||
| 538 | need_i_mutex = 0; | ||
| 539 | } else { | ||
| 540 | iolock = XFS_IOLOCK_EXCL; | ||
| 541 | need_i_mutex = 1; | ||
| 542 | mutex_lock(&inode->i_mutex); | ||
| 543 | } | ||
| 544 | |||
| 545 | xfs_ilock(xip, XFS_ILOCK_EXCL|iolock); | ||
| 546 | |||
| 547 | start: | ||
| 548 | error = -generic_write_checks(file, &pos, &count, | ||
| 549 | S_ISBLK(inode->i_mode)); | ||
| 550 | if (error) { | ||
| 551 | xfs_iunlock(xip, XFS_ILOCK_EXCL|iolock); | ||
| 552 | goto out_unlock_mutex; | ||
| 553 | } | ||
| 554 | |||
| 555 | if ((DM_EVENT_ENABLED(xip, DM_EVENT_WRITE) && | ||
| 556 | !(ioflags & IO_INVIS) && !eventsent)) { | ||
| 557 | int dmflags = FILP_DELAY_FLAG(file); | ||
| 558 | |||
| 559 | if (need_i_mutex) | ||
| 560 | dmflags |= DM_FLAGS_IMUX; | ||
| 561 | |||
| 562 | xfs_iunlock(xip, XFS_ILOCK_EXCL); | ||
| 563 | error = XFS_SEND_DATA(xip->i_mount, DM_EVENT_WRITE, xip, | ||
| 564 | pos, count, dmflags, &iolock); | ||
| 565 | if (error) { | ||
| 566 | goto out_unlock_internal; | ||
| 567 | } | ||
| 568 | xfs_ilock(xip, XFS_ILOCK_EXCL); | ||
| 569 | eventsent = 1; | ||
| 570 | |||
| 571 | /* | ||
| 572 | * The iolock was dropped and reacquired in XFS_SEND_DATA | ||
| 573 | * so we have to recheck the size when appending. | ||
| 574 | * We will only "goto start;" once, since having sent the | ||
| 575 | * event prevents another call to XFS_SEND_DATA, which is | ||
| 576 | * what allows the size to change in the first place. | ||
| 577 | */ | ||
| 578 | if ((file->f_flags & O_APPEND) && pos != xip->i_size) | ||
| 579 | goto start; | ||
| 580 | } | ||
| 581 | |||
| 582 | if (ioflags & IO_ISDIRECT) { | ||
| 583 | xfs_buftarg_t *target = | ||
| 584 | XFS_IS_REALTIME_INODE(xip) ? | ||
| 585 | mp->m_rtdev_targp : mp->m_ddev_targp; | ||
| 586 | |||
| 587 | if ((pos & target->bt_smask) || (count & target->bt_smask)) { | ||
| 588 | xfs_iunlock(xip, XFS_ILOCK_EXCL|iolock); | ||
| 589 | return XFS_ERROR(-EINVAL); | ||
| 590 | } | ||
| 591 | |||
| 592 | if (!need_i_mutex && (mapping->nrpages || pos > xip->i_size)) { | ||
| 593 | xfs_iunlock(xip, XFS_ILOCK_EXCL|iolock); | ||
| 594 | iolock = XFS_IOLOCK_EXCL; | ||
| 595 | need_i_mutex = 1; | ||
| 596 | mutex_lock(&inode->i_mutex); | ||
| 597 | xfs_ilock(xip, XFS_ILOCK_EXCL|iolock); | ||
| 598 | goto start; | ||
| 599 | } | ||
| 600 | } | ||
| 601 | |||
| 602 | new_size = pos + count; | ||
| 603 | if (new_size > xip->i_size) | ||
| 604 | xip->i_new_size = new_size; | ||
| 605 | |||
| 606 | if (likely(!(ioflags & IO_INVIS))) | ||
| 607 | file_update_time(file); | ||
| 608 | |||
| 609 | /* | ||
| 610 | * If the offset is beyond the size of the file, we have a couple | ||
| 611 | * of things to do. First, if there is already space allocated | ||
| 612 | * we need to either create holes or zero the disk or ... | ||
| 613 | * | ||
| 614 | * If there is a page where the previous size lands, we need | ||
| 615 | * to zero it out up to the new size. | ||
| 616 | */ | ||
| 617 | |||
| 618 | if (pos > xip->i_size) { | ||
| 619 | error = xfs_zero_eof(xip, pos, xip->i_size); | ||
| 620 | if (error) { | ||
| 621 | xfs_iunlock(xip, XFS_ILOCK_EXCL); | ||
| 622 | goto out_unlock_internal; | ||
| 623 | } | ||
| 624 | } | ||
| 625 | xfs_iunlock(xip, XFS_ILOCK_EXCL); | ||
| 626 | |||
| 627 | /* | ||
| 628 | * If we're writing the file then make sure to clear the | ||
| 629 | * setuid and setgid bits if the process is not being run | ||
| 630 | * by root. This keeps people from modifying setuid and | ||
| 631 | * setgid binaries. | ||
| 632 | */ | ||
| 633 | |||
| 634 | if (((xip->i_d.di_mode & S_ISUID) || | ||
| 635 | ((xip->i_d.di_mode & (S_ISGID | S_IXGRP)) == | ||
| 636 | (S_ISGID | S_IXGRP))) && | ||
| 637 | !capable(CAP_FSETID)) { | ||
| 638 | error = xfs_write_clear_setuid(xip); | ||
| 639 | if (likely(!error)) | ||
| 640 | error = -file_remove_suid(file); | ||
| 641 | if (unlikely(error)) { | ||
| 642 | goto out_unlock_internal; | ||
| 643 | } | ||
| 644 | } | ||
| 645 | |||
| 646 | /* We can write back this queue in page reclaim */ | ||
| 647 | current->backing_dev_info = mapping->backing_dev_info; | ||
| 648 | |||
| 649 | if ((ioflags & IO_ISDIRECT)) { | ||
| 650 | if (mapping->nrpages) { | ||
| 651 | WARN_ON(need_i_mutex == 0); | ||
| 652 | error = xfs_flushinval_pages(xip, | ||
| 653 | (pos & PAGE_CACHE_MASK), | ||
| 654 | -1, FI_REMAPF_LOCKED); | ||
| 655 | if (error) | ||
| 656 | goto out_unlock_internal; | ||
| 657 | } | ||
| 658 | |||
| 659 | if (need_i_mutex) { | ||
| 660 | /* demote the lock now the cached pages are gone */ | ||
| 661 | xfs_ilock_demote(xip, XFS_IOLOCK_EXCL); | ||
| 662 | mutex_unlock(&inode->i_mutex); | ||
| 663 | |||
| 664 | iolock = XFS_IOLOCK_SHARED; | ||
| 665 | need_i_mutex = 0; | ||
| 666 | } | ||
| 667 | |||
| 668 | trace_xfs_file_direct_write(xip, count, *offset, ioflags); | ||
| 669 | ret = generic_file_direct_write(iocb, iovp, | ||
| 670 | &segs, pos, offset, count, ocount); | ||
| 671 | |||
| 672 | /* | ||
| 673 | * direct-io write to a hole: fall through to buffered I/O | ||
| 674 | * for completing the rest of the request. | ||
| 675 | */ | ||
| 676 | if (ret >= 0 && ret != count) { | ||
| 677 | XFS_STATS_ADD(xs_write_bytes, ret); | ||
| 678 | |||
| 679 | pos += ret; | ||
| 680 | count -= ret; | ||
| 681 | |||
| 682 | ioflags &= ~IO_ISDIRECT; | ||
| 683 | xfs_iunlock(xip, iolock); | ||
| 684 | goto relock; | ||
| 685 | } | ||
| 686 | } else { | ||
| 687 | int enospc = 0; | ||
| 688 | ssize_t ret2 = 0; | ||
| 689 | |||
| 690 | write_retry: | ||
| 691 | trace_xfs_file_buffered_write(xip, count, *offset, ioflags); | ||
| 692 | ret2 = generic_file_buffered_write(iocb, iovp, segs, | ||
| 693 | pos, offset, count, ret); | ||
| 694 | /* | ||
| 695 | * if we just got an ENOSPC, flush the inode now we | ||
| 696 | * aren't holding any page locks and retry *once* | ||
| 697 | */ | ||
| 698 | if (ret2 == -ENOSPC && !enospc) { | ||
| 699 | error = xfs_flush_pages(xip, 0, -1, 0, FI_NONE); | ||
| 700 | if (error) | ||
| 701 | goto out_unlock_internal; | ||
| 702 | enospc = 1; | ||
| 703 | goto write_retry; | ||
| 704 | } | ||
| 705 | ret = ret2; | ||
| 706 | } | ||
| 707 | |||
| 708 | current->backing_dev_info = NULL; | ||
| 709 | |||
| 710 | isize = i_size_read(inode); | ||
| 711 | if (unlikely(ret < 0 && ret != -EFAULT && *offset > isize)) | ||
| 712 | *offset = isize; | ||
| 713 | |||
| 714 | if (*offset > xip->i_size) { | ||
| 715 | xfs_ilock(xip, XFS_ILOCK_EXCL); | ||
| 716 | if (*offset > xip->i_size) | ||
| 717 | xip->i_size = *offset; | ||
| 718 | xfs_iunlock(xip, XFS_ILOCK_EXCL); | ||
| 719 | } | ||
| 720 | |||
| 721 | if (ret == -ENOSPC && | ||
| 722 | DM_EVENT_ENABLED(xip, DM_EVENT_NOSPACE) && !(ioflags & IO_INVIS)) { | ||
| 723 | xfs_iunlock(xip, iolock); | ||
| 724 | if (need_i_mutex) | ||
| 725 | mutex_unlock(&inode->i_mutex); | ||
| 726 | error = XFS_SEND_NAMESP(xip->i_mount, DM_EVENT_NOSPACE, xip, | ||
| 727 | DM_RIGHT_NULL, xip, DM_RIGHT_NULL, NULL, NULL, | ||
| 728 | 0, 0, 0); /* Delay flag intentionally unused */ | ||
| 729 | if (need_i_mutex) | ||
| 730 | mutex_lock(&inode->i_mutex); | ||
| 731 | xfs_ilock(xip, iolock); | ||
| 732 | if (error) | ||
| 733 | goto out_unlock_internal; | ||
| 734 | goto start; | ||
| 735 | } | ||
| 736 | |||
| 737 | error = -ret; | ||
| 738 | if (ret <= 0) | ||
| 739 | goto out_unlock_internal; | ||
| 740 | |||
| 741 | XFS_STATS_ADD(xs_write_bytes, ret); | ||
| 742 | |||
| 743 | /* Handle various SYNC-type writes */ | ||
| 744 | if ((file->f_flags & O_DSYNC) || IS_SYNC(inode)) { | ||
| 745 | loff_t end = pos + ret - 1; | ||
| 746 | int error2; | ||
| 747 | |||
| 748 | xfs_iunlock(xip, iolock); | ||
| 749 | if (need_i_mutex) | ||
| 750 | mutex_unlock(&inode->i_mutex); | ||
| 751 | |||
| 752 | error2 = filemap_write_and_wait_range(mapping, pos, end); | ||
| 753 | if (!error) | ||
| 754 | error = error2; | ||
| 755 | if (need_i_mutex) | ||
| 756 | mutex_lock(&inode->i_mutex); | ||
| 757 | xfs_ilock(xip, iolock); | ||
| 758 | |||
| 759 | error2 = xfs_fsync(xip); | ||
| 760 | if (!error) | ||
| 761 | error = error2; | ||
| 762 | } | ||
| 763 | |||
| 764 | out_unlock_internal: | ||
| 765 | if (xip->i_new_size) { | ||
| 766 | xfs_ilock(xip, XFS_ILOCK_EXCL); | ||
| 767 | xip->i_new_size = 0; | ||
| 768 | /* | ||
| 769 | * If this was a direct or synchronous I/O that failed (such | ||
| 770 | * as ENOSPC) then part of the I/O may have been written to | ||
| 771 | * disk before the error occured. In this case the on-disk | ||
| 772 | * file size may have been adjusted beyond the in-memory file | ||
| 773 | * size and now needs to be truncated back. | ||
| 774 | */ | ||
| 775 | if (xip->i_d.di_size > xip->i_size) | ||
| 776 | xip->i_d.di_size = xip->i_size; | ||
| 777 | xfs_iunlock(xip, XFS_ILOCK_EXCL); | ||
| 778 | } | ||
| 779 | xfs_iunlock(xip, iolock); | ||
| 780 | out_unlock_mutex: | ||
| 781 | if (need_i_mutex) | ||
| 782 | mutex_unlock(&inode->i_mutex); | ||
| 783 | return -error; | ||
| 784 | } | ||
| 785 | |||
| 786 | /* | ||
| 787 | * All xfs metadata buffers except log state machine buffers | ||
| 788 | * get this attached as their b_bdstrat callback function. | ||
| 789 | * This is so that we can catch a buffer | ||
| 790 | * after prematurely unpinning it to forcibly shutdown the filesystem. | ||
| 791 | */ | ||
| 792 | int | ||
| 793 | xfs_bdstrat_cb(struct xfs_buf *bp) | ||
| 794 | { | ||
| 795 | if (XFS_FORCED_SHUTDOWN(bp->b_mount)) { | ||
| 796 | trace_xfs_bdstrat_shut(bp, _RET_IP_); | ||
| 797 | /* | ||
| 798 | * Metadata write that didn't get logged but | ||
| 799 | * written delayed anyway. These aren't associated | ||
| 800 | * with a transaction, and can be ignored. | ||
| 801 | */ | ||
| 802 | if (XFS_BUF_IODONE_FUNC(bp) == NULL && | ||
| 803 | (XFS_BUF_ISREAD(bp)) == 0) | ||
| 804 | return (xfs_bioerror_relse(bp)); | ||
| 805 | else | ||
| 806 | return (xfs_bioerror(bp)); | ||
| 807 | } | ||
| 808 | |||
| 809 | xfs_buf_iorequest(bp); | ||
| 810 | return 0; | ||
| 811 | } | ||
| 812 | |||
| 813 | /* | ||
| 814 | * Wrapper around bdstrat so that we can stop data from going to disk in case | ||
| 815 | * we are shutting down the filesystem. Typically user data goes thru this | ||
| 816 | * path; one of the exceptions is the superblock. | ||
| 817 | */ | ||
| 818 | void | ||
| 819 | xfsbdstrat( | ||
| 820 | struct xfs_mount *mp, | ||
| 821 | struct xfs_buf *bp) | ||
| 822 | { | ||
| 823 | ASSERT(mp); | ||
| 824 | if (!XFS_FORCED_SHUTDOWN(mp)) { | ||
| 825 | xfs_buf_iorequest(bp); | ||
| 826 | return; | ||
| 827 | } | ||
| 828 | |||
| 829 | trace_xfs_bdstrat_shut(bp, _RET_IP_); | ||
| 830 | xfs_bioerror_relse(bp); | ||
| 831 | } | ||
| 832 | |||
| 833 | /* | ||
| 834 | * If the underlying (data/log/rt) device is readonly, there are some | ||
| 835 | * operations that cannot proceed. | ||
| 836 | */ | ||
| 837 | int | ||
| 838 | xfs_dev_is_read_only( | ||
| 839 | xfs_mount_t *mp, | ||
| 840 | char *message) | ||
| 841 | { | ||
| 842 | if (xfs_readonly_buftarg(mp->m_ddev_targp) || | ||
| 843 | xfs_readonly_buftarg(mp->m_logdev_targp) || | ||
| 844 | (mp->m_rtdev_targp && xfs_readonly_buftarg(mp->m_rtdev_targp))) { | ||
| 845 | cmn_err(CE_NOTE, | ||
| 846 | "XFS: %s required on read-only device.", message); | ||
| 847 | cmn_err(CE_NOTE, | ||
| 848 | "XFS: write access unavailable, cannot proceed."); | ||
| 849 | return EROFS; | ||
| 850 | } | ||
| 851 | return 0; | ||
| 852 | } | ||
diff --git a/fs/xfs/linux-2.6/xfs_lrw.h b/fs/xfs/linux-2.6/xfs_lrw.h deleted file mode 100644 index d1f7789c7ffb..000000000000 --- a/fs/xfs/linux-2.6/xfs_lrw.h +++ /dev/null  | |||
| @@ -1,32 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc. | ||
| 3 | * All Rights Reserved. | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or | ||
| 6 | * modify it under the terms of the GNU General Public License as | ||
| 7 | * published by the Free Software Foundation. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it would be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program; if not, write the Free Software Foundation, | ||
| 16 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 17 | */ | ||
| 18 | #ifndef __XFS_LRW_H__ | ||
| 19 | #define __XFS_LRW_H__ | ||
| 20 | |||
| 21 | struct xfs_mount; | ||
| 22 | struct xfs_inode; | ||
| 23 | struct xfs_buf; | ||
| 24 | |||
| 25 | /* errors from xfsbdstrat() must be extracted from the buffer */ | ||
| 26 | extern void xfsbdstrat(struct xfs_mount *, struct xfs_buf *); | ||
| 27 | extern int xfs_bdstrat_cb(struct xfs_buf *); | ||
| 28 | extern int xfs_dev_is_read_only(struct xfs_mount *, char *); | ||
| 29 | |||
| 30 | extern int xfs_zero_eof(struct xfs_inode *, xfs_off_t, xfs_fsize_t); | ||
| 31 | |||
| 32 | #endif /* __XFS_LRW_H__ */ | ||
diff --git a/fs/xfs/linux-2.6/xfs_quotaops.c b/fs/xfs/linux-2.6/xfs_quotaops.c index 3d4a0c84d634..1947514ce1ad 100644 --- a/fs/xfs/linux-2.6/xfs_quotaops.c +++ b/fs/xfs/linux-2.6/xfs_quotaops.c  | |||
| @@ -44,20 +44,6 @@ xfs_quota_type(int type) | |||
| 44 | } | 44 | } | 
| 45 | 45 | ||
| 46 | STATIC int | 46 | STATIC int | 
| 47 | xfs_fs_quota_sync( | ||
| 48 | struct super_block *sb, | ||
| 49 | int type) | ||
| 50 | { | ||
| 51 | struct xfs_mount *mp = XFS_M(sb); | ||
| 52 | |||
| 53 | if (sb->s_flags & MS_RDONLY) | ||
| 54 | return -EROFS; | ||
| 55 | if (!XFS_IS_QUOTA_RUNNING(mp)) | ||
| 56 | return -ENOSYS; | ||
| 57 | return -xfs_sync_data(mp, 0); | ||
| 58 | } | ||
| 59 | |||
| 60 | STATIC int | ||
| 61 | xfs_fs_get_xstate( | 47 | xfs_fs_get_xstate( | 
| 62 | struct super_block *sb, | 48 | struct super_block *sb, | 
| 63 | struct fs_quota_stat *fqs) | 49 | struct fs_quota_stat *fqs) | 
| @@ -82,8 +68,6 @@ xfs_fs_set_xstate( | |||
| 82 | return -EROFS; | 68 | return -EROFS; | 
| 83 | if (op != Q_XQUOTARM && !XFS_IS_QUOTA_RUNNING(mp)) | 69 | if (op != Q_XQUOTARM && !XFS_IS_QUOTA_RUNNING(mp)) | 
| 84 | return -ENOSYS; | 70 | return -ENOSYS; | 
| 85 | if (!capable(CAP_SYS_ADMIN)) | ||
| 86 | return -EPERM; | ||
| 87 | 71 | ||
| 88 | if (uflags & XFS_QUOTA_UDQ_ACCT) | 72 | if (uflags & XFS_QUOTA_UDQ_ACCT) | 
| 89 | flags |= XFS_UQUOTA_ACCT; | 73 | flags |= XFS_UQUOTA_ACCT; | 
| @@ -144,14 +128,11 @@ xfs_fs_set_xquota( | |||
| 144 | return -ENOSYS; | 128 | return -ENOSYS; | 
| 145 | if (!XFS_IS_QUOTA_ON(mp)) | 129 | if (!XFS_IS_QUOTA_ON(mp)) | 
| 146 | return -ESRCH; | 130 | return -ESRCH; | 
| 147 | if (!capable(CAP_SYS_ADMIN)) | ||
| 148 | return -EPERM; | ||
| 149 | 131 | ||
| 150 | return -xfs_qm_scall_setqlim(mp, id, xfs_quota_type(type), fdq); | 132 | return -xfs_qm_scall_setqlim(mp, id, xfs_quota_type(type), fdq); | 
| 151 | } | 133 | } | 
| 152 | 134 | ||
| 153 | const struct quotactl_ops xfs_quotactl_operations = { | 135 | const struct quotactl_ops xfs_quotactl_operations = { | 
| 154 | .quota_sync = xfs_fs_quota_sync, | ||
| 155 | .get_xstate = xfs_fs_get_xstate, | 136 | .get_xstate = xfs_fs_get_xstate, | 
| 156 | .set_xstate = xfs_fs_set_xstate, | 137 | .set_xstate = xfs_fs_set_xstate, | 
| 157 | .get_xquota = xfs_fs_get_xquota, | 138 | .get_xquota = xfs_fs_get_xquota, | 
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c index 77414db10dc2..71345a370d9f 100644 --- a/fs/xfs/linux-2.6/xfs_super.c +++ b/fs/xfs/linux-2.6/xfs_super.c  | |||
| @@ -877,12 +877,11 @@ xfsaild( | |||
| 877 | { | 877 | { | 
| 878 | struct xfs_ail *ailp = data; | 878 | struct xfs_ail *ailp = data; | 
| 879 | xfs_lsn_t last_pushed_lsn = 0; | 879 | xfs_lsn_t last_pushed_lsn = 0; | 
| 880 | long tout = 0; | 880 | long tout = 0; /* milliseconds */ | 
| 881 | 881 | ||
| 882 | while (!kthread_should_stop()) { | 882 | while (!kthread_should_stop()) { | 
| 883 | if (tout) | 883 | schedule_timeout_interruptible(tout ? | 
| 884 | schedule_timeout_interruptible(msecs_to_jiffies(tout)); | 884 | msecs_to_jiffies(tout) : MAX_SCHEDULE_TIMEOUT); | 
| 885 | tout = 1000; | ||
| 886 | 885 | ||
| 887 | /* swsusp */ | 886 | /* swsusp */ | 
| 888 | try_to_freeze(); | 887 | try_to_freeze(); | 
| @@ -1022,59 +1021,108 @@ xfs_fs_dirty_inode( | |||
| 1022 | XFS_I(inode)->i_update_core = 1; | 1021 | XFS_I(inode)->i_update_core = 1; | 
| 1023 | } | 1022 | } | 
| 1024 | 1023 | ||
| 1025 | /* | 1024 | STATIC int | 
| 1026 | * Attempt to flush the inode, this will actually fail | 1025 | xfs_log_inode( | 
| 1027 | * if the inode is pinned, but we dirty the inode again | 1026 | struct xfs_inode *ip) | 
| 1028 | * at the point when it is unpinned after a log write, | 1027 | { | 
| 1029 | * since this is when the inode itself becomes flushable. | 1028 | struct xfs_mount *mp = ip->i_mount; | 
| 1030 | */ | 1029 | struct xfs_trans *tp; | 
| 1030 | int error; | ||
| 1031 | |||
| 1032 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | ||
| 1033 | tp = xfs_trans_alloc(mp, XFS_TRANS_FSYNC_TS); | ||
| 1034 | error = xfs_trans_reserve(tp, 0, XFS_FSYNC_TS_LOG_RES(mp), 0, 0, 0); | ||
| 1035 | |||
| 1036 | if (error) { | ||
| 1037 | xfs_trans_cancel(tp, 0); | ||
| 1038 | /* we need to return with the lock hold shared */ | ||
| 1039 | xfs_ilock(ip, XFS_ILOCK_SHARED); | ||
| 1040 | return error; | ||
| 1041 | } | ||
| 1042 | |||
| 1043 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 1044 | |||
| 1045 | /* | ||
| 1046 | * Note - it's possible that we might have pushed ourselves out of the | ||
| 1047 | * way during trans_reserve which would flush the inode. But there's | ||
| 1048 | * no guarantee that the inode buffer has actually gone out yet (it's | ||
| 1049 | * delwri). Plus the buffer could be pinned anyway if it's part of | ||
| 1050 | * an inode in another recent transaction. So we play it safe and | ||
| 1051 | * fire off the transaction anyway. | ||
| 1052 | */ | ||
| 1053 | xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL); | ||
| 1054 | xfs_trans_ihold(tp, ip); | ||
| 1055 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); | ||
| 1056 | xfs_trans_set_sync(tp); | ||
| 1057 | error = xfs_trans_commit(tp, 0); | ||
| 1058 | xfs_ilock_demote(ip, XFS_ILOCK_EXCL); | ||
| 1059 | |||
| 1060 | return error; | ||
| 1061 | } | ||
| 1062 | |||
| 1031 | STATIC int | 1063 | STATIC int | 
| 1032 | xfs_fs_write_inode( | 1064 | xfs_fs_write_inode( | 
| 1033 | struct inode *inode, | 1065 | struct inode *inode, | 
| 1034 | int sync) | 1066 | struct writeback_control *wbc) | 
| 1035 | { | 1067 | { | 
| 1036 | struct xfs_inode *ip = XFS_I(inode); | 1068 | struct xfs_inode *ip = XFS_I(inode); | 
| 1037 | struct xfs_mount *mp = ip->i_mount; | 1069 | struct xfs_mount *mp = ip->i_mount; | 
| 1038 | int error = 0; | 1070 | int error = EAGAIN; | 
| 1039 | 1071 | ||
| 1040 | xfs_itrace_entry(ip); | 1072 | xfs_itrace_entry(ip); | 
| 1041 | 1073 | ||
| 1042 | if (XFS_FORCED_SHUTDOWN(mp)) | 1074 | if (XFS_FORCED_SHUTDOWN(mp)) | 
| 1043 | return XFS_ERROR(EIO); | 1075 | return XFS_ERROR(EIO); | 
| 1044 | 1076 | ||
| 1045 | if (sync) { | 1077 | if (wbc->sync_mode == WB_SYNC_ALL) { | 
| 1046 | error = xfs_wait_on_pages(ip, 0, -1); | 1078 | /* | 
| 1047 | if (error) | 1079 | * Make sure the inode has hit stable storage. By using the | 
| 1080 | * log and the fsync transactions we reduce the IOs we have | ||
| 1081 | * to do here from two (log and inode) to just the log. | ||
| 1082 | * | ||
| 1083 | * Note: We still need to do a delwri write of the inode after | ||
| 1084 | * this to flush it to the backing buffer so that bulkstat | ||
| 1085 | * works properly if this is the first time the inode has been | ||
| 1086 | * written. Because we hold the ilock atomically over the | ||
| 1087 | * transaction commit and the inode flush we are guaranteed | ||
| 1088 | * that the inode is not pinned when it returns. If the flush | ||
| 1089 | * lock is already held, then the inode has already been | ||
| 1090 | * flushed once and we don't need to flush it again. Hence | ||
| 1091 | * the code will only flush the inode if it isn't already | ||
| 1092 | * being flushed. | ||
| 1093 | */ | ||
| 1094 | xfs_ilock(ip, XFS_ILOCK_SHARED); | ||
| 1095 | if (ip->i_update_core) { | ||
| 1096 | error = xfs_log_inode(ip); | ||
| 1097 | if (error) | ||
| 1098 | goto out_unlock; | ||
| 1099 | } | ||
| 1100 | } else { | ||
| 1101 | /* | ||
| 1102 | * We make this non-blocking if the inode is contended, return | ||
| 1103 | * EAGAIN to indicate to the caller that they did not succeed. | ||
| 1104 | * This prevents the flush path from blocking on inodes inside | ||
| 1105 | * another operation right now, they get caught later by xfs_sync. | ||
| 1106 | */ | ||
| 1107 | if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED)) | ||
| 1048 | goto out; | 1108 | goto out; | 
| 1049 | } | 1109 | } | 
| 1050 | 1110 | ||
| 1051 | /* | 1111 | if (xfs_ipincount(ip) || !xfs_iflock_nowait(ip)) | 
| 1052 | * Bypass inodes which have already been cleaned by | 1112 | goto out_unlock; | 
| 1053 | * the inode flush clustering code inside xfs_iflush | ||
| 1054 | */ | ||
| 1055 | if (xfs_inode_clean(ip)) | ||
| 1056 | goto out; | ||
| 1057 | 1113 | ||
| 1058 | /* | 1114 | /* | 
| 1059 | * We make this non-blocking if the inode is contended, return | 1115 | * Now we have the flush lock and the inode is not pinned, we can check | 
| 1060 | * EAGAIN to indicate to the caller that they did not succeed. | 1116 | * if the inode is really clean as we know that there are no pending | 
| 1061 | * This prevents the flush path from blocking on inodes inside | 1117 | * transaction completions, it is not waiting on the delayed write | 
| 1062 | * another operation right now, they get caught later by xfs_sync. | 1118 | * queue and there is no IO in progress. | 
| 1063 | */ | 1119 | */ | 
| 1064 | if (sync) { | 1120 | if (xfs_inode_clean(ip)) { | 
| 1065 | xfs_ilock(ip, XFS_ILOCK_SHARED); | 1121 | xfs_ifunlock(ip); | 
| 1066 | xfs_iflock(ip); | 1122 | error = 0; | 
| 1067 | 1123 | goto out_unlock; | |
| 1068 | error = xfs_iflush(ip, XFS_IFLUSH_SYNC); | ||
| 1069 | } else { | ||
| 1070 | error = EAGAIN; | ||
| 1071 | if (!xfs_ilock_nowait(ip, XFS_ILOCK_SHARED)) | ||
| 1072 | goto out; | ||
| 1073 | if (xfs_ipincount(ip) || !xfs_iflock_nowait(ip)) | ||
| 1074 | goto out_unlock; | ||
| 1075 | |||
| 1076 | error = xfs_iflush(ip, XFS_IFLUSH_ASYNC_NOBLOCK); | ||
| 1077 | } | 1124 | } | 
| 1125 | error = xfs_iflush(ip, 0); | ||
| 1078 | 1126 | ||
| 1079 | out_unlock: | 1127 | out_unlock: | 
| 1080 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | 1128 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | 
| @@ -1257,6 +1305,29 @@ xfs_fs_statfs( | |||
| 1257 | return 0; | 1305 | return 0; | 
| 1258 | } | 1306 | } | 
| 1259 | 1307 | ||
| 1308 | STATIC void | ||
| 1309 | xfs_save_resvblks(struct xfs_mount *mp) | ||
| 1310 | { | ||
| 1311 | __uint64_t resblks = 0; | ||
| 1312 | |||
| 1313 | mp->m_resblks_save = mp->m_resblks; | ||
| 1314 | xfs_reserve_blocks(mp, &resblks, NULL); | ||
| 1315 | } | ||
| 1316 | |||
| 1317 | STATIC void | ||
| 1318 | xfs_restore_resvblks(struct xfs_mount *mp) | ||
| 1319 | { | ||
| 1320 | __uint64_t resblks; | ||
| 1321 | |||
| 1322 | if (mp->m_resblks_save) { | ||
| 1323 | resblks = mp->m_resblks_save; | ||
| 1324 | mp->m_resblks_save = 0; | ||
| 1325 | } else | ||
| 1326 | resblks = xfs_default_resblks(mp); | ||
| 1327 | |||
| 1328 | xfs_reserve_blocks(mp, &resblks, NULL); | ||
| 1329 | } | ||
| 1330 | |||
| 1260 | STATIC int | 1331 | STATIC int | 
| 1261 | xfs_fs_remount( | 1332 | xfs_fs_remount( | 
| 1262 | struct super_block *sb, | 1333 | struct super_block *sb, | 
| @@ -1336,11 +1407,27 @@ xfs_fs_remount( | |||
| 1336 | } | 1407 | } | 
| 1337 | mp->m_update_flags = 0; | 1408 | mp->m_update_flags = 0; | 
| 1338 | } | 1409 | } | 
| 1410 | |||
| 1411 | /* | ||
| 1412 | * Fill out the reserve pool if it is empty. Use the stashed | ||
| 1413 | * value if it is non-zero, otherwise go with the default. | ||
| 1414 | */ | ||
| 1415 | xfs_restore_resvblks(mp); | ||
| 1339 | } | 1416 | } | 
| 1340 | 1417 | ||
| 1341 | /* rw -> ro */ | 1418 | /* rw -> ro */ | 
| 1342 | if (!(mp->m_flags & XFS_MOUNT_RDONLY) && (*flags & MS_RDONLY)) { | 1419 | if (!(mp->m_flags & XFS_MOUNT_RDONLY) && (*flags & MS_RDONLY)) { | 
| 1420 | /* | ||
| 1421 | * After we have synced the data but before we sync the | ||
| 1422 | * metadata, we need to free up the reserve block pool so that | ||
| 1423 | * the used block count in the superblock on disk is correct at | ||
| 1424 | * the end of the remount. Stash the current reserve pool size | ||
| 1425 | * so that if we get remounted rw, we can return it to the same | ||
| 1426 | * size. | ||
| 1427 | */ | ||
| 1428 | |||
| 1343 | xfs_quiesce_data(mp); | 1429 | xfs_quiesce_data(mp); | 
| 1430 | xfs_save_resvblks(mp); | ||
| 1344 | xfs_quiesce_attr(mp); | 1431 | xfs_quiesce_attr(mp); | 
| 1345 | mp->m_flags |= XFS_MOUNT_RDONLY; | 1432 | mp->m_flags |= XFS_MOUNT_RDONLY; | 
| 1346 | } | 1433 | } | 
| @@ -1359,11 +1446,22 @@ xfs_fs_freeze( | |||
| 1359 | { | 1446 | { | 
| 1360 | struct xfs_mount *mp = XFS_M(sb); | 1447 | struct xfs_mount *mp = XFS_M(sb); | 
| 1361 | 1448 | ||
| 1449 | xfs_save_resvblks(mp); | ||
| 1362 | xfs_quiesce_attr(mp); | 1450 | xfs_quiesce_attr(mp); | 
| 1363 | return -xfs_fs_log_dummy(mp); | 1451 | return -xfs_fs_log_dummy(mp); | 
| 1364 | } | 1452 | } | 
| 1365 | 1453 | ||
| 1366 | STATIC int | 1454 | STATIC int | 
| 1455 | xfs_fs_unfreeze( | ||
| 1456 | struct super_block *sb) | ||
| 1457 | { | ||
| 1458 | struct xfs_mount *mp = XFS_M(sb); | ||
| 1459 | |||
| 1460 | xfs_restore_resvblks(mp); | ||
| 1461 | return 0; | ||
| 1462 | } | ||
| 1463 | |||
| 1464 | STATIC int | ||
| 1367 | xfs_fs_show_options( | 1465 | xfs_fs_show_options( | 
| 1368 | struct seq_file *m, | 1466 | struct seq_file *m, | 
| 1369 | struct vfsmount *mnt) | 1467 | struct vfsmount *mnt) | 
| @@ -1585,6 +1683,7 @@ static const struct super_operations xfs_super_operations = { | |||
| 1585 | .put_super = xfs_fs_put_super, | 1683 | .put_super = xfs_fs_put_super, | 
| 1586 | .sync_fs = xfs_fs_sync_fs, | 1684 | .sync_fs = xfs_fs_sync_fs, | 
| 1587 | .freeze_fs = xfs_fs_freeze, | 1685 | .freeze_fs = xfs_fs_freeze, | 
| 1686 | .unfreeze_fs = xfs_fs_unfreeze, | ||
| 1588 | .statfs = xfs_fs_statfs, | 1687 | .statfs = xfs_fs_statfs, | 
| 1589 | .remount_fs = xfs_fs_remount, | 1688 | .remount_fs = xfs_fs_remount, | 
| 1590 | .show_options = xfs_fs_show_options, | 1689 | .show_options = xfs_fs_show_options, | 
diff --git a/fs/xfs/linux-2.6/xfs_sync.c b/fs/xfs/linux-2.6/xfs_sync.c index 1f5e4bb5e970..05cd85317f6f 100644 --- a/fs/xfs/linux-2.6/xfs_sync.c +++ b/fs/xfs/linux-2.6/xfs_sync.c  | |||
| @@ -90,14 +90,13 @@ xfs_inode_ag_lookup( | |||
| 90 | STATIC int | 90 | STATIC int | 
| 91 | xfs_inode_ag_walk( | 91 | xfs_inode_ag_walk( | 
| 92 | struct xfs_mount *mp, | 92 | struct xfs_mount *mp, | 
| 93 | xfs_agnumber_t ag, | 93 | struct xfs_perag *pag, | 
| 94 | int (*execute)(struct xfs_inode *ip, | 94 | int (*execute)(struct xfs_inode *ip, | 
| 95 | struct xfs_perag *pag, int flags), | 95 | struct xfs_perag *pag, int flags), | 
| 96 | int flags, | 96 | int flags, | 
| 97 | int tag, | 97 | int tag, | 
| 98 | int exclusive) | 98 | int exclusive) | 
| 99 | { | 99 | { | 
| 100 | struct xfs_perag *pag = &mp->m_perag[ag]; | ||
| 101 | uint32_t first_index; | 100 | uint32_t first_index; | 
| 102 | int last_error = 0; | 101 | int last_error = 0; | 
| 103 | int skipped; | 102 | int skipped; | 
| @@ -141,8 +140,6 @@ restart: | |||
| 141 | delay(1); | 140 | delay(1); | 
| 142 | goto restart; | 141 | goto restart; | 
| 143 | } | 142 | } | 
| 144 | |||
| 145 | xfs_put_perag(mp, pag); | ||
| 146 | return last_error; | 143 | return last_error; | 
| 147 | } | 144 | } | 
| 148 | 145 | ||
| @@ -160,10 +157,16 @@ xfs_inode_ag_iterator( | |||
| 160 | xfs_agnumber_t ag; | 157 | xfs_agnumber_t ag; | 
| 161 | 158 | ||
| 162 | for (ag = 0; ag < mp->m_sb.sb_agcount; ag++) { | 159 | for (ag = 0; ag < mp->m_sb.sb_agcount; ag++) { | 
| 163 | if (!mp->m_perag[ag].pag_ici_init) | 160 | struct xfs_perag *pag; | 
| 161 | |||
| 162 | pag = xfs_perag_get(mp, ag); | ||
| 163 | if (!pag->pag_ici_init) { | ||
| 164 | xfs_perag_put(pag); | ||
| 164 | continue; | 165 | continue; | 
| 165 | error = xfs_inode_ag_walk(mp, ag, execute, flags, tag, | 166 | } | 
| 167 | error = xfs_inode_ag_walk(mp, pag, execute, flags, tag, | ||
| 166 | exclusive); | 168 | exclusive); | 
| 169 | xfs_perag_put(pag); | ||
| 167 | if (error) { | 170 | if (error) { | 
| 168 | last_error = error; | 171 | last_error = error; | 
| 169 | if (error == EFSCORRUPTED) | 172 | if (error == EFSCORRUPTED) | 
| @@ -231,7 +234,7 @@ xfs_sync_inode_data( | |||
| 231 | } | 234 | } | 
| 232 | 235 | ||
| 233 | error = xfs_flush_pages(ip, 0, -1, (flags & SYNC_WAIT) ? | 236 | error = xfs_flush_pages(ip, 0, -1, (flags & SYNC_WAIT) ? | 
| 234 | 0 : XFS_B_ASYNC, FI_NONE); | 237 | 0 : XBF_ASYNC, FI_NONE); | 
| 235 | xfs_iunlock(ip, XFS_IOLOCK_SHARED); | 238 | xfs_iunlock(ip, XFS_IOLOCK_SHARED); | 
| 236 | 239 | ||
| 237 | out_wait: | 240 | out_wait: | 
| @@ -267,8 +270,7 @@ xfs_sync_inode_attr( | |||
| 267 | goto out_unlock; | 270 | goto out_unlock; | 
| 268 | } | 271 | } | 
| 269 | 272 | ||
| 270 | error = xfs_iflush(ip, (flags & SYNC_WAIT) ? | 273 | error = xfs_iflush(ip, flags); | 
| 271 | XFS_IFLUSH_SYNC : XFS_IFLUSH_DELWRI); | ||
| 272 | 274 | ||
| 273 | out_unlock: | 275 | out_unlock: | 
| 274 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | 276 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | 
| @@ -293,10 +295,7 @@ xfs_sync_data( | |||
| 293 | if (error) | 295 | if (error) | 
| 294 | return XFS_ERROR(error); | 296 | return XFS_ERROR(error); | 
| 295 | 297 | ||
| 296 | xfs_log_force(mp, 0, | 298 | xfs_log_force(mp, (flags & SYNC_WAIT) ? XFS_LOG_SYNC : 0); | 
| 297 | (flags & SYNC_WAIT) ? | ||
| 298 | XFS_LOG_FORCE | XFS_LOG_SYNC : | ||
| 299 | XFS_LOG_FORCE); | ||
| 300 | return 0; | 299 | return 0; | 
| 301 | } | 300 | } | 
| 302 | 301 | ||
| @@ -322,10 +321,6 @@ xfs_commit_dummy_trans( | |||
| 322 | struct xfs_inode *ip = mp->m_rootip; | 321 | struct xfs_inode *ip = mp->m_rootip; | 
| 323 | struct xfs_trans *tp; | 322 | struct xfs_trans *tp; | 
| 324 | int error; | 323 | int error; | 
| 325 | int log_flags = XFS_LOG_FORCE; | ||
| 326 | |||
| 327 | if (flags & SYNC_WAIT) | ||
| 328 | log_flags |= XFS_LOG_SYNC; | ||
| 329 | 324 | ||
| 330 | /* | 325 | /* | 
| 331 | * Put a dummy transaction in the log to tell recovery | 326 | * Put a dummy transaction in the log to tell recovery | 
| @@ -347,11 +342,11 @@ xfs_commit_dummy_trans( | |||
| 347 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | 342 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | 
| 348 | 343 | ||
| 349 | /* the log force ensures this transaction is pushed to disk */ | 344 | /* the log force ensures this transaction is pushed to disk */ | 
| 350 | xfs_log_force(mp, 0, log_flags); | 345 | xfs_log_force(mp, (flags & SYNC_WAIT) ? XFS_LOG_SYNC : 0); | 
| 351 | return error; | 346 | return error; | 
| 352 | } | 347 | } | 
| 353 | 348 | ||
| 354 | int | 349 | STATIC int | 
| 355 | xfs_sync_fsdata( | 350 | xfs_sync_fsdata( | 
| 356 | struct xfs_mount *mp, | 351 | struct xfs_mount *mp, | 
| 357 | int flags) | 352 | int flags) | 
| @@ -367,7 +362,7 @@ xfs_sync_fsdata( | |||
| 367 | if (flags & SYNC_TRYLOCK) { | 362 | if (flags & SYNC_TRYLOCK) { | 
| 368 | ASSERT(!(flags & SYNC_WAIT)); | 363 | ASSERT(!(flags & SYNC_WAIT)); | 
| 369 | 364 | ||
| 370 | bp = xfs_getsb(mp, XFS_BUF_TRYLOCK); | 365 | bp = xfs_getsb(mp, XBF_TRYLOCK); | 
| 371 | if (!bp) | 366 | if (!bp) | 
| 372 | goto out; | 367 | goto out; | 
| 373 | 368 | ||
| @@ -387,7 +382,7 @@ xfs_sync_fsdata( | |||
| 387 | * become pinned in between there and here. | 382 | * become pinned in between there and here. | 
| 388 | */ | 383 | */ | 
| 389 | if (XFS_BUF_ISPINNED(bp)) | 384 | if (XFS_BUF_ISPINNED(bp)) | 
| 390 | xfs_log_force(mp, 0, XFS_LOG_FORCE); | 385 | xfs_log_force(mp, 0); | 
| 391 | } | 386 | } | 
| 392 | 387 | ||
| 393 | 388 | ||
| @@ -448,9 +443,6 @@ xfs_quiesce_data( | |||
| 448 | xfs_sync_data(mp, SYNC_WAIT); | 443 | xfs_sync_data(mp, SYNC_WAIT); | 
| 449 | xfs_qm_sync(mp, SYNC_WAIT); | 444 | xfs_qm_sync(mp, SYNC_WAIT); | 
| 450 | 445 | ||
| 451 | /* drop inode references pinned by filestreams */ | ||
| 452 | xfs_filestream_flush(mp); | ||
| 453 | |||
| 454 | /* write superblock and hoover up shutdown errors */ | 446 | /* write superblock and hoover up shutdown errors */ | 
| 455 | error = xfs_sync_fsdata(mp, SYNC_WAIT); | 447 | error = xfs_sync_fsdata(mp, SYNC_WAIT); | 
| 456 | 448 | ||
| @@ -467,16 +459,18 @@ xfs_quiesce_fs( | |||
| 467 | { | 459 | { | 
| 468 | int count = 0, pincount; | 460 | int count = 0, pincount; | 
| 469 | 461 | ||
| 462 | xfs_reclaim_inodes(mp, 0); | ||
| 470 | xfs_flush_buftarg(mp->m_ddev_targp, 0); | 463 | xfs_flush_buftarg(mp->m_ddev_targp, 0); | 
| 471 | xfs_reclaim_inodes(mp, XFS_IFLUSH_DELWRI_ELSE_ASYNC); | ||
| 472 | 464 | ||
| 473 | /* | 465 | /* | 
| 474 | * This loop must run at least twice. The first instance of the loop | 466 | * This loop must run at least twice. The first instance of the loop | 
| 475 | * will flush most meta data but that will generate more meta data | 467 | * will flush most meta data but that will generate more meta data | 
| 476 | * (typically directory updates). Which then must be flushed and | 468 | * (typically directory updates). Which then must be flushed and | 
| 477 | * logged before we can write the unmount record. | 469 | * logged before we can write the unmount record. We also so sync | 
| 470 | * reclaim of inodes to catch any that the above delwri flush skipped. | ||
| 478 | */ | 471 | */ | 
| 479 | do { | 472 | do { | 
| 473 | xfs_reclaim_inodes(mp, SYNC_WAIT); | ||
| 480 | xfs_sync_attr(mp, SYNC_WAIT); | 474 | xfs_sync_attr(mp, SYNC_WAIT); | 
| 481 | pincount = xfs_flush_buftarg(mp->m_ddev_targp, 1); | 475 | pincount = xfs_flush_buftarg(mp->m_ddev_targp, 1); | 
| 482 | if (!pincount) { | 476 | if (!pincount) { | 
| @@ -575,7 +569,7 @@ xfs_flush_inodes( | |||
| 575 | igrab(inode); | 569 | igrab(inode); | 
| 576 | xfs_syncd_queue_work(ip->i_mount, inode, xfs_flush_inodes_work, &completion); | 570 | xfs_syncd_queue_work(ip->i_mount, inode, xfs_flush_inodes_work, &completion); | 
| 577 | wait_for_completion(&completion); | 571 | wait_for_completion(&completion); | 
| 578 | xfs_log_force(ip->i_mount, (xfs_lsn_t)0, XFS_LOG_FORCE|XFS_LOG_SYNC); | 572 | xfs_log_force(ip->i_mount, XFS_LOG_SYNC); | 
| 579 | } | 573 | } | 
| 580 | 574 | ||
| 581 | /* | 575 | /* | 
| @@ -591,8 +585,8 @@ xfs_sync_worker( | |||
| 591 | int error; | 585 | int error; | 
| 592 | 586 | ||
| 593 | if (!(mp->m_flags & XFS_MOUNT_RDONLY)) { | 587 | if (!(mp->m_flags & XFS_MOUNT_RDONLY)) { | 
| 594 | xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE); | 588 | xfs_log_force(mp, 0); | 
| 595 | xfs_reclaim_inodes(mp, XFS_IFLUSH_DELWRI_ELSE_ASYNC); | 589 | xfs_reclaim_inodes(mp, 0); | 
| 596 | /* dgc: errors ignored here */ | 590 | /* dgc: errors ignored here */ | 
| 597 | error = xfs_qm_sync(mp, SYNC_TRYLOCK); | 591 | error = xfs_qm_sync(mp, SYNC_TRYLOCK); | 
| 598 | error = xfs_sync_fsdata(mp, SYNC_TRYLOCK); | 592 | error = xfs_sync_fsdata(mp, SYNC_TRYLOCK); | 
| @@ -613,7 +607,8 @@ xfssyncd( | |||
| 613 | set_freezable(); | 607 | set_freezable(); | 
| 614 | timeleft = xfs_syncd_centisecs * msecs_to_jiffies(10); | 608 | timeleft = xfs_syncd_centisecs * msecs_to_jiffies(10); | 
| 615 | for (;;) { | 609 | for (;;) { | 
| 616 | timeleft = schedule_timeout_interruptible(timeleft); | 610 | if (list_empty(&mp->m_sync_list)) | 
| 611 | timeleft = schedule_timeout_interruptible(timeleft); | ||
| 617 | /* swsusp */ | 612 | /* swsusp */ | 
| 618 | try_to_freeze(); | 613 | try_to_freeze(); | 
| 619 | if (kthread_should_stop() && list_empty(&mp->m_sync_list)) | 614 | if (kthread_should_stop() && list_empty(&mp->m_sync_list)) | 
| @@ -633,8 +628,7 @@ xfssyncd( | |||
| 633 | list_add_tail(&mp->m_sync_work.w_list, | 628 | list_add_tail(&mp->m_sync_work.w_list, | 
| 634 | &mp->m_sync_list); | 629 | &mp->m_sync_list); | 
| 635 | } | 630 | } | 
| 636 | list_for_each_entry_safe(work, n, &mp->m_sync_list, w_list) | 631 | list_splice_init(&mp->m_sync_list, &tmp); | 
| 637 | list_move(&work->w_list, &tmp); | ||
| 638 | spin_unlock(&mp->m_sync_lock); | 632 | spin_unlock(&mp->m_sync_lock); | 
| 639 | 633 | ||
| 640 | list_for_each_entry_safe(work, n, &tmp, w_list) { | 634 | list_for_each_entry_safe(work, n, &tmp, w_list) { | 
| @@ -690,16 +684,17 @@ void | |||
| 690 | xfs_inode_set_reclaim_tag( | 684 | xfs_inode_set_reclaim_tag( | 
| 691 | xfs_inode_t *ip) | 685 | xfs_inode_t *ip) | 
| 692 | { | 686 | { | 
| 693 | xfs_mount_t *mp = ip->i_mount; | 687 | struct xfs_mount *mp = ip->i_mount; | 
| 694 | xfs_perag_t *pag = xfs_get_perag(mp, ip->i_ino); | 688 | struct xfs_perag *pag; | 
| 695 | 689 | ||
| 696 | read_lock(&pag->pag_ici_lock); | 690 | pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino)); | 
| 691 | write_lock(&pag->pag_ici_lock); | ||
| 697 | spin_lock(&ip->i_flags_lock); | 692 | spin_lock(&ip->i_flags_lock); | 
| 698 | __xfs_inode_set_reclaim_tag(pag, ip); | 693 | __xfs_inode_set_reclaim_tag(pag, ip); | 
| 699 | __xfs_iflags_set(ip, XFS_IRECLAIMABLE); | 694 | __xfs_iflags_set(ip, XFS_IRECLAIMABLE); | 
| 700 | spin_unlock(&ip->i_flags_lock); | 695 | spin_unlock(&ip->i_flags_lock); | 
| 701 | read_unlock(&pag->pag_ici_lock); | 696 | write_unlock(&pag->pag_ici_lock); | 
| 702 | xfs_put_perag(mp, pag); | 697 | xfs_perag_put(pag); | 
| 703 | } | 698 | } | 
| 704 | 699 | ||
| 705 | void | 700 | void | 
| @@ -712,12 +707,64 @@ __xfs_inode_clear_reclaim_tag( | |||
| 712 | XFS_INO_TO_AGINO(mp, ip->i_ino), XFS_ICI_RECLAIM_TAG); | 707 | XFS_INO_TO_AGINO(mp, ip->i_ino), XFS_ICI_RECLAIM_TAG); | 
| 713 | } | 708 | } | 
| 714 | 709 | ||
| 710 | /* | ||
| 711 | * Inodes in different states need to be treated differently, and the return | ||
| 712 | * value of xfs_iflush is not sufficient to get this right. The following table | ||
| 713 | * lists the inode states and the reclaim actions necessary for non-blocking | ||
| 714 | * reclaim: | ||
| 715 | * | ||
| 716 | * | ||
| 717 | * inode state iflush ret required action | ||
| 718 | * --------------- ---------- --------------- | ||
| 719 | * bad - reclaim | ||
| 720 | * shutdown EIO unpin and reclaim | ||
| 721 | * clean, unpinned 0 reclaim | ||
| 722 | * stale, unpinned 0 reclaim | ||
| 723 | * clean, pinned(*) 0 requeue | ||
| 724 | * stale, pinned EAGAIN requeue | ||
| 725 | * dirty, delwri ok 0 requeue | ||
| 726 | * dirty, delwri blocked EAGAIN requeue | ||
| 727 | * dirty, sync flush 0 reclaim | ||
| 728 | * | ||
| 729 | * (*) dgc: I don't think the clean, pinned state is possible but it gets | ||
| 730 | * handled anyway given the order of checks implemented. | ||
| 731 | * | ||
| 732 | * As can be seen from the table, the return value of xfs_iflush() is not | ||
| 733 | * sufficient to correctly decide the reclaim action here. The checks in | ||
| 734 | * xfs_iflush() might look like duplicates, but they are not. | ||
| 735 | * | ||
| 736 | * Also, because we get the flush lock first, we know that any inode that has | ||
| 737 | * been flushed delwri has had the flush completed by the time we check that | ||
| 738 | * the inode is clean. The clean inode check needs to be done before flushing | ||
| 739 | * the inode delwri otherwise we would loop forever requeuing clean inodes as | ||
| 740 | * we cannot tell apart a successful delwri flush and a clean inode from the | ||
| 741 | * return value of xfs_iflush(). | ||
| 742 | * | ||
| 743 | * Note that because the inode is flushed delayed write by background | ||
| 744 | * writeback, the flush lock may already be held here and waiting on it can | ||
| 745 | * result in very long latencies. Hence for sync reclaims, where we wait on the | ||
| 746 | * flush lock, the caller should push out delayed write inodes first before | ||
| 747 | * trying to reclaim them to minimise the amount of time spent waiting. For | ||
| 748 | * background relaim, we just requeue the inode for the next pass. | ||
| 749 | * | ||
| 750 | * Hence the order of actions after gaining the locks should be: | ||
| 751 | * bad => reclaim | ||
| 752 | * shutdown => unpin and reclaim | ||
| 753 | * pinned, delwri => requeue | ||
| 754 | * pinned, sync => unpin | ||
| 755 | * stale => reclaim | ||
| 756 | * clean => reclaim | ||
| 757 | * dirty, delwri => flush and requeue | ||
| 758 | * dirty, sync => flush, wait and reclaim | ||
| 759 | */ | ||
| 715 | STATIC int | 760 | STATIC int | 
| 716 | xfs_reclaim_inode( | 761 | xfs_reclaim_inode( | 
| 717 | struct xfs_inode *ip, | 762 | struct xfs_inode *ip, | 
| 718 | struct xfs_perag *pag, | 763 | struct xfs_perag *pag, | 
| 719 | int sync_mode) | 764 | int sync_mode) | 
| 720 | { | 765 | { | 
| 766 | int error = 0; | ||
| 767 | |||
| 721 | /* | 768 | /* | 
| 722 | * The radix tree lock here protects a thread in xfs_iget from racing | 769 | * The radix tree lock here protects a thread in xfs_iget from racing | 
| 723 | * with us starting reclaim on the inode. Once we have the | 770 | * with us starting reclaim on the inode. Once we have the | 
| @@ -735,33 +782,70 @@ xfs_reclaim_inode( | |||
| 735 | spin_unlock(&ip->i_flags_lock); | 782 | spin_unlock(&ip->i_flags_lock); | 
| 736 | write_unlock(&pag->pag_ici_lock); | 783 | write_unlock(&pag->pag_ici_lock); | 
| 737 | 784 | ||
| 738 | /* | ||
| 739 | * If the inode is still dirty, then flush it out. If the inode | ||
| 740 | * is not in the AIL, then it will be OK to flush it delwri as | ||
| 741 | * long as xfs_iflush() does not keep any references to the inode. | ||
| 742 | * We leave that decision up to xfs_iflush() since it has the | ||
| 743 | * knowledge of whether it's OK to simply do a delwri flush of | ||
| 744 | * the inode or whether we need to wait until the inode is | ||
| 745 | * pulled from the AIL. | ||
| 746 | * We get the flush lock regardless, though, just to make sure | ||
| 747 | * we don't free it while it is being flushed. | ||
| 748 | */ | ||
| 749 | xfs_ilock(ip, XFS_ILOCK_EXCL); | 785 | xfs_ilock(ip, XFS_ILOCK_EXCL); | 
| 750 | xfs_iflock(ip); | 786 | if (!xfs_iflock_nowait(ip)) { | 
| 787 | if (!(sync_mode & SYNC_WAIT)) | ||
| 788 | goto out; | ||
| 789 | xfs_iflock(ip); | ||
| 790 | } | ||
| 791 | |||
| 792 | if (is_bad_inode(VFS_I(ip))) | ||
| 793 | goto reclaim; | ||
| 794 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) { | ||
| 795 | xfs_iunpin_wait(ip); | ||
| 796 | goto reclaim; | ||
| 797 | } | ||
| 798 | if (xfs_ipincount(ip)) { | ||
| 799 | if (!(sync_mode & SYNC_WAIT)) { | ||
| 800 | xfs_ifunlock(ip); | ||
| 801 | goto out; | ||
| 802 | } | ||
| 803 | xfs_iunpin_wait(ip); | ||
| 804 | } | ||
| 805 | if (xfs_iflags_test(ip, XFS_ISTALE)) | ||
| 806 | goto reclaim; | ||
| 807 | if (xfs_inode_clean(ip)) | ||
| 808 | goto reclaim; | ||
| 809 | |||
| 810 | /* Now we have an inode that needs flushing */ | ||
| 811 | error = xfs_iflush(ip, sync_mode); | ||
| 812 | if (sync_mode & SYNC_WAIT) { | ||
| 813 | xfs_iflock(ip); | ||
| 814 | goto reclaim; | ||
| 815 | } | ||
| 751 | 816 | ||
| 752 | /* | 817 | /* | 
| 753 | * In the case of a forced shutdown we rely on xfs_iflush() to | 818 | * When we have to flush an inode but don't have SYNC_WAIT set, we | 
| 754 | * wait for the inode to be unpinned before returning an error. | 819 | * flush the inode out using a delwri buffer and wait for the next | 
| 820 | * call into reclaim to find it in a clean state instead of waiting for | ||
| 821 | * it now. We also don't return errors here - if the error is transient | ||
| 822 | * then the next reclaim pass will flush the inode, and if the error | ||
| 823 | * is permanent then the next sync reclaim will relcaim the inode and | ||
| 824 | * pass on the error. | ||
| 755 | */ | 825 | */ | 
| 756 | if (!is_bad_inode(VFS_I(ip)) && xfs_iflush(ip, sync_mode) == 0) { | 826 | if (error && !XFS_FORCED_SHUTDOWN(ip->i_mount)) { | 
| 757 | /* synchronize with xfs_iflush_done */ | 827 | xfs_fs_cmn_err(CE_WARN, ip->i_mount, | 
| 758 | xfs_iflock(ip); | 828 | "inode 0x%llx background reclaim flush failed with %d", | 
| 759 | xfs_ifunlock(ip); | 829 | (long long)ip->i_ino, error); | 
| 760 | } | 830 | } | 
| 831 | out: | ||
| 832 | xfs_iflags_clear(ip, XFS_IRECLAIM); | ||
| 833 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 834 | /* | ||
| 835 | * We could return EAGAIN here to make reclaim rescan the inode tree in | ||
| 836 | * a short while. However, this just burns CPU time scanning the tree | ||
| 837 | * waiting for IO to complete and xfssyncd never goes back to the idle | ||
| 838 | * state. Instead, return 0 to let the next scheduled background reclaim | ||
| 839 | * attempt to reclaim the inode again. | ||
| 840 | */ | ||
| 841 | return 0; | ||
| 761 | 842 | ||
| 843 | reclaim: | ||
| 844 | xfs_ifunlock(ip); | ||
| 762 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | 845 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | 
| 763 | xfs_ireclaim(ip); | 846 | xfs_ireclaim(ip); | 
| 764 | return 0; | 847 | return error; | 
| 848 | |||
| 765 | } | 849 | } | 
| 766 | 850 | ||
| 767 | int | 851 | int | 
diff --git a/fs/xfs/linux-2.6/xfs_sync.h b/fs/xfs/linux-2.6/xfs_sync.h index ea932b43335d..d480c346cabb 100644 --- a/fs/xfs/linux-2.6/xfs_sync.h +++ b/fs/xfs/linux-2.6/xfs_sync.h  | |||
| @@ -37,7 +37,6 @@ void xfs_syncd_stop(struct xfs_mount *mp); | |||
| 37 | 37 | ||
| 38 | int xfs_sync_attr(struct xfs_mount *mp, int flags); | 38 | int xfs_sync_attr(struct xfs_mount *mp, int flags); | 
| 39 | int xfs_sync_data(struct xfs_mount *mp, int flags); | 39 | int xfs_sync_data(struct xfs_mount *mp, int flags); | 
| 40 | int xfs_sync_fsdata(struct xfs_mount *mp, int flags); | ||
| 41 | 40 | ||
| 42 | int xfs_quiesce_data(struct xfs_mount *mp); | 41 | int xfs_quiesce_data(struct xfs_mount *mp); | 
| 43 | void xfs_quiesce_attr(struct xfs_mount *mp); | 42 | void xfs_quiesce_attr(struct xfs_mount *mp); | 
diff --git a/fs/xfs/linux-2.6/xfs_trace.c b/fs/xfs/linux-2.6/xfs_trace.c index 856eb3c8d605..5a107601e969 100644 --- a/fs/xfs/linux-2.6/xfs_trace.c +++ b/fs/xfs/linux-2.6/xfs_trace.c  | |||
| @@ -52,22 +52,6 @@ | |||
| 52 | #include "quota/xfs_dquot.h" | 52 | #include "quota/xfs_dquot.h" | 
| 53 | 53 | ||
| 54 | /* | 54 | /* | 
| 55 | * Format fsblock number into a static buffer & return it. | ||
| 56 | */ | ||
| 57 | STATIC char *xfs_fmtfsblock(xfs_fsblock_t bno) | ||
| 58 | { | ||
| 59 | static char rval[50]; | ||
| 60 | |||
| 61 | if (bno == NULLFSBLOCK) | ||
| 62 | sprintf(rval, "NULLFSBLOCK"); | ||
| 63 | else if (isnullstartblock(bno)) | ||
| 64 | sprintf(rval, "NULLSTARTBLOCK(%lld)", startblockval(bno)); | ||
| 65 | else | ||
| 66 | sprintf(rval, "%lld", (xfs_dfsbno_t)bno); | ||
| 67 | return rval; | ||
| 68 | } | ||
| 69 | |||
| 70 | /* | ||
| 71 | * We include this last to have the helpers above available for the trace | 55 | * We include this last to have the helpers above available for the trace | 
| 72 | * event implementations. | 56 | * event implementations. | 
| 73 | */ | 57 | */ | 
diff --git a/fs/xfs/linux-2.6/xfs_trace.h b/fs/xfs/linux-2.6/xfs_trace.h index c22a608321a3..fcaa62f0799e 100644 --- a/fs/xfs/linux-2.6/xfs_trace.h +++ b/fs/xfs/linux-2.6/xfs_trace.h  | |||
| @@ -78,6 +78,33 @@ DECLARE_EVENT_CLASS(xfs_attr_list_class, | |||
| 78 | ) | 78 | ) | 
| 79 | ) | 79 | ) | 
| 80 | 80 | ||
| 81 | #define DEFINE_PERAG_REF_EVENT(name) \ | ||
| 82 | TRACE_EVENT(name, \ | ||
| 83 | TP_PROTO(struct xfs_mount *mp, xfs_agnumber_t agno, int refcount, \ | ||
| 84 | unsigned long caller_ip), \ | ||
| 85 | TP_ARGS(mp, agno, refcount, caller_ip), \ | ||
| 86 | TP_STRUCT__entry( \ | ||
| 87 | __field(dev_t, dev) \ | ||
| 88 | __field(xfs_agnumber_t, agno) \ | ||
| 89 | __field(int, refcount) \ | ||
| 90 | __field(unsigned long, caller_ip) \ | ||
| 91 | ), \ | ||
| 92 | TP_fast_assign( \ | ||
| 93 | __entry->dev = mp->m_super->s_dev; \ | ||
| 94 | __entry->agno = agno; \ | ||
| 95 | __entry->refcount = refcount; \ | ||
| 96 | __entry->caller_ip = caller_ip; \ | ||
| 97 | ), \ | ||
| 98 | TP_printk("dev %d:%d agno %u refcount %d caller %pf", \ | ||
| 99 | MAJOR(__entry->dev), MINOR(__entry->dev), \ | ||
| 100 | __entry->agno, \ | ||
| 101 | __entry->refcount, \ | ||
| 102 | (char *)__entry->caller_ip) \ | ||
| 103 | ); | ||
| 104 | |||
| 105 | DEFINE_PERAG_REF_EVENT(xfs_perag_get) | ||
| 106 | DEFINE_PERAG_REF_EVENT(xfs_perag_put) | ||
| 107 | |||
| 81 | #define DEFINE_ATTR_LIST_EVENT(name) \ | 108 | #define DEFINE_ATTR_LIST_EVENT(name) \ | 
| 82 | DEFINE_EVENT(xfs_attr_list_class, name, \ | 109 | DEFINE_EVENT(xfs_attr_list_class, name, \ | 
| 83 | TP_PROTO(struct xfs_attr_list_context *ctx), \ | 110 | TP_PROTO(struct xfs_attr_list_context *ctx), \ | 
| @@ -170,13 +197,13 @@ TRACE_EVENT(xfs_iext_insert, | |||
| 170 | __entry->caller_ip = caller_ip; | 197 | __entry->caller_ip = caller_ip; | 
| 171 | ), | 198 | ), | 
| 172 | TP_printk("dev %d:%d ino 0x%llx state %s idx %ld " | 199 | TP_printk("dev %d:%d ino 0x%llx state %s idx %ld " | 
| 173 | "offset %lld block %s count %lld flag %d caller %pf", | 200 | "offset %lld block %lld count %lld flag %d caller %pf", | 
| 174 | MAJOR(__entry->dev), MINOR(__entry->dev), | 201 | MAJOR(__entry->dev), MINOR(__entry->dev), | 
| 175 | __entry->ino, | 202 | __entry->ino, | 
| 176 | __print_flags(__entry->bmap_state, "|", XFS_BMAP_EXT_FLAGS), | 203 | __print_flags(__entry->bmap_state, "|", XFS_BMAP_EXT_FLAGS), | 
| 177 | (long)__entry->idx, | 204 | (long)__entry->idx, | 
| 178 | __entry->startoff, | 205 | __entry->startoff, | 
| 179 | xfs_fmtfsblock(__entry->startblock), | 206 | (__int64_t)__entry->startblock, | 
| 180 | __entry->blockcount, | 207 | __entry->blockcount, | 
| 181 | __entry->state, | 208 | __entry->state, | 
| 182 | (char *)__entry->caller_ip) | 209 | (char *)__entry->caller_ip) | 
| @@ -214,13 +241,13 @@ DECLARE_EVENT_CLASS(xfs_bmap_class, | |||
| 214 | __entry->caller_ip = caller_ip; | 241 | __entry->caller_ip = caller_ip; | 
| 215 | ), | 242 | ), | 
| 216 | TP_printk("dev %d:%d ino 0x%llx state %s idx %ld " | 243 | TP_printk("dev %d:%d ino 0x%llx state %s idx %ld " | 
| 217 | "offset %lld block %s count %lld flag %d caller %pf", | 244 | "offset %lld block %lld count %lld flag %d caller %pf", | 
| 218 | MAJOR(__entry->dev), MINOR(__entry->dev), | 245 | MAJOR(__entry->dev), MINOR(__entry->dev), | 
| 219 | __entry->ino, | 246 | __entry->ino, | 
| 220 | __print_flags(__entry->bmap_state, "|", XFS_BMAP_EXT_FLAGS), | 247 | __print_flags(__entry->bmap_state, "|", XFS_BMAP_EXT_FLAGS), | 
| 221 | (long)__entry->idx, | 248 | (long)__entry->idx, | 
| 222 | __entry->startoff, | 249 | __entry->startoff, | 
| 223 | xfs_fmtfsblock(__entry->startblock), | 250 | (__int64_t)__entry->startblock, | 
| 224 | __entry->blockcount, | 251 | __entry->blockcount, | 
| 225 | __entry->state, | 252 | __entry->state, | 
| 226 | (char *)__entry->caller_ip) | 253 | (char *)__entry->caller_ip) | 
| @@ -456,6 +483,7 @@ DEFINE_BUF_ITEM_EVENT(xfs_buf_item_unlock); | |||
| 456 | DEFINE_BUF_ITEM_EVENT(xfs_buf_item_unlock_stale); | 483 | DEFINE_BUF_ITEM_EVENT(xfs_buf_item_unlock_stale); | 
| 457 | DEFINE_BUF_ITEM_EVENT(xfs_buf_item_committed); | 484 | DEFINE_BUF_ITEM_EVENT(xfs_buf_item_committed); | 
| 458 | DEFINE_BUF_ITEM_EVENT(xfs_buf_item_push); | 485 | DEFINE_BUF_ITEM_EVENT(xfs_buf_item_push); | 
| 486 | DEFINE_BUF_ITEM_EVENT(xfs_buf_item_pushbuf); | ||
| 459 | DEFINE_BUF_ITEM_EVENT(xfs_trans_get_buf); | 487 | DEFINE_BUF_ITEM_EVENT(xfs_trans_get_buf); | 
| 460 | DEFINE_BUF_ITEM_EVENT(xfs_trans_get_buf_recur); | 488 | DEFINE_BUF_ITEM_EVENT(xfs_trans_get_buf_recur); | 
| 461 | DEFINE_BUF_ITEM_EVENT(xfs_trans_getsb); | 489 | DEFINE_BUF_ITEM_EVENT(xfs_trans_getsb); | 
| @@ -565,7 +593,7 @@ DECLARE_EVENT_CLASS(xfs_dquot_class, | |||
| 565 | TP_ARGS(dqp), | 593 | TP_ARGS(dqp), | 
| 566 | TP_STRUCT__entry( | 594 | TP_STRUCT__entry( | 
| 567 | __field(dev_t, dev) | 595 | __field(dev_t, dev) | 
| 568 | __field(__be32, id) | 596 | __field(u32, id) | 
| 569 | __field(unsigned, flags) | 597 | __field(unsigned, flags) | 
| 570 | __field(unsigned, nrefs) | 598 | __field(unsigned, nrefs) | 
| 571 | __field(unsigned long long, res_bcount) | 599 | __field(unsigned long long, res_bcount) | 
| @@ -578,7 +606,7 @@ DECLARE_EVENT_CLASS(xfs_dquot_class, | |||
| 578 | ), \ | 606 | ), \ | 
| 579 | TP_fast_assign( | 607 | TP_fast_assign( | 
| 580 | __entry->dev = dqp->q_mount->m_super->s_dev; | 608 | __entry->dev = dqp->q_mount->m_super->s_dev; | 
| 581 | __entry->id = dqp->q_core.d_id; | 609 | __entry->id = be32_to_cpu(dqp->q_core.d_id); | 
| 582 | __entry->flags = dqp->dq_flags; | 610 | __entry->flags = dqp->dq_flags; | 
| 583 | __entry->nrefs = dqp->q_nrefs; | 611 | __entry->nrefs = dqp->q_nrefs; | 
| 584 | __entry->res_bcount = dqp->q_res_bcount; | 612 | __entry->res_bcount = dqp->q_res_bcount; | 
| @@ -594,10 +622,10 @@ DECLARE_EVENT_CLASS(xfs_dquot_class, | |||
| 594 | be64_to_cpu(dqp->q_core.d_ino_softlimit); | 622 | be64_to_cpu(dqp->q_core.d_ino_softlimit); | 
| 595 | ), | 623 | ), | 
| 596 | TP_printk("dev %d:%d id 0x%x flags %s nrefs %u res_bc 0x%llx " | 624 | TP_printk("dev %d:%d id 0x%x flags %s nrefs %u res_bc 0x%llx " | 
| 597 | "bcnt 0x%llx [hard 0x%llx | soft 0x%llx] " | 625 | "bcnt 0x%llx bhardlimit 0x%llx bsoftlimit 0x%llx " | 
| 598 | "icnt 0x%llx [hard 0x%llx | soft 0x%llx]", | 626 | "icnt 0x%llx ihardlimit 0x%llx isoftlimit 0x%llx]", | 
| 599 | MAJOR(__entry->dev), MINOR(__entry->dev), | 627 | MAJOR(__entry->dev), MINOR(__entry->dev), | 
| 600 | be32_to_cpu(__entry->id), | 628 | __entry->id, | 
| 601 | __print_flags(__entry->flags, "|", XFS_DQ_FLAGS), | 629 | __print_flags(__entry->flags, "|", XFS_DQ_FLAGS), | 
| 602 | __entry->nrefs, | 630 | __entry->nrefs, | 
| 603 | __entry->res_bcount, | 631 | __entry->res_bcount, | 
| @@ -853,7 +881,7 @@ TRACE_EVENT(name, \ | |||
| 853 | ), \ | 881 | ), \ | 
| 854 | TP_printk("dev %d:%d ino 0x%llx size 0x%llx new_size 0x%llx " \ | 882 | TP_printk("dev %d:%d ino 0x%llx size 0x%llx new_size 0x%llx " \ | 
| 855 | "offset 0x%llx count %zd flags %s " \ | 883 | "offset 0x%llx count %zd flags %s " \ | 
| 856 | "startoff 0x%llx startblock %s blockcount 0x%llx", \ | 884 | "startoff 0x%llx startblock %lld blockcount 0x%llx", \ | 
| 857 | MAJOR(__entry->dev), MINOR(__entry->dev), \ | 885 | MAJOR(__entry->dev), MINOR(__entry->dev), \ | 
| 858 | __entry->ino, \ | 886 | __entry->ino, \ | 
| 859 | __entry->size, \ | 887 | __entry->size, \ | 
| @@ -862,7 +890,7 @@ TRACE_EVENT(name, \ | |||
| 862 | __entry->count, \ | 890 | __entry->count, \ | 
| 863 | __print_flags(__entry->flags, "|", BMAPI_FLAGS), \ | 891 | __print_flags(__entry->flags, "|", BMAPI_FLAGS), \ | 
| 864 | __entry->startoff, \ | 892 | __entry->startoff, \ | 
| 865 | xfs_fmtfsblock(__entry->startblock), \ | 893 | (__int64_t)__entry->startblock, \ | 
| 866 | __entry->blockcount) \ | 894 | __entry->blockcount) \ | 
| 867 | ) | 895 | ) | 
| 868 | DEFINE_IOMAP_EVENT(xfs_iomap_enter); | 896 | DEFINE_IOMAP_EVENT(xfs_iomap_enter); | 
| @@ -1414,6 +1442,59 @@ TRACE_EVENT(xfs_dir2_leafn_moveents, | |||
| 1414 | __entry->count) | 1442 | __entry->count) | 
| 1415 | ); | 1443 | ); | 
| 1416 | 1444 | ||
| 1445 | #define XFS_SWAPEXT_INODES \ | ||
| 1446 | { 0, "target" }, \ | ||
| 1447 | { 1, "temp" } | ||
| 1448 | |||
| 1449 | #define XFS_INODE_FORMAT_STR \ | ||
| 1450 | { 0, "invalid" }, \ | ||
| 1451 | { 1, "local" }, \ | ||
| 1452 | { 2, "extent" }, \ | ||
| 1453 | { 3, "btree" } | ||
| 1454 | |||
| 1455 | DECLARE_EVENT_CLASS(xfs_swap_extent_class, | ||
| 1456 | TP_PROTO(struct xfs_inode *ip, int which), | ||
| 1457 | TP_ARGS(ip, which), | ||
| 1458 | TP_STRUCT__entry( | ||
| 1459 | __field(dev_t, dev) | ||
| 1460 | __field(int, which) | ||
| 1461 | __field(xfs_ino_t, ino) | ||
| 1462 | __field(int, format) | ||
| 1463 | __field(int, nex) | ||
| 1464 | __field(int, max_nex) | ||
| 1465 | __field(int, broot_size) | ||
| 1466 | __field(int, fork_off) | ||
| 1467 | ), | ||
| 1468 | TP_fast_assign( | ||
| 1469 | __entry->dev = VFS_I(ip)->i_sb->s_dev; | ||
| 1470 | __entry->which = which; | ||
| 1471 | __entry->ino = ip->i_ino; | ||
| 1472 | __entry->format = ip->i_d.di_format; | ||
| 1473 | __entry->nex = ip->i_d.di_nextents; | ||
| 1474 | __entry->max_nex = ip->i_df.if_ext_max; | ||
| 1475 | __entry->broot_size = ip->i_df.if_broot_bytes; | ||
| 1476 | __entry->fork_off = XFS_IFORK_BOFF(ip); | ||
| 1477 | ), | ||
| 1478 | TP_printk("dev %d:%d ino 0x%llx (%s), %s format, num_extents %d, " | ||
| 1479 | "Max in-fork extents %d, broot size %d, fork offset %d", | ||
| 1480 | MAJOR(__entry->dev), MINOR(__entry->dev), | ||
| 1481 | __entry->ino, | ||
| 1482 | __print_symbolic(__entry->which, XFS_SWAPEXT_INODES), | ||
| 1483 | __print_symbolic(__entry->format, XFS_INODE_FORMAT_STR), | ||
| 1484 | __entry->nex, | ||
| 1485 | __entry->max_nex, | ||
| 1486 | __entry->broot_size, | ||
| 1487 | __entry->fork_off) | ||
| 1488 | ) | ||
| 1489 | |||
| 1490 | #define DEFINE_SWAPEXT_EVENT(name) \ | ||
| 1491 | DEFINE_EVENT(xfs_swap_extent_class, name, \ | ||
| 1492 | TP_PROTO(struct xfs_inode *ip, int which), \ | ||
| 1493 | TP_ARGS(ip, which)) | ||
| 1494 | |||
| 1495 | DEFINE_SWAPEXT_EVENT(xfs_swap_extent_before); | ||
| 1496 | DEFINE_SWAPEXT_EVENT(xfs_swap_extent_after); | ||
| 1497 | |||
| 1417 | #endif /* _TRACE_XFS_H */ | 1498 | #endif /* _TRACE_XFS_H */ | 
| 1418 | 1499 | ||
| 1419 | #undef TRACE_INCLUDE_PATH | 1500 | #undef TRACE_INCLUDE_PATH | 
diff --git a/fs/xfs/linux-2.6/xfs_xattr.c b/fs/xfs/linux-2.6/xfs_xattr.c index 0b1878857fc3..fa01b9daba6b 100644 --- a/fs/xfs/linux-2.6/xfs_xattr.c +++ b/fs/xfs/linux-2.6/xfs_xattr.c  | |||
| @@ -45,7 +45,7 @@ xfs_xattr_get(struct dentry *dentry, const char *name, | |||
| 45 | value = NULL; | 45 | value = NULL; | 
| 46 | } | 46 | } | 
| 47 | 47 | ||
| 48 | error = -xfs_attr_get(ip, name, value, &asize, xflags); | 48 | error = -xfs_attr_get(ip, (unsigned char *)name, value, &asize, xflags); | 
| 49 | if (error) | 49 | if (error) | 
| 50 | return error; | 50 | return error; | 
| 51 | return asize; | 51 | return asize; | 
| @@ -67,8 +67,9 @@ xfs_xattr_set(struct dentry *dentry, const char *name, const void *value, | |||
| 67 | xflags |= ATTR_REPLACE; | 67 | xflags |= ATTR_REPLACE; | 
| 68 | 68 | ||
| 69 | if (!value) | 69 | if (!value) | 
| 70 | return -xfs_attr_remove(ip, name, xflags); | 70 | return -xfs_attr_remove(ip, (unsigned char *)name, xflags); | 
| 71 | return -xfs_attr_set(ip, name, (void *)value, size, xflags); | 71 | return -xfs_attr_set(ip, (unsigned char *)name, | 
| 72 | (void *)value, size, xflags); | ||
| 72 | } | 73 | } | 
| 73 | 74 | ||
| 74 | static struct xattr_handler xfs_xattr_user_handler = { | 75 | static struct xattr_handler xfs_xattr_user_handler = { | 
| @@ -124,8 +125,13 @@ static const char *xfs_xattr_prefix(int flags) | |||
| 124 | } | 125 | } | 
| 125 | 126 | ||
| 126 | static int | 127 | static int | 
| 127 | xfs_xattr_put_listent(struct xfs_attr_list_context *context, int flags, | 128 | xfs_xattr_put_listent( | 
| 128 | char *name, int namelen, int valuelen, char *value) | 129 | struct xfs_attr_list_context *context, | 
| 130 | int flags, | ||
| 131 | unsigned char *name, | ||
| 132 | int namelen, | ||
| 133 | int valuelen, | ||
| 134 | unsigned char *value) | ||
| 129 | { | 135 | { | 
| 130 | unsigned int prefix_len = xfs_xattr_prefix_len(flags); | 136 | unsigned int prefix_len = xfs_xattr_prefix_len(flags); | 
| 131 | char *offset; | 137 | char *offset; | 
| @@ -148,7 +154,7 @@ xfs_xattr_put_listent(struct xfs_attr_list_context *context, int flags, | |||
| 148 | offset = (char *)context->alist + context->count; | 154 | offset = (char *)context->alist + context->count; | 
| 149 | strncpy(offset, xfs_xattr_prefix(flags), prefix_len); | 155 | strncpy(offset, xfs_xattr_prefix(flags), prefix_len); | 
| 150 | offset += prefix_len; | 156 | offset += prefix_len; | 
| 151 | strncpy(offset, name, namelen); /* real name */ | 157 | strncpy(offset, (char *)name, namelen); /* real name */ | 
| 152 | offset += namelen; | 158 | offset += namelen; | 
| 153 | *offset = '\0'; | 159 | *offset = '\0'; | 
| 154 | context->count += prefix_len + namelen + 1; | 160 | context->count += prefix_len + namelen + 1; | 
| @@ -156,8 +162,13 @@ xfs_xattr_put_listent(struct xfs_attr_list_context *context, int flags, | |||
| 156 | } | 162 | } | 
| 157 | 163 | ||
| 158 | static int | 164 | static int | 
| 159 | xfs_xattr_put_listent_sizes(struct xfs_attr_list_context *context, int flags, | 165 | xfs_xattr_put_listent_sizes( | 
| 160 | char *name, int namelen, int valuelen, char *value) | 166 | struct xfs_attr_list_context *context, | 
| 167 | int flags, | ||
| 168 | unsigned char *name, | ||
| 169 | int namelen, | ||
| 170 | int valuelen, | ||
| 171 | unsigned char *value) | ||
| 161 | { | 172 | { | 
| 162 | context->count += xfs_xattr_prefix_len(flags) + namelen + 1; | 173 | context->count += xfs_xattr_prefix_len(flags) + namelen + 1; | 
| 163 | return 0; | 174 | return 0; | 
diff --git a/fs/xfs/quota/xfs_dquot.c b/fs/xfs/quota/xfs_dquot.c index d7c7eea09fc2..5f79dd78626b 100644 --- a/fs/xfs/quota/xfs_dquot.c +++ b/fs/xfs/quota/xfs_dquot.c  | |||
| @@ -1187,7 +1187,7 @@ xfs_qm_dqflush( | |||
| 1187 | * block, nada. | 1187 | * block, nada. | 
| 1188 | */ | 1188 | */ | 
| 1189 | if (!XFS_DQ_IS_DIRTY(dqp) || | 1189 | if (!XFS_DQ_IS_DIRTY(dqp) || | 
| 1190 | (!(flags & XFS_QMOPT_SYNC) && atomic_read(&dqp->q_pincount) > 0)) { | 1190 | (!(flags & SYNC_WAIT) && atomic_read(&dqp->q_pincount) > 0)) { | 
| 1191 | xfs_dqfunlock(dqp); | 1191 | xfs_dqfunlock(dqp); | 
| 1192 | return 0; | 1192 | return 0; | 
| 1193 | } | 1193 | } | 
| @@ -1248,23 +1248,20 @@ xfs_qm_dqflush( | |||
| 1248 | */ | 1248 | */ | 
| 1249 | if (XFS_BUF_ISPINNED(bp)) { | 1249 | if (XFS_BUF_ISPINNED(bp)) { | 
| 1250 | trace_xfs_dqflush_force(dqp); | 1250 | trace_xfs_dqflush_force(dqp); | 
| 1251 | xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE); | 1251 | xfs_log_force(mp, 0); | 
| 1252 | } | 1252 | } | 
| 1253 | 1253 | ||
| 1254 | if (flags & XFS_QMOPT_DELWRI) { | 1254 | if (flags & SYNC_WAIT) | 
| 1255 | xfs_bdwrite(mp, bp); | ||
| 1256 | } else if (flags & XFS_QMOPT_ASYNC) { | ||
| 1257 | error = xfs_bawrite(mp, bp); | ||
| 1258 | } else { | ||
| 1259 | error = xfs_bwrite(mp, bp); | 1255 | error = xfs_bwrite(mp, bp); | 
| 1260 | } | 1256 | else | 
| 1257 | xfs_bdwrite(mp, bp); | ||
| 1261 | 1258 | ||
| 1262 | trace_xfs_dqflush_done(dqp); | 1259 | trace_xfs_dqflush_done(dqp); | 
| 1263 | 1260 | ||
| 1264 | /* | 1261 | /* | 
| 1265 | * dqp is still locked, but caller is free to unlock it now. | 1262 | * dqp is still locked, but caller is free to unlock it now. | 
| 1266 | */ | 1263 | */ | 
| 1267 | return (error); | 1264 | return error; | 
| 1268 | 1265 | ||
| 1269 | } | 1266 | } | 
| 1270 | 1267 | ||
| @@ -1445,7 +1442,7 @@ xfs_qm_dqpurge( | |||
| 1445 | * We don't care about getting disk errors here. We need | 1442 | * We don't care about getting disk errors here. We need | 
| 1446 | * to purge this dquot anyway, so we go ahead regardless. | 1443 | * to purge this dquot anyway, so we go ahead regardless. | 
| 1447 | */ | 1444 | */ | 
| 1448 | error = xfs_qm_dqflush(dqp, XFS_QMOPT_SYNC); | 1445 | error = xfs_qm_dqflush(dqp, SYNC_WAIT); | 
| 1449 | if (error) | 1446 | if (error) | 
| 1450 | xfs_fs_cmn_err(CE_WARN, mp, | 1447 | xfs_fs_cmn_err(CE_WARN, mp, | 
| 1451 | "xfs_qm_dqpurge: dquot %p flush failed", dqp); | 1448 | "xfs_qm_dqpurge: dquot %p flush failed", dqp); | 
| @@ -1529,25 +1526,17 @@ xfs_qm_dqflock_pushbuf_wait( | |||
| 1529 | * the flush lock when the I/O completes. | 1526 | * the flush lock when the I/O completes. | 
| 1530 | */ | 1527 | */ | 
| 1531 | bp = xfs_incore(dqp->q_mount->m_ddev_targp, dqp->q_blkno, | 1528 | bp = xfs_incore(dqp->q_mount->m_ddev_targp, dqp->q_blkno, | 
| 1532 | XFS_QI_DQCHUNKLEN(dqp->q_mount), | 1529 | XFS_QI_DQCHUNKLEN(dqp->q_mount), XBF_TRYLOCK); | 
| 1533 | XFS_INCORE_TRYLOCK); | 1530 | if (!bp) | 
| 1534 | if (bp != NULL) { | 1531 | goto out_lock; | 
| 1535 | if (XFS_BUF_ISDELAYWRITE(bp)) { | 1532 | |
| 1536 | int error; | 1533 | if (XFS_BUF_ISDELAYWRITE(bp)) { | 
| 1537 | if (XFS_BUF_ISPINNED(bp)) { | 1534 | if (XFS_BUF_ISPINNED(bp)) | 
| 1538 | xfs_log_force(dqp->q_mount, | 1535 | xfs_log_force(dqp->q_mount, 0); | 
| 1539 | (xfs_lsn_t)0, | 1536 | xfs_buf_delwri_promote(bp); | 
| 1540 | XFS_LOG_FORCE); | 1537 | wake_up_process(bp->b_target->bt_task); | 
| 1541 | } | ||
| 1542 | error = xfs_bawrite(dqp->q_mount, bp); | ||
| 1543 | if (error) | ||
| 1544 | xfs_fs_cmn_err(CE_WARN, dqp->q_mount, | ||
| 1545 | "xfs_qm_dqflock_pushbuf_wait: " | ||
| 1546 | "pushbuf error %d on dqp %p, bp %p", | ||
| 1547 | error, dqp, bp); | ||
| 1548 | } else { | ||
| 1549 | xfs_buf_relse(bp); | ||
| 1550 | } | ||
| 1551 | } | 1538 | } | 
| 1539 | xfs_buf_relse(bp); | ||
| 1540 | out_lock: | ||
| 1552 | xfs_dqflock(dqp); | 1541 | xfs_dqflock(dqp); | 
| 1553 | } | 1542 | } | 
diff --git a/fs/xfs/quota/xfs_dquot_item.c b/fs/xfs/quota/xfs_dquot_item.c index d0d4a9a0bbd7..4e4ee9a57194 100644 --- a/fs/xfs/quota/xfs_dquot_item.c +++ b/fs/xfs/quota/xfs_dquot_item.c  | |||
| @@ -74,11 +74,11 @@ xfs_qm_dquot_logitem_format( | |||
| 74 | 74 | ||
| 75 | logvec->i_addr = (xfs_caddr_t)&logitem->qli_format; | 75 | logvec->i_addr = (xfs_caddr_t)&logitem->qli_format; | 
| 76 | logvec->i_len = sizeof(xfs_dq_logformat_t); | 76 | logvec->i_len = sizeof(xfs_dq_logformat_t); | 
| 77 | XLOG_VEC_SET_TYPE(logvec, XLOG_REG_TYPE_QFORMAT); | 77 | logvec->i_type = XLOG_REG_TYPE_QFORMAT; | 
| 78 | logvec++; | 78 | logvec++; | 
| 79 | logvec->i_addr = (xfs_caddr_t)&logitem->qli_dquot->q_core; | 79 | logvec->i_addr = (xfs_caddr_t)&logitem->qli_dquot->q_core; | 
| 80 | logvec->i_len = sizeof(xfs_disk_dquot_t); | 80 | logvec->i_len = sizeof(xfs_disk_dquot_t); | 
| 81 | XLOG_VEC_SET_TYPE(logvec, XLOG_REG_TYPE_DQUOT); | 81 | logvec->i_type = XLOG_REG_TYPE_DQUOT; | 
| 82 | 82 | ||
| 83 | ASSERT(2 == logitem->qli_item.li_desc->lid_size); | 83 | ASSERT(2 == logitem->qli_item.li_desc->lid_size); | 
| 84 | logitem->qli_format.qlf_size = 2; | 84 | logitem->qli_format.qlf_size = 2; | 
| @@ -153,7 +153,7 @@ xfs_qm_dquot_logitem_push( | |||
| 153 | * lock without sleeping, then there must not have been | 153 | * lock without sleeping, then there must not have been | 
| 154 | * anyone in the process of flushing the dquot. | 154 | * anyone in the process of flushing the dquot. | 
| 155 | */ | 155 | */ | 
| 156 | error = xfs_qm_dqflush(dqp, XFS_QMOPT_DELWRI); | 156 | error = xfs_qm_dqflush(dqp, 0); | 
| 157 | if (error) | 157 | if (error) | 
| 158 | xfs_fs_cmn_err(CE_WARN, dqp->q_mount, | 158 | xfs_fs_cmn_err(CE_WARN, dqp->q_mount, | 
| 159 | "xfs_qm_dquot_logitem_push: push error %d on dqp %p", | 159 | "xfs_qm_dquot_logitem_push: push error %d on dqp %p", | 
| @@ -190,7 +190,7 @@ xfs_qm_dqunpin_wait( | |||
| 190 | /* | 190 | /* | 
| 191 | * Give the log a push so we don't wait here too long. | 191 | * Give the log a push so we don't wait here too long. | 
| 192 | */ | 192 | */ | 
| 193 | xfs_log_force(dqp->q_mount, (xfs_lsn_t)0, XFS_LOG_FORCE); | 193 | xfs_log_force(dqp->q_mount, 0); | 
| 194 | wait_event(dqp->q_pinwait, (atomic_read(&dqp->q_pincount) == 0)); | 194 | wait_event(dqp->q_pinwait, (atomic_read(&dqp->q_pincount) == 0)); | 
| 195 | } | 195 | } | 
| 196 | 196 | ||
| @@ -212,68 +212,31 @@ xfs_qm_dquot_logitem_pushbuf( | |||
| 212 | xfs_dquot_t *dqp; | 212 | xfs_dquot_t *dqp; | 
| 213 | xfs_mount_t *mp; | 213 | xfs_mount_t *mp; | 
| 214 | xfs_buf_t *bp; | 214 | xfs_buf_t *bp; | 
| 215 | uint dopush; | ||
| 216 | 215 | ||
| 217 | dqp = qip->qli_dquot; | 216 | dqp = qip->qli_dquot; | 
| 218 | ASSERT(XFS_DQ_IS_LOCKED(dqp)); | 217 | ASSERT(XFS_DQ_IS_LOCKED(dqp)); | 
| 219 | 218 | ||
| 220 | /* | 219 | /* | 
| 221 | * The qli_pushbuf_flag keeps others from | ||
| 222 | * trying to duplicate our effort. | ||
| 223 | */ | ||
| 224 | ASSERT(qip->qli_pushbuf_flag != 0); | ||
| 225 | ASSERT(qip->qli_push_owner == current_pid()); | ||
| 226 | |||
| 227 | /* | ||
| 228 | * If flushlock isn't locked anymore, chances are that the | 220 | * If flushlock isn't locked anymore, chances are that the | 
| 229 | * inode flush completed and the inode was taken off the AIL. | 221 | * inode flush completed and the inode was taken off the AIL. | 
| 230 | * So, just get out. | 222 | * So, just get out. | 
| 231 | */ | 223 | */ | 
| 232 | if (completion_done(&dqp->q_flush) || | 224 | if (completion_done(&dqp->q_flush) || | 
| 233 | ((qip->qli_item.li_flags & XFS_LI_IN_AIL) == 0)) { | 225 | ((qip->qli_item.li_flags & XFS_LI_IN_AIL) == 0)) { | 
| 234 | qip->qli_pushbuf_flag = 0; | ||
| 235 | xfs_dqunlock(dqp); | 226 | xfs_dqunlock(dqp); | 
| 236 | return; | 227 | return; | 
| 237 | } | 228 | } | 
| 238 | mp = dqp->q_mount; | 229 | mp = dqp->q_mount; | 
| 239 | bp = xfs_incore(mp->m_ddev_targp, qip->qli_format.qlf_blkno, | 230 | bp = xfs_incore(mp->m_ddev_targp, qip->qli_format.qlf_blkno, | 
| 240 | XFS_QI_DQCHUNKLEN(mp), | 231 | XFS_QI_DQCHUNKLEN(mp), XBF_TRYLOCK); | 
| 241 | XFS_INCORE_TRYLOCK); | 232 | xfs_dqunlock(dqp); | 
| 242 | if (bp != NULL) { | 233 | if (!bp) | 
| 243 | if (XFS_BUF_ISDELAYWRITE(bp)) { | ||
| 244 | dopush = ((qip->qli_item.li_flags & XFS_LI_IN_AIL) && | ||
| 245 | !completion_done(&dqp->q_flush)); | ||
| 246 | qip->qli_pushbuf_flag = 0; | ||
| 247 | xfs_dqunlock(dqp); | ||
| 248 | |||
| 249 | if (XFS_BUF_ISPINNED(bp)) { | ||
| 250 | xfs_log_force(mp, (xfs_lsn_t)0, | ||
| 251 | XFS_LOG_FORCE); | ||
| 252 | } | ||
| 253 | if (dopush) { | ||
| 254 | int error; | ||
| 255 | #ifdef XFSRACEDEBUG | ||
| 256 | delay_for_intr(); | ||
| 257 | delay(300); | ||
| 258 | #endif | ||
| 259 | error = xfs_bawrite(mp, bp); | ||
| 260 | if (error) | ||
| 261 | xfs_fs_cmn_err(CE_WARN, mp, | ||
| 262 | "xfs_qm_dquot_logitem_pushbuf: pushbuf error %d on qip %p, bp %p", | ||
| 263 | error, qip, bp); | ||
| 264 | } else { | ||
| 265 | xfs_buf_relse(bp); | ||
| 266 | } | ||
| 267 | } else { | ||
| 268 | qip->qli_pushbuf_flag = 0; | ||
| 269 | xfs_dqunlock(dqp); | ||
| 270 | xfs_buf_relse(bp); | ||
| 271 | } | ||
| 272 | return; | 234 | return; | 
| 273 | } | 235 | if (XFS_BUF_ISDELAYWRITE(bp)) | 
| 236 | xfs_buf_delwri_promote(bp); | ||
| 237 | xfs_buf_relse(bp); | ||
| 238 | return; | ||
| 274 | 239 | ||
| 275 | qip->qli_pushbuf_flag = 0; | ||
| 276 | xfs_dqunlock(dqp); | ||
| 277 | } | 240 | } | 
| 278 | 241 | ||
| 279 | /* | 242 | /* | 
| @@ -291,50 +254,24 @@ xfs_qm_dquot_logitem_trylock( | |||
| 291 | xfs_dq_logitem_t *qip) | 254 | xfs_dq_logitem_t *qip) | 
| 292 | { | 255 | { | 
| 293 | xfs_dquot_t *dqp; | 256 | xfs_dquot_t *dqp; | 
| 294 | uint retval; | ||
| 295 | 257 | ||
| 296 | dqp = qip->qli_dquot; | 258 | dqp = qip->qli_dquot; | 
| 297 | if (atomic_read(&dqp->q_pincount) > 0) | 259 | if (atomic_read(&dqp->q_pincount) > 0) | 
| 298 | return (XFS_ITEM_PINNED); | 260 | return XFS_ITEM_PINNED; | 
| 299 | 261 | ||
| 300 | if (! xfs_qm_dqlock_nowait(dqp)) | 262 | if (! xfs_qm_dqlock_nowait(dqp)) | 
| 301 | return (XFS_ITEM_LOCKED); | 263 | return XFS_ITEM_LOCKED; | 
| 302 | 264 | ||
| 303 | retval = XFS_ITEM_SUCCESS; | ||
| 304 | if (!xfs_dqflock_nowait(dqp)) { | 265 | if (!xfs_dqflock_nowait(dqp)) { | 
| 305 | /* | 266 | /* | 
| 306 | * The dquot is already being flushed. It may have been | 267 | * dquot has already been flushed to the backing buffer, | 
| 307 | * flushed delayed write, however, and we don't want to | 268 | * leave it locked, pushbuf routine will unlock it. | 
| 308 | * get stuck waiting for that to complete. So, we want to check | ||
| 309 | * to see if we can lock the dquot's buffer without sleeping. | ||
| 310 | * If we can and it is marked for delayed write, then we | ||
| 311 | * hold it and send it out from the push routine. We don't | ||
| 312 | * want to do that now since we might sleep in the device | ||
| 313 | * strategy routine. We also don't want to grab the buffer lock | ||
| 314 | * here because we'd like not to call into the buffer cache | ||
| 315 | * while holding the AIL lock. | ||
| 316 | * Make sure to only return PUSHBUF if we set pushbuf_flag | ||
| 317 | * ourselves. If someone else is doing it then we don't | ||
| 318 | * want to go to the push routine and duplicate their efforts. | ||
| 319 | */ | 269 | */ | 
| 320 | if (qip->qli_pushbuf_flag == 0) { | 270 | return XFS_ITEM_PUSHBUF; | 
| 321 | qip->qli_pushbuf_flag = 1; | ||
| 322 | ASSERT(qip->qli_format.qlf_blkno == dqp->q_blkno); | ||
| 323 | #ifdef DEBUG | ||
| 324 | qip->qli_push_owner = current_pid(); | ||
| 325 | #endif | ||
| 326 | /* | ||
| 327 | * The dquot is left locked. | ||
| 328 | */ | ||
| 329 | retval = XFS_ITEM_PUSHBUF; | ||
| 330 | } else { | ||
| 331 | retval = XFS_ITEM_FLUSHING; | ||
| 332 | xfs_dqunlock_nonotify(dqp); | ||
| 333 | } | ||
| 334 | } | 271 | } | 
| 335 | 272 | ||
| 336 | ASSERT(qip->qli_item.li_flags & XFS_LI_IN_AIL); | 273 | ASSERT(qip->qli_item.li_flags & XFS_LI_IN_AIL); | 
| 337 | return (retval); | 274 | return XFS_ITEM_SUCCESS; | 
| 338 | } | 275 | } | 
| 339 | 276 | ||
| 340 | 277 | ||
| @@ -467,7 +404,7 @@ xfs_qm_qoff_logitem_format(xfs_qoff_logitem_t *qf, | |||
| 467 | 404 | ||
| 468 | log_vector->i_addr = (xfs_caddr_t)&(qf->qql_format); | 405 | log_vector->i_addr = (xfs_caddr_t)&(qf->qql_format); | 
| 469 | log_vector->i_len = sizeof(xfs_qoff_logitem_t); | 406 | log_vector->i_len = sizeof(xfs_qoff_logitem_t); | 
| 470 | XLOG_VEC_SET_TYPE(log_vector, XLOG_REG_TYPE_QUOTAOFF); | 407 | log_vector->i_type = XLOG_REG_TYPE_QUOTAOFF; | 
| 471 | qf->qql_format.qf_size = 1; | 408 | qf->qql_format.qf_size = 1; | 
| 472 | } | 409 | } | 
| 473 | 410 | ||
diff --git a/fs/xfs/quota/xfs_dquot_item.h b/fs/xfs/quota/xfs_dquot_item.h index 5a632531f843..5acae2ada70b 100644 --- a/fs/xfs/quota/xfs_dquot_item.h +++ b/fs/xfs/quota/xfs_dquot_item.h  | |||
| @@ -27,10 +27,6 @@ typedef struct xfs_dq_logitem { | |||
| 27 | xfs_log_item_t qli_item; /* common portion */ | 27 | xfs_log_item_t qli_item; /* common portion */ | 
| 28 | struct xfs_dquot *qli_dquot; /* dquot ptr */ | 28 | struct xfs_dquot *qli_dquot; /* dquot ptr */ | 
| 29 | xfs_lsn_t qli_flush_lsn; /* lsn at last flush */ | 29 | xfs_lsn_t qli_flush_lsn; /* lsn at last flush */ | 
| 30 | unsigned short qli_pushbuf_flag; /* 1 bit used in push_ail */ | ||
| 31 | #ifdef DEBUG | ||
| 32 | uint64_t qli_push_owner; | ||
| 33 | #endif | ||
| 34 | xfs_dq_logformat_t qli_format; /* logged structure */ | 30 | xfs_dq_logformat_t qli_format; /* logged structure */ | 
| 35 | } xfs_dq_logitem_t; | 31 | } xfs_dq_logitem_t; | 
| 36 | 32 | ||
diff --git a/fs/xfs/quota/xfs_qm.c b/fs/xfs/quota/xfs_qm.c index 9e627a8b5b0e..417e61e3d9dd 100644 --- a/fs/xfs/quota/xfs_qm.c +++ b/fs/xfs/quota/xfs_qm.c  | |||
| @@ -118,9 +118,14 @@ xfs_Gqm_init(void) | |||
| 118 | */ | 118 | */ | 
| 119 | udqhash = kmem_zalloc_greedy(&hsize, | 119 | udqhash = kmem_zalloc_greedy(&hsize, | 
| 120 | XFS_QM_HASHSIZE_LOW * sizeof(xfs_dqhash_t), | 120 | XFS_QM_HASHSIZE_LOW * sizeof(xfs_dqhash_t), | 
| 121 | XFS_QM_HASHSIZE_HIGH * sizeof(xfs_dqhash_t), | 121 | XFS_QM_HASHSIZE_HIGH * sizeof(xfs_dqhash_t)); | 
| 122 | KM_SLEEP | KM_MAYFAIL | KM_LARGE); | 122 | if (!udqhash) | 
| 123 | gdqhash = kmem_zalloc(hsize, KM_SLEEP | KM_LARGE); | 123 | goto out; | 
| 124 | |||
| 125 | gdqhash = kmem_zalloc_large(hsize); | ||
| 126 | if (!gdqhash) | ||
| 127 | goto out_free_udqhash; | ||
| 128 | |||
| 124 | hsize /= sizeof(xfs_dqhash_t); | 129 | hsize /= sizeof(xfs_dqhash_t); | 
| 125 | ndquot = hsize << 8; | 130 | ndquot = hsize << 8; | 
| 126 | 131 | ||
| @@ -170,6 +175,11 @@ xfs_Gqm_init(void) | |||
| 170 | mutex_init(&qcheck_lock); | 175 | mutex_init(&qcheck_lock); | 
| 171 | #endif | 176 | #endif | 
| 172 | return xqm; | 177 | return xqm; | 
| 178 | |||
| 179 | out_free_udqhash: | ||
| 180 | kmem_free_large(udqhash); | ||
| 181 | out: | ||
| 182 | return NULL; | ||
| 173 | } | 183 | } | 
| 174 | 184 | ||
| 175 | /* | 185 | /* | 
| @@ -189,8 +199,8 @@ xfs_qm_destroy( | |||
| 189 | xfs_qm_list_destroy(&(xqm->qm_usr_dqhtable[i])); | 199 | xfs_qm_list_destroy(&(xqm->qm_usr_dqhtable[i])); | 
| 190 | xfs_qm_list_destroy(&(xqm->qm_grp_dqhtable[i])); | 200 | xfs_qm_list_destroy(&(xqm->qm_grp_dqhtable[i])); | 
| 191 | } | 201 | } | 
| 192 | kmem_free(xqm->qm_usr_dqhtable); | 202 | kmem_free_large(xqm->qm_usr_dqhtable); | 
| 193 | kmem_free(xqm->qm_grp_dqhtable); | 203 | kmem_free_large(xqm->qm_grp_dqhtable); | 
| 194 | xqm->qm_usr_dqhtable = NULL; | 204 | xqm->qm_usr_dqhtable = NULL; | 
| 195 | xqm->qm_grp_dqhtable = NULL; | 205 | xqm->qm_grp_dqhtable = NULL; | 
| 196 | xqm->qm_dqhashmask = 0; | 206 | xqm->qm_dqhashmask = 0; | 
| @@ -219,8 +229,12 @@ xfs_qm_hold_quotafs_ref( | |||
| 219 | */ | 229 | */ | 
| 220 | mutex_lock(&xfs_Gqm_lock); | 230 | mutex_lock(&xfs_Gqm_lock); | 
| 221 | 231 | ||
| 222 | if (xfs_Gqm == NULL) | 232 | if (!xfs_Gqm) { | 
| 223 | xfs_Gqm = xfs_Gqm_init(); | 233 | xfs_Gqm = xfs_Gqm_init(); | 
| 234 | if (!xfs_Gqm) | ||
| 235 | return ENOMEM; | ||
| 236 | } | ||
| 237 | |||
| 224 | /* | 238 | /* | 
| 225 | * We can keep a list of all filesystems with quotas mounted for | 239 | * We can keep a list of all filesystems with quotas mounted for | 
| 226 | * debugging and statistical purposes, but ... | 240 | * debugging and statistical purposes, but ... | 
| @@ -436,7 +450,7 @@ xfs_qm_unmount_quotas( | |||
| 436 | STATIC int | 450 | STATIC int | 
| 437 | xfs_qm_dqflush_all( | 451 | xfs_qm_dqflush_all( | 
| 438 | xfs_mount_t *mp, | 452 | xfs_mount_t *mp, | 
| 439 | int flags) | 453 | int sync_mode) | 
| 440 | { | 454 | { | 
| 441 | int recl; | 455 | int recl; | 
| 442 | xfs_dquot_t *dqp; | 456 | xfs_dquot_t *dqp; | 
| @@ -472,7 +486,7 @@ again: | |||
| 472 | * across a disk write. | 486 | * across a disk write. | 
| 473 | */ | 487 | */ | 
| 474 | xfs_qm_mplist_unlock(mp); | 488 | xfs_qm_mplist_unlock(mp); | 
| 475 | error = xfs_qm_dqflush(dqp, flags); | 489 | error = xfs_qm_dqflush(dqp, sync_mode); | 
| 476 | xfs_dqunlock(dqp); | 490 | xfs_dqunlock(dqp); | 
| 477 | if (error) | 491 | if (error) | 
| 478 | return error; | 492 | return error; | 
| @@ -912,13 +926,11 @@ xfs_qm_sync( | |||
| 912 | { | 926 | { | 
| 913 | int recl, restarts; | 927 | int recl, restarts; | 
| 914 | xfs_dquot_t *dqp; | 928 | xfs_dquot_t *dqp; | 
| 915 | uint flush_flags; | ||
| 916 | int error; | 929 | int error; | 
| 917 | 930 | ||
| 918 | if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp)) | 931 | if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp)) | 
| 919 | return 0; | 932 | return 0; | 
| 920 | 933 | ||
| 921 | flush_flags = (flags & SYNC_WAIT) ? XFS_QMOPT_SYNC : XFS_QMOPT_DELWRI; | ||
| 922 | restarts = 0; | 934 | restarts = 0; | 
| 923 | 935 | ||
| 924 | again: | 936 | again: | 
| @@ -978,7 +990,7 @@ xfs_qm_sync( | |||
| 978 | * across a disk write | 990 | * across a disk write | 
| 979 | */ | 991 | */ | 
| 980 | xfs_qm_mplist_unlock(mp); | 992 | xfs_qm_mplist_unlock(mp); | 
| 981 | error = xfs_qm_dqflush(dqp, flush_flags); | 993 | error = xfs_qm_dqflush(dqp, flags); | 
| 982 | xfs_dqunlock(dqp); | 994 | xfs_dqunlock(dqp); | 
| 983 | if (error && XFS_FORCED_SHUTDOWN(mp)) | 995 | if (error && XFS_FORCED_SHUTDOWN(mp)) | 
| 984 | return 0; /* Need to prevent umount failure */ | 996 | return 0; /* Need to prevent umount failure */ | 
| @@ -1782,7 +1794,7 @@ xfs_qm_quotacheck( | |||
| 1782 | * successfully. | 1794 | * successfully. | 
| 1783 | */ | 1795 | */ | 
| 1784 | if (!error) | 1796 | if (!error) | 
| 1785 | error = xfs_qm_dqflush_all(mp, XFS_QMOPT_DELWRI); | 1797 | error = xfs_qm_dqflush_all(mp, 0); | 
| 1786 | 1798 | ||
| 1787 | /* | 1799 | /* | 
| 1788 | * We can get this error if we couldn't do a dquot allocation inside | 1800 | * We can get this error if we couldn't do a dquot allocation inside | 
| @@ -2004,7 +2016,7 @@ xfs_qm_shake_freelist( | |||
| 2004 | * We flush it delayed write, so don't bother | 2016 | * We flush it delayed write, so don't bother | 
| 2005 | * releasing the mplock. | 2017 | * releasing the mplock. | 
| 2006 | */ | 2018 | */ | 
| 2007 | error = xfs_qm_dqflush(dqp, XFS_QMOPT_DELWRI); | 2019 | error = xfs_qm_dqflush(dqp, 0); | 
| 2008 | if (error) { | 2020 | if (error) { | 
| 2009 | xfs_fs_cmn_err(CE_WARN, dqp->q_mount, | 2021 | xfs_fs_cmn_err(CE_WARN, dqp->q_mount, | 
| 2010 | "xfs_qm_dqflush_all: dquot %p flush failed", dqp); | 2022 | "xfs_qm_dqflush_all: dquot %p flush failed", dqp); | 
| @@ -2187,7 +2199,7 @@ xfs_qm_dqreclaim_one(void) | |||
| 2187 | * We flush it delayed write, so don't bother | 2199 | * We flush it delayed write, so don't bother | 
| 2188 | * releasing the freelist lock. | 2200 | * releasing the freelist lock. | 
| 2189 | */ | 2201 | */ | 
| 2190 | error = xfs_qm_dqflush(dqp, XFS_QMOPT_DELWRI); | 2202 | error = xfs_qm_dqflush(dqp, 0); | 
| 2191 | if (error) { | 2203 | if (error) { | 
| 2192 | xfs_fs_cmn_err(CE_WARN, dqp->q_mount, | 2204 | xfs_fs_cmn_err(CE_WARN, dqp->q_mount, | 
| 2193 | "xfs_qm_dqreclaim: dquot %p flush failed", dqp); | 2205 | "xfs_qm_dqreclaim: dquot %p flush failed", dqp); | 
diff --git a/fs/xfs/quota/xfs_qm_bhv.c b/fs/xfs/quota/xfs_qm_bhv.c index a5346630dfae..97b410c12794 100644 --- a/fs/xfs/quota/xfs_qm_bhv.c +++ b/fs/xfs/quota/xfs_qm_bhv.c  | |||
| @@ -59,7 +59,7 @@ xfs_fill_statvfs_from_dquot( | |||
| 59 | be64_to_cpu(dp->d_blk_hardlimit); | 59 | be64_to_cpu(dp->d_blk_hardlimit); | 
| 60 | if (limit && statp->f_blocks > limit) { | 60 | if (limit && statp->f_blocks > limit) { | 
| 61 | statp->f_blocks = limit; | 61 | statp->f_blocks = limit; | 
| 62 | statp->f_bfree = | 62 | statp->f_bfree = statp->f_bavail = | 
| 63 | (statp->f_blocks > be64_to_cpu(dp->d_bcount)) ? | 63 | (statp->f_blocks > be64_to_cpu(dp->d_bcount)) ? | 
| 64 | (statp->f_blocks - be64_to_cpu(dp->d_bcount)) : 0; | 64 | (statp->f_blocks - be64_to_cpu(dp->d_bcount)) : 0; | 
| 65 | } | 65 | } | 
diff --git a/fs/xfs/quota/xfs_qm_syscalls.c b/fs/xfs/quota/xfs_qm_syscalls.c index 873e07e29074..5d0ee8d492db 100644 --- a/fs/xfs/quota/xfs_qm_syscalls.c +++ b/fs/xfs/quota/xfs_qm_syscalls.c  | |||
| @@ -1192,9 +1192,9 @@ xfs_qm_internalqcheck( | |||
| 1192 | if (! XFS_IS_QUOTA_ON(mp)) | 1192 | if (! XFS_IS_QUOTA_ON(mp)) | 
| 1193 | return XFS_ERROR(ESRCH); | 1193 | return XFS_ERROR(ESRCH); | 
| 1194 | 1194 | ||
| 1195 | xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE | XFS_LOG_SYNC); | 1195 | xfs_log_force(mp, XFS_LOG_SYNC); | 
| 1196 | XFS_bflush(mp->m_ddev_targp); | 1196 | XFS_bflush(mp->m_ddev_targp); | 
| 1197 | xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE | XFS_LOG_SYNC); | 1197 | xfs_log_force(mp, XFS_LOG_SYNC); | 
| 1198 | XFS_bflush(mp->m_ddev_targp); | 1198 | XFS_bflush(mp->m_ddev_targp); | 
| 1199 | 1199 | ||
| 1200 | mutex_lock(&qcheck_lock); | 1200 | mutex_lock(&qcheck_lock); | 
diff --git a/fs/xfs/quota/xfs_trans_dquot.c b/fs/xfs/quota/xfs_trans_dquot.c index 97ac9640be98..c3ab75cb1d9a 100644 --- a/fs/xfs/quota/xfs_trans_dquot.c +++ b/fs/xfs/quota/xfs_trans_dquot.c  | |||
| @@ -589,12 +589,18 @@ xfs_trans_unreserve_and_mod_dquots( | |||
| 589 | } | 589 | } | 
| 590 | } | 590 | } | 
| 591 | 591 | ||
| 592 | STATIC int | 592 | STATIC void | 
| 593 | xfs_quota_error(uint flags) | 593 | xfs_quota_warn( | 
| 594 | struct xfs_mount *mp, | ||
| 595 | struct xfs_dquot *dqp, | ||
| 596 | int type) | ||
| 594 | { | 597 | { | 
| 595 | if (flags & XFS_QMOPT_ENOSPC) | 598 | /* no warnings for project quotas - we just return ENOSPC later */ | 
| 596 | return ENOSPC; | 599 | if (dqp->dq_flags & XFS_DQ_PROJ) | 
| 597 | return EDQUOT; | 600 | return; | 
| 601 | quota_send_warning((dqp->dq_flags & XFS_DQ_USER) ? USRQUOTA : GRPQUOTA, | ||
| 602 | be32_to_cpu(dqp->q_core.d_id), mp->m_super->s_dev, | ||
| 603 | type); | ||
| 598 | } | 604 | } | 
| 599 | 605 | ||
| 600 | /* | 606 | /* | 
| @@ -612,7 +618,6 @@ xfs_trans_dqresv( | |||
| 612 | long ninos, | 618 | long ninos, | 
| 613 | uint flags) | 619 | uint flags) | 
| 614 | { | 620 | { | 
| 615 | int error; | ||
| 616 | xfs_qcnt_t hardlimit; | 621 | xfs_qcnt_t hardlimit; | 
| 617 | xfs_qcnt_t softlimit; | 622 | xfs_qcnt_t softlimit; | 
| 618 | time_t timer; | 623 | time_t timer; | 
| @@ -649,7 +654,6 @@ xfs_trans_dqresv( | |||
| 649 | warnlimit = XFS_QI_RTBWARNLIMIT(dqp->q_mount); | 654 | warnlimit = XFS_QI_RTBWARNLIMIT(dqp->q_mount); | 
| 650 | resbcountp = &dqp->q_res_rtbcount; | 655 | resbcountp = &dqp->q_res_rtbcount; | 
| 651 | } | 656 | } | 
| 652 | error = 0; | ||
| 653 | 657 | ||
| 654 | if ((flags & XFS_QMOPT_FORCE_RES) == 0 && | 658 | if ((flags & XFS_QMOPT_FORCE_RES) == 0 && | 
| 655 | dqp->q_core.d_id && | 659 | dqp->q_core.d_id && | 
| @@ -667,18 +671,20 @@ xfs_trans_dqresv( | |||
| 667 | * nblks. | 671 | * nblks. | 
| 668 | */ | 672 | */ | 
| 669 | if (hardlimit > 0ULL && | 673 | if (hardlimit > 0ULL && | 
| 670 | (hardlimit <= nblks + *resbcountp)) { | 674 | hardlimit <= nblks + *resbcountp) { | 
| 671 | error = xfs_quota_error(flags); | 675 | xfs_quota_warn(mp, dqp, QUOTA_NL_BHARDWARN); | 
| 672 | goto error_return; | 676 | goto error_return; | 
| 673 | } | 677 | } | 
| 674 | |||
| 675 | if (softlimit > 0ULL && | 678 | if (softlimit > 0ULL && | 
| 676 | (softlimit <= nblks + *resbcountp)) { | 679 | softlimit <= nblks + *resbcountp) { | 
| 677 | if ((timer != 0 && get_seconds() > timer) || | 680 | if ((timer != 0 && get_seconds() > timer) || | 
| 678 | (warns != 0 && warns >= warnlimit)) { | 681 | (warns != 0 && warns >= warnlimit)) { | 
| 679 | error = xfs_quota_error(flags); | 682 | xfs_quota_warn(mp, dqp, | 
| 683 | QUOTA_NL_BSOFTLONGWARN); | ||
| 680 | goto error_return; | 684 | goto error_return; | 
| 681 | } | 685 | } | 
| 686 | |||
| 687 | xfs_quota_warn(mp, dqp, QUOTA_NL_BSOFTWARN); | ||
| 682 | } | 688 | } | 
| 683 | } | 689 | } | 
| 684 | if (ninos > 0) { | 690 | if (ninos > 0) { | 
| @@ -692,15 +698,19 @@ xfs_trans_dqresv( | |||
| 692 | softlimit = be64_to_cpu(dqp->q_core.d_ino_softlimit); | 698 | softlimit = be64_to_cpu(dqp->q_core.d_ino_softlimit); | 
| 693 | if (!softlimit) | 699 | if (!softlimit) | 
| 694 | softlimit = q->qi_isoftlimit; | 700 | softlimit = q->qi_isoftlimit; | 
| 701 | |||
| 695 | if (hardlimit > 0ULL && count >= hardlimit) { | 702 | if (hardlimit > 0ULL && count >= hardlimit) { | 
| 696 | error = xfs_quota_error(flags); | 703 | xfs_quota_warn(mp, dqp, QUOTA_NL_IHARDWARN); | 
| 697 | goto error_return; | 704 | goto error_return; | 
| 698 | } else if (softlimit > 0ULL && count >= softlimit) { | 705 | } | 
| 699 | if ((timer != 0 && get_seconds() > timer) || | 706 | if (softlimit > 0ULL && count >= softlimit) { | 
| 707 | if ((timer != 0 && get_seconds() > timer) || | ||
| 700 | (warns != 0 && warns >= warnlimit)) { | 708 | (warns != 0 && warns >= warnlimit)) { | 
| 701 | error = xfs_quota_error(flags); | 709 | xfs_quota_warn(mp, dqp, | 
| 710 | QUOTA_NL_ISOFTLONGWARN); | ||
| 702 | goto error_return; | 711 | goto error_return; | 
| 703 | } | 712 | } | 
| 713 | xfs_quota_warn(mp, dqp, QUOTA_NL_ISOFTWARN); | ||
| 704 | } | 714 | } | 
| 705 | } | 715 | } | 
| 706 | } | 716 | } | 
| @@ -736,9 +746,14 @@ xfs_trans_dqresv( | |||
| 736 | ASSERT(dqp->q_res_rtbcount >= be64_to_cpu(dqp->q_core.d_rtbcount)); | 746 | ASSERT(dqp->q_res_rtbcount >= be64_to_cpu(dqp->q_core.d_rtbcount)); | 
| 737 | ASSERT(dqp->q_res_icount >= be64_to_cpu(dqp->q_core.d_icount)); | 747 | ASSERT(dqp->q_res_icount >= be64_to_cpu(dqp->q_core.d_icount)); | 
| 738 | 748 | ||
| 749 | xfs_dqunlock(dqp); | ||
| 750 | return 0; | ||
| 751 | |||
| 739 | error_return: | 752 | error_return: | 
| 740 | xfs_dqunlock(dqp); | 753 | xfs_dqunlock(dqp); | 
| 741 | return error; | 754 | if (flags & XFS_QMOPT_ENOSPC) | 
| 755 | return ENOSPC; | ||
| 756 | return EDQUOT; | ||
| 742 | } | 757 | } | 
| 743 | 758 | ||
| 744 | 759 | ||
diff --git a/fs/xfs/xfs_acl.h b/fs/xfs/xfs_acl.h index 00fd357c3e46..d13eeba2c8f8 100644 --- a/fs/xfs/xfs_acl.h +++ b/fs/xfs/xfs_acl.h  | |||
| @@ -36,8 +36,8 @@ struct xfs_acl { | |||
| 36 | }; | 36 | }; | 
| 37 | 37 | ||
| 38 | /* On-disk XFS extended attribute names */ | 38 | /* On-disk XFS extended attribute names */ | 
| 39 | #define SGI_ACL_FILE "SGI_ACL_FILE" | 39 | #define SGI_ACL_FILE (unsigned char *)"SGI_ACL_FILE" | 
| 40 | #define SGI_ACL_DEFAULT "SGI_ACL_DEFAULT" | 40 | #define SGI_ACL_DEFAULT (unsigned char *)"SGI_ACL_DEFAULT" | 
| 41 | #define SGI_ACL_FILE_SIZE (sizeof(SGI_ACL_FILE)-1) | 41 | #define SGI_ACL_FILE_SIZE (sizeof(SGI_ACL_FILE)-1) | 
| 42 | #define SGI_ACL_DEFAULT_SIZE (sizeof(SGI_ACL_DEFAULT)-1) | 42 | #define SGI_ACL_DEFAULT_SIZE (sizeof(SGI_ACL_DEFAULT)-1) | 
| 43 | 43 | ||
diff --git a/fs/xfs/xfs_ag.h b/fs/xfs/xfs_ag.h index 6702bd865811..b1a5a1ff88ea 100644 --- a/fs/xfs/xfs_ag.h +++ b/fs/xfs/xfs_ag.h  | |||
| @@ -187,17 +187,13 @@ typedef struct xfs_perag_busy { | |||
| 187 | /* | 187 | /* | 
| 188 | * Per-ag incore structure, copies of information in agf and agi, | 188 | * Per-ag incore structure, copies of information in agf and agi, | 
| 189 | * to improve the performance of allocation group selection. | 189 | * to improve the performance of allocation group selection. | 
| 190 | * | ||
| 191 | * pick sizes which fit in allocation buckets well | ||
| 192 | */ | 190 | */ | 
| 193 | #if (BITS_PER_LONG == 32) | ||
| 194 | #define XFS_PAGB_NUM_SLOTS 84 | ||
| 195 | #elif (BITS_PER_LONG == 64) | ||
| 196 | #define XFS_PAGB_NUM_SLOTS 128 | 191 | #define XFS_PAGB_NUM_SLOTS 128 | 
| 197 | #endif | ||
| 198 | 192 | ||
| 199 | typedef struct xfs_perag | 193 | typedef struct xfs_perag { | 
| 200 | { | 194 | struct xfs_mount *pag_mount; /* owner filesystem */ | 
| 195 | xfs_agnumber_t pag_agno; /* AG this structure belongs to */ | ||
| 196 | atomic_t pag_ref; /* perag reference count */ | ||
| 201 | char pagf_init; /* this agf's entry is initialized */ | 197 | char pagf_init; /* this agf's entry is initialized */ | 
| 202 | char pagi_init; /* this agi's entry is initialized */ | 198 | char pagi_init; /* this agi's entry is initialized */ | 
| 203 | char pagf_metadata; /* the agf is preferred to be metadata */ | 199 | char pagf_metadata; /* the agf is preferred to be metadata */ | 
| @@ -210,8 +206,6 @@ typedef struct xfs_perag | |||
| 210 | __uint32_t pagf_btreeblks; /* # of blocks held in AGF btrees */ | 206 | __uint32_t pagf_btreeblks; /* # of blocks held in AGF btrees */ | 
| 211 | xfs_agino_t pagi_freecount; /* number of free inodes */ | 207 | xfs_agino_t pagi_freecount; /* number of free inodes */ | 
| 212 | xfs_agino_t pagi_count; /* number of allocated inodes */ | 208 | xfs_agino_t pagi_count; /* number of allocated inodes */ | 
| 213 | int pagb_count; /* pagb slots in use */ | ||
| 214 | xfs_perag_busy_t *pagb_list; /* unstable blocks */ | ||
| 215 | 209 | ||
| 216 | /* | 210 | /* | 
| 217 | * Inode allocation search lookup optimisation. | 211 | * Inode allocation search lookup optimisation. | 
| @@ -230,6 +224,8 @@ typedef struct xfs_perag | |||
| 230 | rwlock_t pag_ici_lock; /* incore inode lock */ | 224 | rwlock_t pag_ici_lock; /* incore inode lock */ | 
| 231 | struct radix_tree_root pag_ici_root; /* incore inode cache root */ | 225 | struct radix_tree_root pag_ici_root; /* incore inode cache root */ | 
| 232 | #endif | 226 | #endif | 
| 227 | int pagb_count; /* pagb slots in use */ | ||
| 228 | xfs_perag_busy_t pagb_list[XFS_PAGB_NUM_SLOTS]; /* unstable blocks */ | ||
| 233 | } xfs_perag_t; | 229 | } xfs_perag_t; | 
| 234 | 230 | ||
| 235 | /* | 231 | /* | 
diff --git a/fs/xfs/xfs_alloc.c b/fs/xfs/xfs_alloc.c index 275b1f4f9430..94cddbfb2560 100644 --- a/fs/xfs/xfs_alloc.c +++ b/fs/xfs/xfs_alloc.c  | |||
| @@ -1662,11 +1662,13 @@ xfs_free_ag_extent( | |||
| 1662 | xfs_agf_t *agf; | 1662 | xfs_agf_t *agf; | 
| 1663 | xfs_perag_t *pag; /* per allocation group data */ | 1663 | xfs_perag_t *pag; /* per allocation group data */ | 
| 1664 | 1664 | ||
| 1665 | pag = xfs_perag_get(mp, agno); | ||
| 1666 | pag->pagf_freeblks += len; | ||
| 1667 | xfs_perag_put(pag); | ||
| 1668 | |||
| 1665 | agf = XFS_BUF_TO_AGF(agbp); | 1669 | agf = XFS_BUF_TO_AGF(agbp); | 
| 1666 | pag = &mp->m_perag[agno]; | ||
| 1667 | be32_add_cpu(&agf->agf_freeblks, len); | 1670 | be32_add_cpu(&agf->agf_freeblks, len); | 
| 1668 | xfs_trans_agblocks_delta(tp, len); | 1671 | xfs_trans_agblocks_delta(tp, len); | 
| 1669 | pag->pagf_freeblks += len; | ||
| 1670 | XFS_WANT_CORRUPTED_GOTO( | 1672 | XFS_WANT_CORRUPTED_GOTO( | 
| 1671 | be32_to_cpu(agf->agf_freeblks) <= | 1673 | be32_to_cpu(agf->agf_freeblks) <= | 
| 1672 | be32_to_cpu(agf->agf_length), | 1674 | be32_to_cpu(agf->agf_length), | 
| @@ -1969,10 +1971,12 @@ xfs_alloc_get_freelist( | |||
| 1969 | xfs_trans_brelse(tp, agflbp); | 1971 | xfs_trans_brelse(tp, agflbp); | 
| 1970 | if (be32_to_cpu(agf->agf_flfirst) == XFS_AGFL_SIZE(mp)) | 1972 | if (be32_to_cpu(agf->agf_flfirst) == XFS_AGFL_SIZE(mp)) | 
| 1971 | agf->agf_flfirst = 0; | 1973 | agf->agf_flfirst = 0; | 
| 1972 | pag = &mp->m_perag[be32_to_cpu(agf->agf_seqno)]; | 1974 | |
| 1975 | pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno)); | ||
| 1973 | be32_add_cpu(&agf->agf_flcount, -1); | 1976 | be32_add_cpu(&agf->agf_flcount, -1); | 
| 1974 | xfs_trans_agflist_delta(tp, -1); | 1977 | xfs_trans_agflist_delta(tp, -1); | 
| 1975 | pag->pagf_flcount--; | 1978 | pag->pagf_flcount--; | 
| 1979 | xfs_perag_put(pag); | ||
| 1976 | 1980 | ||
| 1977 | logflags = XFS_AGF_FLFIRST | XFS_AGF_FLCOUNT; | 1981 | logflags = XFS_AGF_FLFIRST | XFS_AGF_FLCOUNT; | 
| 1978 | if (btreeblk) { | 1982 | if (btreeblk) { | 
| @@ -2078,7 +2082,8 @@ xfs_alloc_put_freelist( | |||
| 2078 | be32_add_cpu(&agf->agf_fllast, 1); | 2082 | be32_add_cpu(&agf->agf_fllast, 1); | 
| 2079 | if (be32_to_cpu(agf->agf_fllast) == XFS_AGFL_SIZE(mp)) | 2083 | if (be32_to_cpu(agf->agf_fllast) == XFS_AGFL_SIZE(mp)) | 
| 2080 | agf->agf_fllast = 0; | 2084 | agf->agf_fllast = 0; | 
| 2081 | pag = &mp->m_perag[be32_to_cpu(agf->agf_seqno)]; | 2085 | |
| 2086 | pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno)); | ||
| 2082 | be32_add_cpu(&agf->agf_flcount, 1); | 2087 | be32_add_cpu(&agf->agf_flcount, 1); | 
| 2083 | xfs_trans_agflist_delta(tp, 1); | 2088 | xfs_trans_agflist_delta(tp, 1); | 
| 2084 | pag->pagf_flcount++; | 2089 | pag->pagf_flcount++; | 
| @@ -2089,6 +2094,7 @@ xfs_alloc_put_freelist( | |||
| 2089 | pag->pagf_btreeblks--; | 2094 | pag->pagf_btreeblks--; | 
| 2090 | logflags |= XFS_AGF_BTREEBLKS; | 2095 | logflags |= XFS_AGF_BTREEBLKS; | 
| 2091 | } | 2096 | } | 
| 2097 | xfs_perag_put(pag); | ||
| 2092 | 2098 | ||
| 2093 | xfs_alloc_log_agf(tp, agbp, logflags); | 2099 | xfs_alloc_log_agf(tp, agbp, logflags); | 
| 2094 | 2100 | ||
| @@ -2152,7 +2158,6 @@ xfs_read_agf( | |||
| 2152 | xfs_trans_brelse(tp, *bpp); | 2158 | xfs_trans_brelse(tp, *bpp); | 
| 2153 | return XFS_ERROR(EFSCORRUPTED); | 2159 | return XFS_ERROR(EFSCORRUPTED); | 
| 2154 | } | 2160 | } | 
| 2155 | |||
| 2156 | XFS_BUF_SET_VTYPE_REF(*bpp, B_FS_AGF, XFS_AGF_REF); | 2161 | XFS_BUF_SET_VTYPE_REF(*bpp, B_FS_AGF, XFS_AGF_REF); | 
| 2157 | return 0; | 2162 | return 0; | 
| 2158 | } | 2163 | } | 
| @@ -2175,7 +2180,7 @@ xfs_alloc_read_agf( | |||
| 2175 | ASSERT(agno != NULLAGNUMBER); | 2180 | ASSERT(agno != NULLAGNUMBER); | 
| 2176 | 2181 | ||
| 2177 | error = xfs_read_agf(mp, tp, agno, | 2182 | error = xfs_read_agf(mp, tp, agno, | 
| 2178 | (flags & XFS_ALLOC_FLAG_TRYLOCK) ? XFS_BUF_TRYLOCK : 0, | 2183 | (flags & XFS_ALLOC_FLAG_TRYLOCK) ? XBF_TRYLOCK : 0, | 
| 2179 | bpp); | 2184 | bpp); | 
| 2180 | if (error) | 2185 | if (error) | 
| 2181 | return error; | 2186 | return error; | 
| @@ -2184,7 +2189,7 @@ xfs_alloc_read_agf( | |||
| 2184 | ASSERT(!XFS_BUF_GETERROR(*bpp)); | 2189 | ASSERT(!XFS_BUF_GETERROR(*bpp)); | 
| 2185 | 2190 | ||
| 2186 | agf = XFS_BUF_TO_AGF(*bpp); | 2191 | agf = XFS_BUF_TO_AGF(*bpp); | 
| 2187 | pag = &mp->m_perag[agno]; | 2192 | pag = xfs_perag_get(mp, agno); | 
| 2188 | if (!pag->pagf_init) { | 2193 | if (!pag->pagf_init) { | 
| 2189 | pag->pagf_freeblks = be32_to_cpu(agf->agf_freeblks); | 2194 | pag->pagf_freeblks = be32_to_cpu(agf->agf_freeblks); | 
| 2190 | pag->pagf_btreeblks = be32_to_cpu(agf->agf_btreeblks); | 2195 | pag->pagf_btreeblks = be32_to_cpu(agf->agf_btreeblks); | 
| @@ -2195,8 +2200,8 @@ xfs_alloc_read_agf( | |||
| 2195 | pag->pagf_levels[XFS_BTNUM_CNTi] = | 2200 | pag->pagf_levels[XFS_BTNUM_CNTi] = | 
| 2196 | be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]); | 2201 | be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]); | 
| 2197 | spin_lock_init(&pag->pagb_lock); | 2202 | spin_lock_init(&pag->pagb_lock); | 
| 2198 | pag->pagb_list = kmem_zalloc(XFS_PAGB_NUM_SLOTS * | 2203 | pag->pagb_count = 0; | 
| 2199 | sizeof(xfs_perag_busy_t), KM_SLEEP); | 2204 | memset(pag->pagb_list, 0, sizeof(pag->pagb_list)); | 
| 2200 | pag->pagf_init = 1; | 2205 | pag->pagf_init = 1; | 
| 2201 | } | 2206 | } | 
| 2202 | #ifdef DEBUG | 2207 | #ifdef DEBUG | 
| @@ -2211,6 +2216,7 @@ xfs_alloc_read_agf( | |||
| 2211 | be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi])); | 2216 | be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi])); | 
| 2212 | } | 2217 | } | 
| 2213 | #endif | 2218 | #endif | 
| 2219 | xfs_perag_put(pag); | ||
| 2214 | return 0; | 2220 | return 0; | 
| 2215 | } | 2221 | } | 
| 2216 | 2222 | ||
| @@ -2270,8 +2276,7 @@ xfs_alloc_vextent( | |||
| 2270 | * These three force us into a single a.g. | 2276 | * These three force us into a single a.g. | 
| 2271 | */ | 2277 | */ | 
| 2272 | args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno); | 2278 | args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno); | 
| 2273 | down_read(&mp->m_peraglock); | 2279 | args->pag = xfs_perag_get(mp, args->agno); | 
| 2274 | args->pag = &mp->m_perag[args->agno]; | ||
| 2275 | args->minleft = 0; | 2280 | args->minleft = 0; | 
| 2276 | error = xfs_alloc_fix_freelist(args, 0); | 2281 | error = xfs_alloc_fix_freelist(args, 0); | 
| 2277 | args->minleft = minleft; | 2282 | args->minleft = minleft; | 
| @@ -2280,14 +2285,12 @@ xfs_alloc_vextent( | |||
| 2280 | goto error0; | 2285 | goto error0; | 
| 2281 | } | 2286 | } | 
| 2282 | if (!args->agbp) { | 2287 | if (!args->agbp) { | 
| 2283 | up_read(&mp->m_peraglock); | ||
| 2284 | trace_xfs_alloc_vextent_noagbp(args); | 2288 | trace_xfs_alloc_vextent_noagbp(args); | 
| 2285 | break; | 2289 | break; | 
| 2286 | } | 2290 | } | 
| 2287 | args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno); | 2291 | args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno); | 
| 2288 | if ((error = xfs_alloc_ag_vextent(args))) | 2292 | if ((error = xfs_alloc_ag_vextent(args))) | 
| 2289 | goto error0; | 2293 | goto error0; | 
| 2290 | up_read(&mp->m_peraglock); | ||
| 2291 | break; | 2294 | break; | 
| 2292 | case XFS_ALLOCTYPE_START_BNO: | 2295 | case XFS_ALLOCTYPE_START_BNO: | 
| 2293 | /* | 2296 | /* | 
| @@ -2339,9 +2342,8 @@ xfs_alloc_vextent( | |||
| 2339 | * Loop over allocation groups twice; first time with | 2342 | * Loop over allocation groups twice; first time with | 
| 2340 | * trylock set, second time without. | 2343 | * trylock set, second time without. | 
| 2341 | */ | 2344 | */ | 
| 2342 | down_read(&mp->m_peraglock); | ||
| 2343 | for (;;) { | 2345 | for (;;) { | 
| 2344 | args->pag = &mp->m_perag[args->agno]; | 2346 | args->pag = xfs_perag_get(mp, args->agno); | 
| 2345 | if (no_min) args->minleft = 0; | 2347 | if (no_min) args->minleft = 0; | 
| 2346 | error = xfs_alloc_fix_freelist(args, flags); | 2348 | error = xfs_alloc_fix_freelist(args, flags); | 
| 2347 | args->minleft = minleft; | 2349 | args->minleft = minleft; | 
| @@ -2400,8 +2402,8 @@ xfs_alloc_vextent( | |||
| 2400 | } | 2402 | } | 
| 2401 | } | 2403 | } | 
| 2402 | } | 2404 | } | 
| 2405 | xfs_perag_put(args->pag); | ||
| 2403 | } | 2406 | } | 
| 2404 | up_read(&mp->m_peraglock); | ||
| 2405 | if (bump_rotor || (type == XFS_ALLOCTYPE_ANY_AG)) { | 2407 | if (bump_rotor || (type == XFS_ALLOCTYPE_ANY_AG)) { | 
| 2406 | if (args->agno == sagno) | 2408 | if (args->agno == sagno) | 
| 2407 | mp->m_agfrotor = (mp->m_agfrotor + 1) % | 2409 | mp->m_agfrotor = (mp->m_agfrotor + 1) % | 
| @@ -2427,9 +2429,10 @@ xfs_alloc_vextent( | |||
| 2427 | args->len); | 2429 | args->len); | 
| 2428 | #endif | 2430 | #endif | 
| 2429 | } | 2431 | } | 
| 2432 | xfs_perag_put(args->pag); | ||
| 2430 | return 0; | 2433 | return 0; | 
| 2431 | error0: | 2434 | error0: | 
| 2432 | up_read(&mp->m_peraglock); | 2435 | xfs_perag_put(args->pag); | 
| 2433 | return error; | 2436 | return error; | 
| 2434 | } | 2437 | } | 
| 2435 | 2438 | ||
| @@ -2454,8 +2457,7 @@ xfs_free_extent( | |||
| 2454 | args.agno = XFS_FSB_TO_AGNO(args.mp, bno); | 2457 | args.agno = XFS_FSB_TO_AGNO(args.mp, bno); | 
| 2455 | ASSERT(args.agno < args.mp->m_sb.sb_agcount); | 2458 | ASSERT(args.agno < args.mp->m_sb.sb_agcount); | 
| 2456 | args.agbno = XFS_FSB_TO_AGBNO(args.mp, bno); | 2459 | args.agbno = XFS_FSB_TO_AGBNO(args.mp, bno); | 
| 2457 | down_read(&args.mp->m_peraglock); | 2460 | args.pag = xfs_perag_get(args.mp, args.agno); | 
| 2458 | args.pag = &args.mp->m_perag[args.agno]; | ||
| 2459 | if ((error = xfs_alloc_fix_freelist(&args, XFS_ALLOC_FLAG_FREEING))) | 2461 | if ((error = xfs_alloc_fix_freelist(&args, XFS_ALLOC_FLAG_FREEING))) | 
| 2460 | goto error0; | 2462 | goto error0; | 
| 2461 | #ifdef DEBUG | 2463 | #ifdef DEBUG | 
| @@ -2465,7 +2467,7 @@ xfs_free_extent( | |||
| 2465 | #endif | 2467 | #endif | 
| 2466 | error = xfs_free_ag_extent(tp, args.agbp, args.agno, args.agbno, len, 0); | 2468 | error = xfs_free_ag_extent(tp, args.agbp, args.agno, args.agbno, len, 0); | 
| 2467 | error0: | 2469 | error0: | 
| 2468 | up_read(&args.mp->m_peraglock); | 2470 | xfs_perag_put(args.pag); | 
| 2469 | return error; | 2471 | return error; | 
| 2470 | } | 2472 | } | 
| 2471 | 2473 | ||
| @@ -2486,15 +2488,15 @@ xfs_alloc_mark_busy(xfs_trans_t *tp, | |||
| 2486 | xfs_agblock_t bno, | 2488 | xfs_agblock_t bno, | 
| 2487 | xfs_extlen_t len) | 2489 | xfs_extlen_t len) | 
| 2488 | { | 2490 | { | 
| 2489 | xfs_mount_t *mp; | ||
| 2490 | xfs_perag_busy_t *bsy; | 2491 | xfs_perag_busy_t *bsy; | 
| 2492 | struct xfs_perag *pag; | ||
| 2491 | int n; | 2493 | int n; | 
| 2492 | 2494 | ||
| 2493 | mp = tp->t_mountp; | 2495 | pag = xfs_perag_get(tp->t_mountp, agno); | 
| 2494 | spin_lock(&mp->m_perag[agno].pagb_lock); | 2496 | spin_lock(&pag->pagb_lock); | 
| 2495 | 2497 | ||
| 2496 | /* search pagb_list for an open slot */ | 2498 | /* search pagb_list for an open slot */ | 
| 2497 | for (bsy = mp->m_perag[agno].pagb_list, n = 0; | 2499 | for (bsy = pag->pagb_list, n = 0; | 
| 2498 | n < XFS_PAGB_NUM_SLOTS; | 2500 | n < XFS_PAGB_NUM_SLOTS; | 
| 2499 | bsy++, n++) { | 2501 | bsy++, n++) { | 
| 2500 | if (bsy->busy_tp == NULL) { | 2502 | if (bsy->busy_tp == NULL) { | 
| @@ -2502,11 +2504,11 @@ xfs_alloc_mark_busy(xfs_trans_t *tp, | |||
| 2502 | } | 2504 | } | 
| 2503 | } | 2505 | } | 
| 2504 | 2506 | ||
| 2505 | trace_xfs_alloc_busy(mp, agno, bno, len, n); | 2507 | trace_xfs_alloc_busy(tp->t_mountp, agno, bno, len, n); | 
| 2506 | 2508 | ||
| 2507 | if (n < XFS_PAGB_NUM_SLOTS) { | 2509 | if (n < XFS_PAGB_NUM_SLOTS) { | 
| 2508 | bsy = &mp->m_perag[agno].pagb_list[n]; | 2510 | bsy = &pag->pagb_list[n]; | 
| 2509 | mp->m_perag[agno].pagb_count++; | 2511 | pag->pagb_count++; | 
| 2510 | bsy->busy_start = bno; | 2512 | bsy->busy_start = bno; | 
| 2511 | bsy->busy_length = len; | 2513 | bsy->busy_length = len; | 
| 2512 | bsy->busy_tp = tp; | 2514 | bsy->busy_tp = tp; | 
| @@ -2521,7 +2523,8 @@ xfs_alloc_mark_busy(xfs_trans_t *tp, | |||
| 2521 | xfs_trans_set_sync(tp); | 2523 | xfs_trans_set_sync(tp); | 
| 2522 | } | 2524 | } | 
| 2523 | 2525 | ||
| 2524 | spin_unlock(&mp->m_perag[agno].pagb_lock); | 2526 | spin_unlock(&pag->pagb_lock); | 
| 2527 | xfs_perag_put(pag); | ||
| 2525 | } | 2528 | } | 
| 2526 | 2529 | ||
| 2527 | void | 2530 | void | 
| @@ -2529,24 +2532,23 @@ xfs_alloc_clear_busy(xfs_trans_t *tp, | |||
| 2529 | xfs_agnumber_t agno, | 2532 | xfs_agnumber_t agno, | 
| 2530 | int idx) | 2533 | int idx) | 
| 2531 | { | 2534 | { | 
| 2532 | xfs_mount_t *mp; | 2535 | struct xfs_perag *pag; | 
| 2533 | xfs_perag_busy_t *list; | 2536 | xfs_perag_busy_t *list; | 
| 2534 | 2537 | ||
| 2535 | mp = tp->t_mountp; | ||
| 2536 | |||
| 2537 | spin_lock(&mp->m_perag[agno].pagb_lock); | ||
| 2538 | list = mp->m_perag[agno].pagb_list; | ||
| 2539 | |||
| 2540 | ASSERT(idx < XFS_PAGB_NUM_SLOTS); | 2538 | ASSERT(idx < XFS_PAGB_NUM_SLOTS); | 
| 2539 | pag = xfs_perag_get(tp->t_mountp, agno); | ||
| 2540 | spin_lock(&pag->pagb_lock); | ||
| 2541 | list = pag->pagb_list; | ||
| 2541 | 2542 | ||
| 2542 | trace_xfs_alloc_unbusy(mp, agno, idx, list[idx].busy_tp == tp); | 2543 | trace_xfs_alloc_unbusy(tp->t_mountp, agno, idx, list[idx].busy_tp == tp); | 
| 2543 | 2544 | ||
| 2544 | if (list[idx].busy_tp == tp) { | 2545 | if (list[idx].busy_tp == tp) { | 
| 2545 | list[idx].busy_tp = NULL; | 2546 | list[idx].busy_tp = NULL; | 
| 2546 | mp->m_perag[agno].pagb_count--; | 2547 | pag->pagb_count--; | 
| 2547 | } | 2548 | } | 
| 2548 | 2549 | ||
| 2549 | spin_unlock(&mp->m_perag[agno].pagb_lock); | 2550 | spin_unlock(&pag->pagb_lock); | 
| 2551 | xfs_perag_put(pag); | ||
| 2550 | } | 2552 | } | 
| 2551 | 2553 | ||
| 2552 | 2554 | ||
| @@ -2560,17 +2562,15 @@ xfs_alloc_search_busy(xfs_trans_t *tp, | |||
| 2560 | xfs_agblock_t bno, | 2562 | xfs_agblock_t bno, | 
| 2561 | xfs_extlen_t len) | 2563 | xfs_extlen_t len) | 
| 2562 | { | 2564 | { | 
| 2563 | xfs_mount_t *mp; | 2565 | struct xfs_perag *pag; | 
| 2564 | xfs_perag_busy_t *bsy; | 2566 | xfs_perag_busy_t *bsy; | 
| 2565 | xfs_agblock_t uend, bend; | 2567 | xfs_agblock_t uend, bend; | 
| 2566 | xfs_lsn_t lsn = 0; | 2568 | xfs_lsn_t lsn = 0; | 
| 2567 | int cnt; | 2569 | int cnt; | 
| 2568 | 2570 | ||
| 2569 | mp = tp->t_mountp; | 2571 | pag = xfs_perag_get(tp->t_mountp, agno); | 
| 2570 | 2572 | spin_lock(&pag->pagb_lock); | |
| 2571 | spin_lock(&mp->m_perag[agno].pagb_lock); | 2573 | cnt = pag->pagb_count; | 
| 2572 | |||
| 2573 | uend = bno + len - 1; | ||
| 2574 | 2574 | ||
| 2575 | /* | 2575 | /* | 
| 2576 | * search pagb_list for this slot, skipping open slots. We have to | 2576 | * search pagb_list for this slot, skipping open slots. We have to | 
| @@ -2578,8 +2578,9 @@ xfs_alloc_search_busy(xfs_trans_t *tp, | |||
| 2578 | * we have to get the most recent LSN for the log force to push out | 2578 | * we have to get the most recent LSN for the log force to push out | 
| 2579 | * all the transactions that span the range. | 2579 | * all the transactions that span the range. | 
| 2580 | */ | 2580 | */ | 
| 2581 | for (cnt = 0; cnt < mp->m_perag[agno].pagb_count; cnt++) { | 2581 | uend = bno + len - 1; | 
| 2582 | bsy = &mp->m_perag[agno].pagb_list[cnt]; | 2582 | for (cnt = 0; cnt < pag->pagb_count; cnt++) { | 
| 2583 | bsy = &pag->pagb_list[cnt]; | ||
| 2583 | if (!bsy->busy_tp) | 2584 | if (!bsy->busy_tp) | 
| 2584 | continue; | 2585 | continue; | 
| 2585 | 2586 | ||
| @@ -2591,7 +2592,8 @@ xfs_alloc_search_busy(xfs_trans_t *tp, | |||
| 2591 | if (XFS_LSN_CMP(bsy->busy_tp->t_commit_lsn, lsn) > 0) | 2592 | if (XFS_LSN_CMP(bsy->busy_tp->t_commit_lsn, lsn) > 0) | 
| 2592 | lsn = bsy->busy_tp->t_commit_lsn; | 2593 | lsn = bsy->busy_tp->t_commit_lsn; | 
| 2593 | } | 2594 | } | 
| 2594 | spin_unlock(&mp->m_perag[agno].pagb_lock); | 2595 | spin_unlock(&pag->pagb_lock); | 
| 2596 | xfs_perag_put(pag); | ||
| 2595 | trace_xfs_alloc_busysearch(tp->t_mountp, agno, bno, len, lsn); | 2597 | trace_xfs_alloc_busysearch(tp->t_mountp, agno, bno, len, lsn); | 
| 2596 | 2598 | ||
| 2597 | /* | 2599 | /* | 
| @@ -2599,5 +2601,5 @@ xfs_alloc_search_busy(xfs_trans_t *tp, | |||
| 2599 | * transaction that freed the block | 2601 | * transaction that freed the block | 
| 2600 | */ | 2602 | */ | 
| 2601 | if (lsn) | 2603 | if (lsn) | 
| 2602 | xfs_log_force(mp, lsn, XFS_LOG_FORCE|XFS_LOG_SYNC); | 2604 | xfs_log_force_lsn(tp->t_mountp, lsn, XFS_LOG_SYNC); | 
| 2603 | } | 2605 | } | 
diff --git a/fs/xfs/xfs_alloc_btree.c b/fs/xfs/xfs_alloc_btree.c index adbd9141aea1..b726e10d2c1c 100644 --- a/fs/xfs/xfs_alloc_btree.c +++ b/fs/xfs/xfs_alloc_btree.c  | |||
| @@ -61,12 +61,14 @@ xfs_allocbt_set_root( | |||
| 61 | struct xfs_agf *agf = XFS_BUF_TO_AGF(agbp); | 61 | struct xfs_agf *agf = XFS_BUF_TO_AGF(agbp); | 
| 62 | xfs_agnumber_t seqno = be32_to_cpu(agf->agf_seqno); | 62 | xfs_agnumber_t seqno = be32_to_cpu(agf->agf_seqno); | 
| 63 | int btnum = cur->bc_btnum; | 63 | int btnum = cur->bc_btnum; | 
| 64 | struct xfs_perag *pag = xfs_perag_get(cur->bc_mp, seqno); | ||
| 64 | 65 | ||
| 65 | ASSERT(ptr->s != 0); | 66 | ASSERT(ptr->s != 0); | 
| 66 | 67 | ||
| 67 | agf->agf_roots[btnum] = ptr->s; | 68 | agf->agf_roots[btnum] = ptr->s; | 
| 68 | be32_add_cpu(&agf->agf_levels[btnum], inc); | 69 | be32_add_cpu(&agf->agf_levels[btnum], inc); | 
| 69 | cur->bc_mp->m_perag[seqno].pagf_levels[btnum] += inc; | 70 | pag->pagf_levels[btnum] += inc; | 
| 71 | xfs_perag_put(pag); | ||
| 70 | 72 | ||
| 71 | xfs_alloc_log_agf(cur->bc_tp, agbp, XFS_AGF_ROOTS | XFS_AGF_LEVELS); | 73 | xfs_alloc_log_agf(cur->bc_tp, agbp, XFS_AGF_ROOTS | XFS_AGF_LEVELS); | 
| 72 | } | 74 | } | 
| @@ -150,6 +152,7 @@ xfs_allocbt_update_lastrec( | |||
| 150 | { | 152 | { | 
| 151 | struct xfs_agf *agf = XFS_BUF_TO_AGF(cur->bc_private.a.agbp); | 153 | struct xfs_agf *agf = XFS_BUF_TO_AGF(cur->bc_private.a.agbp); | 
| 152 | xfs_agnumber_t seqno = be32_to_cpu(agf->agf_seqno); | 154 | xfs_agnumber_t seqno = be32_to_cpu(agf->agf_seqno); | 
| 155 | struct xfs_perag *pag; | ||
| 153 | __be32 len; | 156 | __be32 len; | 
| 154 | int numrecs; | 157 | int numrecs; | 
| 155 | 158 | ||
| @@ -193,7 +196,9 @@ xfs_allocbt_update_lastrec( | |||
| 193 | } | 196 | } | 
| 194 | 197 | ||
| 195 | agf->agf_longest = len; | 198 | agf->agf_longest = len; | 
| 196 | cur->bc_mp->m_perag[seqno].pagf_longest = be32_to_cpu(len); | 199 | pag = xfs_perag_get(cur->bc_mp, seqno); | 
| 200 | pag->pagf_longest = be32_to_cpu(len); | ||
| 201 | xfs_perag_put(pag); | ||
| 197 | xfs_alloc_log_agf(cur->bc_tp, cur->bc_private.a.agbp, XFS_AGF_LONGEST); | 202 | xfs_alloc_log_agf(cur->bc_tp, cur->bc_private.a.agbp, XFS_AGF_LONGEST); | 
| 198 | } | 203 | } | 
| 199 | 204 | ||
diff --git a/fs/xfs/xfs_attr.c b/fs/xfs/xfs_attr.c index e953b6cfb2a8..b9c196a53c42 100644 --- a/fs/xfs/xfs_attr.c +++ b/fs/xfs/xfs_attr.c  | |||
| @@ -93,12 +93,12 @@ STATIC int xfs_attr_rmtval_remove(xfs_da_args_t *args); | |||
| 93 | STATIC int | 93 | STATIC int | 
| 94 | xfs_attr_name_to_xname( | 94 | xfs_attr_name_to_xname( | 
| 95 | struct xfs_name *xname, | 95 | struct xfs_name *xname, | 
| 96 | const char *aname) | 96 | const unsigned char *aname) | 
| 97 | { | 97 | { | 
| 98 | if (!aname) | 98 | if (!aname) | 
| 99 | return EINVAL; | 99 | return EINVAL; | 
| 100 | xname->name = aname; | 100 | xname->name = aname; | 
| 101 | xname->len = strlen(aname); | 101 | xname->len = strlen((char *)aname); | 
| 102 | if (xname->len >= MAXNAMELEN) | 102 | if (xname->len >= MAXNAMELEN) | 
| 103 | return EFAULT; /* match IRIX behaviour */ | 103 | return EFAULT; /* match IRIX behaviour */ | 
| 104 | 104 | ||
| @@ -124,7 +124,7 @@ STATIC int | |||
| 124 | xfs_attr_get_int( | 124 | xfs_attr_get_int( | 
| 125 | struct xfs_inode *ip, | 125 | struct xfs_inode *ip, | 
| 126 | struct xfs_name *name, | 126 | struct xfs_name *name, | 
| 127 | char *value, | 127 | unsigned char *value, | 
| 128 | int *valuelenp, | 128 | int *valuelenp, | 
| 129 | int flags) | 129 | int flags) | 
| 130 | { | 130 | { | 
| @@ -171,8 +171,8 @@ xfs_attr_get_int( | |||
| 171 | int | 171 | int | 
| 172 | xfs_attr_get( | 172 | xfs_attr_get( | 
| 173 | xfs_inode_t *ip, | 173 | xfs_inode_t *ip, | 
| 174 | const char *name, | 174 | const unsigned char *name, | 
| 175 | char *value, | 175 | unsigned char *value, | 
| 176 | int *valuelenp, | 176 | int *valuelenp, | 
| 177 | int flags) | 177 | int flags) | 
| 178 | { | 178 | { | 
| @@ -197,7 +197,7 @@ xfs_attr_get( | |||
| 197 | /* | 197 | /* | 
| 198 | * Calculate how many blocks we need for the new attribute, | 198 | * Calculate how many blocks we need for the new attribute, | 
| 199 | */ | 199 | */ | 
| 200 | int | 200 | STATIC int | 
| 201 | xfs_attr_calc_size( | 201 | xfs_attr_calc_size( | 
| 202 | struct xfs_inode *ip, | 202 | struct xfs_inode *ip, | 
| 203 | int namelen, | 203 | int namelen, | 
| @@ -235,8 +235,12 @@ xfs_attr_calc_size( | |||
| 235 | } | 235 | } | 
| 236 | 236 | ||
| 237 | STATIC int | 237 | STATIC int | 
| 238 | xfs_attr_set_int(xfs_inode_t *dp, struct xfs_name *name, | 238 | xfs_attr_set_int( | 
| 239 | char *value, int valuelen, int flags) | 239 | struct xfs_inode *dp, | 
| 240 | struct xfs_name *name, | ||
| 241 | unsigned char *value, | ||
| 242 | int valuelen, | ||
| 243 | int flags) | ||
| 240 | { | 244 | { | 
| 241 | xfs_da_args_t args; | 245 | xfs_da_args_t args; | 
| 242 | xfs_fsblock_t firstblock; | 246 | xfs_fsblock_t firstblock; | 
| @@ -452,8 +456,8 @@ out: | |||
| 452 | int | 456 | int | 
| 453 | xfs_attr_set( | 457 | xfs_attr_set( | 
| 454 | xfs_inode_t *dp, | 458 | xfs_inode_t *dp, | 
| 455 | const char *name, | 459 | const unsigned char *name, | 
| 456 | char *value, | 460 | unsigned char *value, | 
| 457 | int valuelen, | 461 | int valuelen, | 
| 458 | int flags) | 462 | int flags) | 
| 459 | { | 463 | { | 
| @@ -600,7 +604,7 @@ out: | |||
| 600 | int | 604 | int | 
| 601 | xfs_attr_remove( | 605 | xfs_attr_remove( | 
| 602 | xfs_inode_t *dp, | 606 | xfs_inode_t *dp, | 
| 603 | const char *name, | 607 | const unsigned char *name, | 
| 604 | int flags) | 608 | int flags) | 
| 605 | { | 609 | { | 
| 606 | int error; | 610 | int error; | 
| @@ -669,9 +673,13 @@ xfs_attr_list_int(xfs_attr_list_context_t *context) | |||
| 669 | */ | 673 | */ | 
| 670 | /*ARGSUSED*/ | 674 | /*ARGSUSED*/ | 
| 671 | STATIC int | 675 | STATIC int | 
| 672 | xfs_attr_put_listent(xfs_attr_list_context_t *context, int flags, | 676 | xfs_attr_put_listent( | 
| 673 | char *name, int namelen, | 677 | xfs_attr_list_context_t *context, | 
| 674 | int valuelen, char *value) | 678 | int flags, | 
| 679 | unsigned char *name, | ||
| 680 | int namelen, | ||
| 681 | int valuelen, | ||
| 682 | unsigned char *value) | ||
| 675 | { | 683 | { | 
| 676 | struct attrlist *alist = (struct attrlist *)context->alist; | 684 | struct attrlist *alist = (struct attrlist *)context->alist; | 
| 677 | attrlist_ent_t *aep; | 685 | attrlist_ent_t *aep; | 
| @@ -1980,7 +1988,7 @@ xfs_attr_rmtval_get(xfs_da_args_t *args) | |||
| 1980 | xfs_bmbt_irec_t map[ATTR_RMTVALUE_MAPSIZE]; | 1988 | xfs_bmbt_irec_t map[ATTR_RMTVALUE_MAPSIZE]; | 
| 1981 | xfs_mount_t *mp; | 1989 | xfs_mount_t *mp; | 
| 1982 | xfs_daddr_t dblkno; | 1990 | xfs_daddr_t dblkno; | 
| 1983 | xfs_caddr_t dst; | 1991 | void *dst; | 
| 1984 | xfs_buf_t *bp; | 1992 | xfs_buf_t *bp; | 
| 1985 | int nmap, error, tmp, valuelen, blkcnt, i; | 1993 | int nmap, error, tmp, valuelen, blkcnt, i; | 
| 1986 | xfs_dablk_t lblkno; | 1994 | xfs_dablk_t lblkno; | 
| @@ -2007,15 +2015,14 @@ xfs_attr_rmtval_get(xfs_da_args_t *args) | |||
| 2007 | dblkno = XFS_FSB_TO_DADDR(mp, map[i].br_startblock); | 2015 | dblkno = XFS_FSB_TO_DADDR(mp, map[i].br_startblock); | 
| 2008 | blkcnt = XFS_FSB_TO_BB(mp, map[i].br_blockcount); | 2016 | blkcnt = XFS_FSB_TO_BB(mp, map[i].br_blockcount); | 
| 2009 | error = xfs_read_buf(mp, mp->m_ddev_targp, dblkno, | 2017 | error = xfs_read_buf(mp, mp->m_ddev_targp, dblkno, | 
| 2010 | blkcnt, | 2018 | blkcnt, XBF_LOCK | XBF_DONT_BLOCK, | 
| 2011 | XFS_BUF_LOCK | XBF_DONT_BLOCK, | ||
| 2012 | &bp); | 2019 | &bp); | 
| 2013 | if (error) | 2020 | if (error) | 
| 2014 | return(error); | 2021 | return(error); | 
| 2015 | 2022 | ||
| 2016 | tmp = (valuelen < XFS_BUF_SIZE(bp)) | 2023 | tmp = (valuelen < XFS_BUF_SIZE(bp)) | 
| 2017 | ? valuelen : XFS_BUF_SIZE(bp); | 2024 | ? valuelen : XFS_BUF_SIZE(bp); | 
| 2018 | xfs_biomove(bp, 0, tmp, dst, XFS_B_READ); | 2025 | xfs_biomove(bp, 0, tmp, dst, XBF_READ); | 
| 2019 | xfs_buf_relse(bp); | 2026 | xfs_buf_relse(bp); | 
| 2020 | dst += tmp; | 2027 | dst += tmp; | 
| 2021 | valuelen -= tmp; | 2028 | valuelen -= tmp; | 
| @@ -2039,7 +2046,7 @@ xfs_attr_rmtval_set(xfs_da_args_t *args) | |||
| 2039 | xfs_inode_t *dp; | 2046 | xfs_inode_t *dp; | 
| 2040 | xfs_bmbt_irec_t map; | 2047 | xfs_bmbt_irec_t map; | 
| 2041 | xfs_daddr_t dblkno; | 2048 | xfs_daddr_t dblkno; | 
| 2042 | xfs_caddr_t src; | 2049 | void *src; | 
| 2043 | xfs_buf_t *bp; | 2050 | xfs_buf_t *bp; | 
| 2044 | xfs_dablk_t lblkno; | 2051 | xfs_dablk_t lblkno; | 
| 2045 | int blkcnt, valuelen, nmap, error, tmp, committed; | 2052 | int blkcnt, valuelen, nmap, error, tmp, committed; | 
| @@ -2141,13 +2148,13 @@ xfs_attr_rmtval_set(xfs_da_args_t *args) | |||
| 2141 | blkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount); | 2148 | blkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount); | 
| 2142 | 2149 | ||
| 2143 | bp = xfs_buf_get(mp->m_ddev_targp, dblkno, blkcnt, | 2150 | bp = xfs_buf_get(mp->m_ddev_targp, dblkno, blkcnt, | 
| 2144 | XFS_BUF_LOCK | XBF_DONT_BLOCK); | 2151 | XBF_LOCK | XBF_DONT_BLOCK); | 
| 2145 | ASSERT(bp); | 2152 | ASSERT(bp); | 
| 2146 | ASSERT(!XFS_BUF_GETERROR(bp)); | 2153 | ASSERT(!XFS_BUF_GETERROR(bp)); | 
| 2147 | 2154 | ||
| 2148 | tmp = (valuelen < XFS_BUF_SIZE(bp)) ? valuelen : | 2155 | tmp = (valuelen < XFS_BUF_SIZE(bp)) ? valuelen : | 
| 2149 | XFS_BUF_SIZE(bp); | 2156 | XFS_BUF_SIZE(bp); | 
| 2150 | xfs_biomove(bp, 0, tmp, src, XFS_B_WRITE); | 2157 | xfs_biomove(bp, 0, tmp, src, XBF_WRITE); | 
| 2151 | if (tmp < XFS_BUF_SIZE(bp)) | 2158 | if (tmp < XFS_BUF_SIZE(bp)) | 
| 2152 | xfs_biozero(bp, tmp, XFS_BUF_SIZE(bp) - tmp); | 2159 | xfs_biozero(bp, tmp, XFS_BUF_SIZE(bp) - tmp); | 
| 2153 | if ((error = xfs_bwrite(mp, bp))) {/* GROT: NOTE: synchronous write */ | 2160 | if ((error = xfs_bwrite(mp, bp))) {/* GROT: NOTE: synchronous write */ | 
| @@ -2208,8 +2215,7 @@ xfs_attr_rmtval_remove(xfs_da_args_t *args) | |||
| 2208 | /* | 2215 | /* | 
| 2209 | * If the "remote" value is in the cache, remove it. | 2216 | * If the "remote" value is in the cache, remove it. | 
| 2210 | */ | 2217 | */ | 
| 2211 | bp = xfs_incore(mp->m_ddev_targp, dblkno, blkcnt, | 2218 | bp = xfs_incore(mp->m_ddev_targp, dblkno, blkcnt, XBF_TRYLOCK); | 
| 2212 | XFS_INCORE_TRYLOCK); | ||
| 2213 | if (bp) { | 2219 | if (bp) { | 
| 2214 | XFS_BUF_STALE(bp); | 2220 | XFS_BUF_STALE(bp); | 
| 2215 | XFS_BUF_UNDELAYWRITE(bp); | 2221 | XFS_BUF_UNDELAYWRITE(bp); | 
diff --git a/fs/xfs/xfs_attr.h b/fs/xfs/xfs_attr.h index 59b410ce69a1..e920d68ef509 100644 --- a/fs/xfs/xfs_attr.h +++ b/fs/xfs/xfs_attr.h  | |||
| @@ -113,7 +113,7 @@ typedef struct attrlist_cursor_kern { | |||
| 113 | 113 | ||
| 114 | 114 | ||
| 115 | typedef int (*put_listent_func_t)(struct xfs_attr_list_context *, int, | 115 | typedef int (*put_listent_func_t)(struct xfs_attr_list_context *, int, | 
| 116 | char *, int, int, char *); | 116 | unsigned char *, int, int, unsigned char *); | 
| 117 | 117 | ||
| 118 | typedef struct xfs_attr_list_context { | 118 | typedef struct xfs_attr_list_context { | 
| 119 | struct xfs_inode *dp; /* inode */ | 119 | struct xfs_inode *dp; /* inode */ | 
| @@ -139,7 +139,6 @@ typedef struct xfs_attr_list_context { | |||
| 139 | /* | 139 | /* | 
| 140 | * Overall external interface routines. | 140 | * Overall external interface routines. | 
| 141 | */ | 141 | */ | 
| 142 | int xfs_attr_calc_size(struct xfs_inode *, int, int, int *); | ||
| 143 | int xfs_attr_inactive(struct xfs_inode *dp); | 142 | int xfs_attr_inactive(struct xfs_inode *dp); | 
| 144 | int xfs_attr_rmtval_get(struct xfs_da_args *args); | 143 | int xfs_attr_rmtval_get(struct xfs_da_args *args); | 
| 145 | int xfs_attr_list_int(struct xfs_attr_list_context *); | 144 | int xfs_attr_list_int(struct xfs_attr_list_context *); | 
diff --git a/fs/xfs/xfs_attr_leaf.c b/fs/xfs/xfs_attr_leaf.c index baf41b5af756..a90ce74fc256 100644 --- a/fs/xfs/xfs_attr_leaf.c +++ b/fs/xfs/xfs_attr_leaf.c  | |||
| @@ -521,11 +521,11 @@ xfs_attr_shortform_to_leaf(xfs_da_args_t *args) | |||
| 521 | 521 | ||
| 522 | sfe = &sf->list[0]; | 522 | sfe = &sf->list[0]; | 
| 523 | for (i = 0; i < sf->hdr.count; i++) { | 523 | for (i = 0; i < sf->hdr.count; i++) { | 
| 524 | nargs.name = (char *)sfe->nameval; | 524 | nargs.name = sfe->nameval; | 
| 525 | nargs.namelen = sfe->namelen; | 525 | nargs.namelen = sfe->namelen; | 
| 526 | nargs.value = (char *)&sfe->nameval[nargs.namelen]; | 526 | nargs.value = &sfe->nameval[nargs.namelen]; | 
| 527 | nargs.valuelen = sfe->valuelen; | 527 | nargs.valuelen = sfe->valuelen; | 
| 528 | nargs.hashval = xfs_da_hashname((char *)sfe->nameval, | 528 | nargs.hashval = xfs_da_hashname(sfe->nameval, | 
| 529 | sfe->namelen); | 529 | sfe->namelen); | 
| 530 | nargs.flags = XFS_ATTR_NSP_ONDISK_TO_ARGS(sfe->flags); | 530 | nargs.flags = XFS_ATTR_NSP_ONDISK_TO_ARGS(sfe->flags); | 
| 531 | error = xfs_attr_leaf_lookup_int(bp, &nargs); /* set a->index */ | 531 | error = xfs_attr_leaf_lookup_int(bp, &nargs); /* set a->index */ | 
| @@ -612,10 +612,10 @@ xfs_attr_shortform_list(xfs_attr_list_context_t *context) | |||
| 612 | for (i = 0, sfe = &sf->list[0]; i < sf->hdr.count; i++) { | 612 | for (i = 0, sfe = &sf->list[0]; i < sf->hdr.count; i++) { | 
| 613 | error = context->put_listent(context, | 613 | error = context->put_listent(context, | 
| 614 | sfe->flags, | 614 | sfe->flags, | 
| 615 | (char *)sfe->nameval, | 615 | sfe->nameval, | 
| 616 | (int)sfe->namelen, | 616 | (int)sfe->namelen, | 
| 617 | (int)sfe->valuelen, | 617 | (int)sfe->valuelen, | 
| 618 | (char*)&sfe->nameval[sfe->namelen]); | 618 | &sfe->nameval[sfe->namelen]); | 
| 619 | 619 | ||
| 620 | /* | 620 | /* | 
| 621 | * Either search callback finished early or | 621 | * Either search callback finished early or | 
| @@ -659,8 +659,8 @@ xfs_attr_shortform_list(xfs_attr_list_context_t *context) | |||
| 659 | } | 659 | } | 
| 660 | 660 | ||
| 661 | sbp->entno = i; | 661 | sbp->entno = i; | 
| 662 | sbp->hash = xfs_da_hashname((char *)sfe->nameval, sfe->namelen); | 662 | sbp->hash = xfs_da_hashname(sfe->nameval, sfe->namelen); | 
| 663 | sbp->name = (char *)sfe->nameval; | 663 | sbp->name = sfe->nameval; | 
| 664 | sbp->namelen = sfe->namelen; | 664 | sbp->namelen = sfe->namelen; | 
| 665 | /* These are bytes, and both on-disk, don't endian-flip */ | 665 | /* These are bytes, and both on-disk, don't endian-flip */ | 
| 666 | sbp->valuelen = sfe->valuelen; | 666 | sbp->valuelen = sfe->valuelen; | 
| @@ -818,9 +818,9 @@ xfs_attr_leaf_to_shortform(xfs_dabuf_t *bp, xfs_da_args_t *args, int forkoff) | |||
| 818 | continue; | 818 | continue; | 
| 819 | ASSERT(entry->flags & XFS_ATTR_LOCAL); | 819 | ASSERT(entry->flags & XFS_ATTR_LOCAL); | 
| 820 | name_loc = xfs_attr_leaf_name_local(leaf, i); | 820 | name_loc = xfs_attr_leaf_name_local(leaf, i); | 
| 821 | nargs.name = (char *)name_loc->nameval; | 821 | nargs.name = name_loc->nameval; | 
| 822 | nargs.namelen = name_loc->namelen; | 822 | nargs.namelen = name_loc->namelen; | 
| 823 | nargs.value = (char *)&name_loc->nameval[nargs.namelen]; | 823 | nargs.value = &name_loc->nameval[nargs.namelen]; | 
| 824 | nargs.valuelen = be16_to_cpu(name_loc->valuelen); | 824 | nargs.valuelen = be16_to_cpu(name_loc->valuelen); | 
| 825 | nargs.hashval = be32_to_cpu(entry->hashval); | 825 | nargs.hashval = be32_to_cpu(entry->hashval); | 
| 826 | nargs.flags = XFS_ATTR_NSP_ONDISK_TO_ARGS(entry->flags); | 826 | nargs.flags = XFS_ATTR_NSP_ONDISK_TO_ARGS(entry->flags); | 
| @@ -2370,10 +2370,10 @@ xfs_attr_leaf_list_int(xfs_dabuf_t *bp, xfs_attr_list_context_t *context) | |||
| 2370 | 2370 | ||
| 2371 | retval = context->put_listent(context, | 2371 | retval = context->put_listent(context, | 
| 2372 | entry->flags, | 2372 | entry->flags, | 
| 2373 | (char *)name_loc->nameval, | 2373 | name_loc->nameval, | 
| 2374 | (int)name_loc->namelen, | 2374 | (int)name_loc->namelen, | 
| 2375 | be16_to_cpu(name_loc->valuelen), | 2375 | be16_to_cpu(name_loc->valuelen), | 
| 2376 | (char *)&name_loc->nameval[name_loc->namelen]); | 2376 | &name_loc->nameval[name_loc->namelen]); | 
| 2377 | if (retval) | 2377 | if (retval) | 
| 2378 | return retval; | 2378 | return retval; | 
| 2379 | } else { | 2379 | } else { | 
| @@ -2397,15 +2397,15 @@ xfs_attr_leaf_list_int(xfs_dabuf_t *bp, xfs_attr_list_context_t *context) | |||
| 2397 | return retval; | 2397 | return retval; | 
| 2398 | retval = context->put_listent(context, | 2398 | retval = context->put_listent(context, | 
| 2399 | entry->flags, | 2399 | entry->flags, | 
| 2400 | (char *)name_rmt->name, | 2400 | name_rmt->name, | 
| 2401 | (int)name_rmt->namelen, | 2401 | (int)name_rmt->namelen, | 
| 2402 | valuelen, | 2402 | valuelen, | 
| 2403 | (char*)args.value); | 2403 | args.value); | 
| 2404 | kmem_free(args.value); | 2404 | kmem_free(args.value); | 
| 2405 | } else { | 2405 | } else { | 
| 2406 | retval = context->put_listent(context, | 2406 | retval = context->put_listent(context, | 
| 2407 | entry->flags, | 2407 | entry->flags, | 
| 2408 | (char *)name_rmt->name, | 2408 | name_rmt->name, | 
| 2409 | (int)name_rmt->namelen, | 2409 | (int)name_rmt->namelen, | 
| 2410 | valuelen, | 2410 | valuelen, | 
| 2411 | NULL); | 2411 | NULL); | 
| @@ -2950,7 +2950,7 @@ xfs_attr_leaf_freextent(xfs_trans_t **trans, xfs_inode_t *dp, | |||
| 2950 | map.br_blockcount); | 2950 | map.br_blockcount); | 
| 2951 | bp = xfs_trans_get_buf(*trans, | 2951 | bp = xfs_trans_get_buf(*trans, | 
| 2952 | dp->i_mount->m_ddev_targp, | 2952 | dp->i_mount->m_ddev_targp, | 
| 2953 | dblkno, dblkcnt, XFS_BUF_LOCK); | 2953 | dblkno, dblkcnt, XBF_LOCK); | 
| 2954 | xfs_trans_binval(*trans, bp); | 2954 | xfs_trans_binval(*trans, bp); | 
| 2955 | /* | 2955 | /* | 
| 2956 | * Roll to next transaction. | 2956 | * Roll to next transaction. | 
diff --git a/fs/xfs/xfs_attr_sf.h b/fs/xfs/xfs_attr_sf.h index 76ab7b0cbb3a..919756e3ba53 100644 --- a/fs/xfs/xfs_attr_sf.h +++ b/fs/xfs/xfs_attr_sf.h  | |||
| @@ -52,7 +52,7 @@ typedef struct xfs_attr_sf_sort { | |||
| 52 | __uint8_t valuelen; /* length of value */ | 52 | __uint8_t valuelen; /* length of value */ | 
| 53 | __uint8_t flags; /* flags bits (see xfs_attr_leaf.h) */ | 53 | __uint8_t flags; /* flags bits (see xfs_attr_leaf.h) */ | 
| 54 | xfs_dahash_t hash; /* this entry's hash value */ | 54 | xfs_dahash_t hash; /* this entry's hash value */ | 
| 55 | char *name; /* name value, pointer into buffer */ | 55 | unsigned char *name; /* name value, pointer into buffer */ | 
| 56 | } xfs_attr_sf_sort_t; | 56 | } xfs_attr_sf_sort_t; | 
| 57 | 57 | ||
| 58 | #define XFS_ATTR_SF_ENTSIZE_BYNAME(nlen,vlen) /* space name/value uses */ \ | 58 | #define XFS_ATTR_SF_ENTSIZE_BYNAME(nlen,vlen) /* space name/value uses */ \ | 
diff --git a/fs/xfs/xfs_bmap.c b/fs/xfs/xfs_bmap.c index 98251cdc52aa..5c11e4d17010 100644 --- a/fs/xfs/xfs_bmap.c +++ b/fs/xfs/xfs_bmap.c  | |||
| @@ -2550,22 +2550,134 @@ xfs_bmap_rtalloc( | |||
| 2550 | } | 2550 | } | 
| 2551 | 2551 | ||
| 2552 | STATIC int | 2552 | STATIC int | 
| 2553 | xfs_bmap_btalloc_nullfb( | ||
| 2554 | struct xfs_bmalloca *ap, | ||
| 2555 | struct xfs_alloc_arg *args, | ||
| 2556 | xfs_extlen_t *blen) | ||
| 2557 | { | ||
| 2558 | struct xfs_mount *mp = ap->ip->i_mount; | ||
| 2559 | struct xfs_perag *pag; | ||
| 2560 | xfs_agnumber_t ag, startag; | ||
| 2561 | int notinit = 0; | ||
| 2562 | int error; | ||
| 2563 | |||
| 2564 | if (ap->userdata && xfs_inode_is_filestream(ap->ip)) | ||
| 2565 | args->type = XFS_ALLOCTYPE_NEAR_BNO; | ||
| 2566 | else | ||
| 2567 | args->type = XFS_ALLOCTYPE_START_BNO; | ||
| 2568 | args->total = ap->total; | ||
| 2569 | |||
| 2570 | /* | ||
| 2571 | * Search for an allocation group with a single extent large enough | ||
| 2572 | * for the request. If one isn't found, then adjust the minimum | ||
| 2573 | * allocation size to the largest space found. | ||
| 2574 | */ | ||
| 2575 | startag = ag = XFS_FSB_TO_AGNO(mp, args->fsbno); | ||
| 2576 | if (startag == NULLAGNUMBER) | ||
| 2577 | startag = ag = 0; | ||
| 2578 | |||
| 2579 | pag = xfs_perag_get(mp, ag); | ||
| 2580 | while (*blen < ap->alen) { | ||
| 2581 | if (!pag->pagf_init) { | ||
| 2582 | error = xfs_alloc_pagf_init(mp, args->tp, ag, | ||
| 2583 | XFS_ALLOC_FLAG_TRYLOCK); | ||
| 2584 | if (error) { | ||
| 2585 | xfs_perag_put(pag); | ||
| 2586 | return error; | ||
| 2587 | } | ||
| 2588 | } | ||
| 2589 | |||
| 2590 | /* | ||
| 2591 | * See xfs_alloc_fix_freelist... | ||
| 2592 | */ | ||
| 2593 | if (pag->pagf_init) { | ||
| 2594 | xfs_extlen_t longest; | ||
| 2595 | longest = xfs_alloc_longest_free_extent(mp, pag); | ||
| 2596 | if (*blen < longest) | ||
| 2597 | *blen = longest; | ||
| 2598 | } else | ||
| 2599 | notinit = 1; | ||
| 2600 | |||
| 2601 | if (xfs_inode_is_filestream(ap->ip)) { | ||
| 2602 | if (*blen >= ap->alen) | ||
| 2603 | break; | ||
| 2604 | |||
| 2605 | if (ap->userdata) { | ||
| 2606 | /* | ||
| 2607 | * If startag is an invalid AG, we've | ||
| 2608 | * come here once before and | ||
| 2609 | * xfs_filestream_new_ag picked the | ||
| 2610 | * best currently available. | ||
| 2611 | * | ||
| 2612 | * Don't continue looping, since we | ||
| 2613 | * could loop forever. | ||
| 2614 | */ | ||
| 2615 | if (startag == NULLAGNUMBER) | ||
| 2616 | break; | ||
| 2617 | |||
| 2618 | error = xfs_filestream_new_ag(ap, &ag); | ||
| 2619 | xfs_perag_put(pag); | ||
| 2620 | if (error) | ||
| 2621 | return error; | ||
| 2622 | |||
| 2623 | /* loop again to set 'blen'*/ | ||
| 2624 | startag = NULLAGNUMBER; | ||
| 2625 | pag = xfs_perag_get(mp, ag); | ||
| 2626 | continue; | ||
| 2627 | } | ||
| 2628 | } | ||
| 2629 | if (++ag == mp->m_sb.sb_agcount) | ||
| 2630 | ag = 0; | ||
| 2631 | if (ag == startag) | ||
| 2632 | break; | ||
| 2633 | xfs_perag_put(pag); | ||
| 2634 | pag = xfs_perag_get(mp, ag); | ||
| 2635 | } | ||
| 2636 | xfs_perag_put(pag); | ||
| 2637 | |||
| 2638 | /* | ||
| 2639 | * Since the above loop did a BUF_TRYLOCK, it is | ||
| 2640 | * possible that there is space for this request. | ||
| 2641 | */ | ||
| 2642 | if (notinit || *blen < ap->minlen) | ||
| 2643 | args->minlen = ap->minlen; | ||
| 2644 | /* | ||
| 2645 | * If the best seen length is less than the request | ||
| 2646 | * length, use the best as the minimum. | ||
| 2647 | */ | ||
| 2648 | else if (*blen < ap->alen) | ||
| 2649 | args->minlen = *blen; | ||
| 2650 | /* | ||
| 2651 | * Otherwise we've seen an extent as big as alen, | ||
| 2652 | * use that as the minimum. | ||
| 2653 | */ | ||
| 2654 | else | ||
| 2655 | args->minlen = ap->alen; | ||
| 2656 | |||
| 2657 | /* | ||
| 2658 | * set the failure fallback case to look in the selected | ||
| 2659 | * AG as the stream may have moved. | ||
| 2660 | */ | ||
| 2661 | if (xfs_inode_is_filestream(ap->ip)) | ||
| 2662 | ap->rval = args->fsbno = XFS_AGB_TO_FSB(mp, ag, 0); | ||
| 2663 | |||
| 2664 | return 0; | ||
| 2665 | } | ||
| 2666 | |||
| 2667 | STATIC int | ||
| 2553 | xfs_bmap_btalloc( | 2668 | xfs_bmap_btalloc( | 
| 2554 | xfs_bmalloca_t *ap) /* bmap alloc argument struct */ | 2669 | xfs_bmalloca_t *ap) /* bmap alloc argument struct */ | 
| 2555 | { | 2670 | { | 
| 2556 | xfs_mount_t *mp; /* mount point structure */ | 2671 | xfs_mount_t *mp; /* mount point structure */ | 
| 2557 | xfs_alloctype_t atype = 0; /* type for allocation routines */ | 2672 | xfs_alloctype_t atype = 0; /* type for allocation routines */ | 
| 2558 | xfs_extlen_t align; /* minimum allocation alignment */ | 2673 | xfs_extlen_t align; /* minimum allocation alignment */ | 
| 2559 | xfs_agnumber_t ag; | ||
| 2560 | xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */ | 2674 | xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */ | 
| 2561 | xfs_agnumber_t startag; | 2675 | xfs_agnumber_t ag; | 
| 2562 | xfs_alloc_arg_t args; | 2676 | xfs_alloc_arg_t args; | 
| 2563 | xfs_extlen_t blen; | 2677 | xfs_extlen_t blen; | 
| 2564 | xfs_extlen_t nextminlen = 0; | 2678 | xfs_extlen_t nextminlen = 0; | 
| 2565 | xfs_perag_t *pag; | ||
| 2566 | int nullfb; /* true if ap->firstblock isn't set */ | 2679 | int nullfb; /* true if ap->firstblock isn't set */ | 
| 2567 | int isaligned; | 2680 | int isaligned; | 
| 2568 | int notinit; | ||
| 2569 | int tryagain; | 2681 | int tryagain; | 
| 2570 | int error; | 2682 | int error; | 
| 2571 | 2683 | ||
| @@ -2612,102 +2724,9 @@ xfs_bmap_btalloc( | |||
| 2612 | args.firstblock = ap->firstblock; | 2724 | args.firstblock = ap->firstblock; | 
| 2613 | blen = 0; | 2725 | blen = 0; | 
| 2614 | if (nullfb) { | 2726 | if (nullfb) { | 
| 2615 | if (ap->userdata && xfs_inode_is_filestream(ap->ip)) | 2727 | error = xfs_bmap_btalloc_nullfb(ap, &args, &blen); | 
| 2616 | args.type = XFS_ALLOCTYPE_NEAR_BNO; | 2728 | if (error) | 
| 2617 | else | 2729 | return error; | 
| 2618 | args.type = XFS_ALLOCTYPE_START_BNO; | ||
| 2619 | args.total = ap->total; | ||
| 2620 | |||
| 2621 | /* | ||
| 2622 | * Search for an allocation group with a single extent | ||
| 2623 | * large enough for the request. | ||
| 2624 | * | ||
| 2625 | * If one isn't found, then adjust the minimum allocation | ||
| 2626 | * size to the largest space found. | ||
| 2627 | */ | ||
| 2628 | startag = ag = XFS_FSB_TO_AGNO(mp, args.fsbno); | ||
| 2629 | if (startag == NULLAGNUMBER) | ||
| 2630 | startag = ag = 0; | ||
| 2631 | notinit = 0; | ||
| 2632 | down_read(&mp->m_peraglock); | ||
| 2633 | while (blen < ap->alen) { | ||
| 2634 | pag = &mp->m_perag[ag]; | ||
| 2635 | if (!pag->pagf_init && | ||
| 2636 | (error = xfs_alloc_pagf_init(mp, args.tp, | ||
| 2637 | ag, XFS_ALLOC_FLAG_TRYLOCK))) { | ||
| 2638 | up_read(&mp->m_peraglock); | ||
| 2639 | return error; | ||
| 2640 | } | ||
| 2641 | /* | ||
| 2642 | * See xfs_alloc_fix_freelist... | ||
| 2643 | */ | ||
| 2644 | if (pag->pagf_init) { | ||
| 2645 | xfs_extlen_t longest; | ||
| 2646 | longest = xfs_alloc_longest_free_extent(mp, pag); | ||
| 2647 | if (blen < longest) | ||
| 2648 | blen = longest; | ||
| 2649 | } else | ||
| 2650 | notinit = 1; | ||
| 2651 | |||
| 2652 | if (xfs_inode_is_filestream(ap->ip)) { | ||
| 2653 | if (blen >= ap->alen) | ||
| 2654 | break; | ||
| 2655 | |||
| 2656 | if (ap->userdata) { | ||
| 2657 | /* | ||
| 2658 | * If startag is an invalid AG, we've | ||
| 2659 | * come here once before and | ||
| 2660 | * xfs_filestream_new_ag picked the | ||
| 2661 | * best currently available. | ||
| 2662 | * | ||
| 2663 | * Don't continue looping, since we | ||
| 2664 | * could loop forever. | ||
| 2665 | */ | ||
| 2666 | if (startag == NULLAGNUMBER) | ||
| 2667 | break; | ||
| 2668 | |||
| 2669 | error = xfs_filestream_new_ag(ap, &ag); | ||
| 2670 | if (error) { | ||
| 2671 | up_read(&mp->m_peraglock); | ||
| 2672 | return error; | ||
| 2673 | } | ||
| 2674 | |||
| 2675 | /* loop again to set 'blen'*/ | ||
| 2676 | startag = NULLAGNUMBER; | ||
| 2677 | continue; | ||
| 2678 | } | ||
| 2679 | } | ||
| 2680 | if (++ag == mp->m_sb.sb_agcount) | ||
| 2681 | ag = 0; | ||
| 2682 | if (ag == startag) | ||
| 2683 | break; | ||
| 2684 | } | ||
| 2685 | up_read(&mp->m_peraglock); | ||
| 2686 | /* | ||
| 2687 | * Since the above loop did a BUF_TRYLOCK, it is | ||
| 2688 | * possible that there is space for this request. | ||
| 2689 | */ | ||
| 2690 | if (notinit || blen < ap->minlen) | ||
| 2691 | args.minlen = ap->minlen; | ||
| 2692 | /* | ||
| 2693 | * If the best seen length is less than the request | ||
| 2694 | * length, use the best as the minimum. | ||
| 2695 | */ | ||
| 2696 | else if (blen < ap->alen) | ||
| 2697 | args.minlen = blen; | ||
| 2698 | /* | ||
| 2699 | * Otherwise we've seen an extent as big as alen, | ||
| 2700 | * use that as the minimum. | ||
| 2701 | */ | ||
| 2702 | else | ||
| 2703 | args.minlen = ap->alen; | ||
| 2704 | |||
| 2705 | /* | ||
| 2706 | * set the failure fallback case to look in the selected | ||
| 2707 | * AG as the stream may have moved. | ||
| 2708 | */ | ||
| 2709 | if (xfs_inode_is_filestream(ap->ip)) | ||
| 2710 | ap->rval = args.fsbno = XFS_AGB_TO_FSB(mp, ag, 0); | ||
| 2711 | } else if (ap->low) { | 2730 | } else if (ap->low) { | 
| 2712 | if (xfs_inode_is_filestream(ap->ip)) | 2731 | if (xfs_inode_is_filestream(ap->ip)) | 
| 2713 | args.type = XFS_ALLOCTYPE_FIRST_AG; | 2732 | args.type = XFS_ALLOCTYPE_FIRST_AG; | 
| @@ -4470,7 +4489,7 @@ xfs_bmapi( | |||
| 4470 | xfs_fsblock_t abno; /* allocated block number */ | 4489 | xfs_fsblock_t abno; /* allocated block number */ | 
| 4471 | xfs_extlen_t alen; /* allocated extent length */ | 4490 | xfs_extlen_t alen; /* allocated extent length */ | 
| 4472 | xfs_fileoff_t aoff; /* allocated file offset */ | 4491 | xfs_fileoff_t aoff; /* allocated file offset */ | 
| 4473 | xfs_bmalloca_t bma; /* args for xfs_bmap_alloc */ | 4492 | xfs_bmalloca_t bma = { 0 }; /* args for xfs_bmap_alloc */ | 
| 4474 | xfs_btree_cur_t *cur; /* bmap btree cursor */ | 4493 | xfs_btree_cur_t *cur; /* bmap btree cursor */ | 
| 4475 | xfs_fileoff_t end; /* end of mapped file region */ | 4494 | xfs_fileoff_t end; /* end of mapped file region */ | 
| 4476 | int eof; /* we've hit the end of extents */ | 4495 | int eof; /* we've hit the end of extents */ | 
diff --git a/fs/xfs/xfs_bmap_btree.c b/fs/xfs/xfs_bmap_btree.c index 38751d5fac6f..416e47e54b83 100644 --- a/fs/xfs/xfs_bmap_btree.c +++ b/fs/xfs/xfs_bmap_btree.c  | |||
| @@ -334,7 +334,7 @@ xfs_bmbt_disk_set_allf( | |||
| 334 | /* | 334 | /* | 
| 335 | * Set all the fields in a bmap extent record from the uncompressed form. | 335 | * Set all the fields in a bmap extent record from the uncompressed form. | 
| 336 | */ | 336 | */ | 
| 337 | void | 337 | STATIC void | 
| 338 | xfs_bmbt_disk_set_all( | 338 | xfs_bmbt_disk_set_all( | 
| 339 | xfs_bmbt_rec_t *r, | 339 | xfs_bmbt_rec_t *r, | 
| 340 | xfs_bmbt_irec_t *s) | 340 | xfs_bmbt_irec_t *s) | 
diff --git a/fs/xfs/xfs_bmap_btree.h b/fs/xfs/xfs_bmap_btree.h index cf07ca7c22e7..0e66c4ea0f85 100644 --- a/fs/xfs/xfs_bmap_btree.h +++ b/fs/xfs/xfs_bmap_btree.h  | |||
| @@ -223,7 +223,6 @@ extern void xfs_bmbt_set_startblock(xfs_bmbt_rec_host_t *r, xfs_fsblock_t v); | |||
| 223 | extern void xfs_bmbt_set_startoff(xfs_bmbt_rec_host_t *r, xfs_fileoff_t v); | 223 | extern void xfs_bmbt_set_startoff(xfs_bmbt_rec_host_t *r, xfs_fileoff_t v); | 
| 224 | extern void xfs_bmbt_set_state(xfs_bmbt_rec_host_t *r, xfs_exntst_t v); | 224 | extern void xfs_bmbt_set_state(xfs_bmbt_rec_host_t *r, xfs_exntst_t v); | 
| 225 | 225 | ||
| 226 | extern void xfs_bmbt_disk_set_all(xfs_bmbt_rec_t *r, xfs_bmbt_irec_t *s); | ||
| 227 | extern void xfs_bmbt_disk_set_allf(xfs_bmbt_rec_t *r, xfs_fileoff_t o, | 226 | extern void xfs_bmbt_disk_set_allf(xfs_bmbt_rec_t *r, xfs_fileoff_t o, | 
| 228 | xfs_fsblock_t b, xfs_filblks_t c, xfs_exntst_t v); | 227 | xfs_fsblock_t b, xfs_filblks_t c, xfs_exntst_t v); | 
| 229 | 228 | ||
diff --git a/fs/xfs/xfs_btree.c b/fs/xfs/xfs_btree.c index 36a0992dd669..96be4b0f2496 100644 --- a/fs/xfs/xfs_btree.c +++ b/fs/xfs/xfs_btree.c  | |||
| @@ -977,7 +977,7 @@ xfs_btree_get_buf_block( | |||
| 977 | xfs_daddr_t d; | 977 | xfs_daddr_t d; | 
| 978 | 978 | ||
| 979 | /* need to sort out how callers deal with failures first */ | 979 | /* need to sort out how callers deal with failures first */ | 
| 980 | ASSERT(!(flags & XFS_BUF_TRYLOCK)); | 980 | ASSERT(!(flags & XBF_TRYLOCK)); | 
| 981 | 981 | ||
| 982 | d = xfs_btree_ptr_to_daddr(cur, ptr); | 982 | d = xfs_btree_ptr_to_daddr(cur, ptr); | 
| 983 | *bpp = xfs_trans_get_buf(cur->bc_tp, mp->m_ddev_targp, d, | 983 | *bpp = xfs_trans_get_buf(cur->bc_tp, mp->m_ddev_targp, d, | 
| @@ -1008,7 +1008,7 @@ xfs_btree_read_buf_block( | |||
| 1008 | int error; | 1008 | int error; | 
| 1009 | 1009 | ||
| 1010 | /* need to sort out how callers deal with failures first */ | 1010 | /* need to sort out how callers deal with failures first */ | 
| 1011 | ASSERT(!(flags & XFS_BUF_TRYLOCK)); | 1011 | ASSERT(!(flags & XBF_TRYLOCK)); | 
| 1012 | 1012 | ||
| 1013 | d = xfs_btree_ptr_to_daddr(cur, ptr); | 1013 | d = xfs_btree_ptr_to_daddr(cur, ptr); | 
| 1014 | error = xfs_trans_read_buf(mp, cur->bc_tp, mp->m_ddev_targp, d, | 1014 | error = xfs_trans_read_buf(mp, cur->bc_tp, mp->m_ddev_targp, d, | 
diff --git a/fs/xfs/xfs_buf_item.c b/fs/xfs/xfs_buf_item.c index a30f7e9eb2b9..f3c49e69eab9 100644 --- a/fs/xfs/xfs_buf_item.c +++ b/fs/xfs/xfs_buf_item.c  | |||
| @@ -250,7 +250,7 @@ xfs_buf_item_format( | |||
| 250 | ((bip->bli_format.blf_map_size - 1) * sizeof(uint))); | 250 | ((bip->bli_format.blf_map_size - 1) * sizeof(uint))); | 
| 251 | vecp->i_addr = (xfs_caddr_t)&bip->bli_format; | 251 | vecp->i_addr = (xfs_caddr_t)&bip->bli_format; | 
| 252 | vecp->i_len = base_size; | 252 | vecp->i_len = base_size; | 
| 253 | XLOG_VEC_SET_TYPE(vecp, XLOG_REG_TYPE_BFORMAT); | 253 | vecp->i_type = XLOG_REG_TYPE_BFORMAT; | 
| 254 | vecp++; | 254 | vecp++; | 
| 255 | nvecs = 1; | 255 | nvecs = 1; | 
| 256 | 256 | ||
| @@ -297,14 +297,14 @@ xfs_buf_item_format( | |||
| 297 | buffer_offset = first_bit * XFS_BLI_CHUNK; | 297 | buffer_offset = first_bit * XFS_BLI_CHUNK; | 
| 298 | vecp->i_addr = xfs_buf_offset(bp, buffer_offset); | 298 | vecp->i_addr = xfs_buf_offset(bp, buffer_offset); | 
| 299 | vecp->i_len = nbits * XFS_BLI_CHUNK; | 299 | vecp->i_len = nbits * XFS_BLI_CHUNK; | 
| 300 | XLOG_VEC_SET_TYPE(vecp, XLOG_REG_TYPE_BCHUNK); | 300 | vecp->i_type = XLOG_REG_TYPE_BCHUNK; | 
| 301 | nvecs++; | 301 | nvecs++; | 
| 302 | break; | 302 | break; | 
| 303 | } else if (next_bit != last_bit + 1) { | 303 | } else if (next_bit != last_bit + 1) { | 
| 304 | buffer_offset = first_bit * XFS_BLI_CHUNK; | 304 | buffer_offset = first_bit * XFS_BLI_CHUNK; | 
| 305 | vecp->i_addr = xfs_buf_offset(bp, buffer_offset); | 305 | vecp->i_addr = xfs_buf_offset(bp, buffer_offset); | 
| 306 | vecp->i_len = nbits * XFS_BLI_CHUNK; | 306 | vecp->i_len = nbits * XFS_BLI_CHUNK; | 
| 307 | XLOG_VEC_SET_TYPE(vecp, XLOG_REG_TYPE_BCHUNK); | 307 | vecp->i_type = XLOG_REG_TYPE_BCHUNK; | 
| 308 | nvecs++; | 308 | nvecs++; | 
| 309 | vecp++; | 309 | vecp++; | 
| 310 | first_bit = next_bit; | 310 | first_bit = next_bit; | 
| @@ -316,7 +316,7 @@ xfs_buf_item_format( | |||
| 316 | buffer_offset = first_bit * XFS_BLI_CHUNK; | 316 | buffer_offset = first_bit * XFS_BLI_CHUNK; | 
| 317 | vecp->i_addr = xfs_buf_offset(bp, buffer_offset); | 317 | vecp->i_addr = xfs_buf_offset(bp, buffer_offset); | 
| 318 | vecp->i_len = nbits * XFS_BLI_CHUNK; | 318 | vecp->i_len = nbits * XFS_BLI_CHUNK; | 
| 319 | XLOG_VEC_SET_TYPE(vecp, XLOG_REG_TYPE_BCHUNK); | 319 | vecp->i_type = XLOG_REG_TYPE_BCHUNK; | 
| 320 | /* You would think we need to bump the nvecs here too, but we do not | 320 | /* You would think we need to bump the nvecs here too, but we do not | 
| 321 | * this number is used by recovery, and it gets confused by the boundary | 321 | * this number is used by recovery, and it gets confused by the boundary | 
| 322 | * split here | 322 | * split here | 
| @@ -467,8 +467,10 @@ xfs_buf_item_unpin_remove( | |||
| 467 | /* | 467 | /* | 
| 468 | * This is called to attempt to lock the buffer associated with this | 468 | * This is called to attempt to lock the buffer associated with this | 
| 469 | * buf log item. Don't sleep on the buffer lock. If we can't get | 469 | * buf log item. Don't sleep on the buffer lock. If we can't get | 
| 470 | * the lock right away, return 0. If we can get the lock, pull the | 470 | * the lock right away, return 0. If we can get the lock, take a | 
| 471 | * buffer from the free list, mark it busy, and return 1. | 471 | * reference to the buffer. If this is a delayed write buffer that | 
| 472 | * needs AIL help to be written back, invoke the pushbuf routine | ||
| 473 | * rather than the normal success path. | ||
| 472 | */ | 474 | */ | 
| 473 | STATIC uint | 475 | STATIC uint | 
| 474 | xfs_buf_item_trylock( | 476 | xfs_buf_item_trylock( | 
| @@ -477,24 +479,18 @@ xfs_buf_item_trylock( | |||
| 477 | xfs_buf_t *bp; | 479 | xfs_buf_t *bp; | 
| 478 | 480 | ||
| 479 | bp = bip->bli_buf; | 481 | bp = bip->bli_buf; | 
| 480 | 482 | if (XFS_BUF_ISPINNED(bp)) | |
| 481 | if (XFS_BUF_ISPINNED(bp)) { | ||
| 482 | return XFS_ITEM_PINNED; | 483 | return XFS_ITEM_PINNED; | 
| 483 | } | 484 | if (!XFS_BUF_CPSEMA(bp)) | 
| 484 | |||
| 485 | if (!XFS_BUF_CPSEMA(bp)) { | ||
| 486 | return XFS_ITEM_LOCKED; | 485 | return XFS_ITEM_LOCKED; | 
| 487 | } | ||
| 488 | 486 | ||
| 489 | /* | 487 | /* take a reference to the buffer. */ | 
| 490 | * Remove the buffer from the free list. Only do this | ||
| 491 | * if it's on the free list. Private buffers like the | ||
| 492 | * superblock buffer are not. | ||
| 493 | */ | ||
| 494 | XFS_BUF_HOLD(bp); | 488 | XFS_BUF_HOLD(bp); | 
| 495 | 489 | ||
| 496 | ASSERT(!(bip->bli_flags & XFS_BLI_STALE)); | 490 | ASSERT(!(bip->bli_flags & XFS_BLI_STALE)); | 
| 497 | trace_xfs_buf_item_trylock(bip); | 491 | trace_xfs_buf_item_trylock(bip); | 
| 492 | if (XFS_BUF_ISDELAYWRITE(bp)) | ||
| 493 | return XFS_ITEM_PUSHBUF; | ||
| 498 | return XFS_ITEM_SUCCESS; | 494 | return XFS_ITEM_SUCCESS; | 
| 499 | } | 495 | } | 
| 500 | 496 | ||
| @@ -626,11 +622,9 @@ xfs_buf_item_committed( | |||
| 626 | } | 622 | } | 
| 627 | 623 | ||
| 628 | /* | 624 | /* | 
| 629 | * This is called to asynchronously write the buffer associated with this | 625 | * The buffer is locked, but is not a delayed write buffer. This happens | 
| 630 | * buf log item out to disk. The buffer will already have been locked by | 626 | * if we race with IO completion and hence we don't want to try to write it | 
| 631 | * a successful call to xfs_buf_item_trylock(). If the buffer still has | 627 | * again. Just release the buffer. | 
| 632 | * B_DELWRI set, then get it going out to disk with a call to bawrite(). | ||
| 633 | * If not, then just release the buffer. | ||
| 634 | */ | 628 | */ | 
| 635 | STATIC void | 629 | STATIC void | 
| 636 | xfs_buf_item_push( | 630 | xfs_buf_item_push( | 
| @@ -642,17 +636,29 @@ xfs_buf_item_push( | |||
| 642 | trace_xfs_buf_item_push(bip); | 636 | trace_xfs_buf_item_push(bip); | 
| 643 | 637 | ||
| 644 | bp = bip->bli_buf; | 638 | bp = bip->bli_buf; | 
| 639 | ASSERT(!XFS_BUF_ISDELAYWRITE(bp)); | ||
| 640 | xfs_buf_relse(bp); | ||
| 641 | } | ||
| 645 | 642 | ||
| 646 | if (XFS_BUF_ISDELAYWRITE(bp)) { | 643 | /* | 
| 647 | int error; | 644 | * The buffer is locked and is a delayed write buffer. Promote the buffer | 
| 648 | error = xfs_bawrite(bip->bli_item.li_mountp, bp); | 645 | * in the delayed write queue as the caller knows that they must invoke | 
| 649 | if (error) | 646 | * the xfsbufd to get this buffer written. We have to unlock the buffer | 
| 650 | xfs_fs_cmn_err(CE_WARN, bip->bli_item.li_mountp, | 647 | * to allow the xfsbufd to write it, too. | 
| 651 | "xfs_buf_item_push: pushbuf error %d on bip %p, bp %p", | 648 | */ | 
| 652 | error, bip, bp); | 649 | STATIC void | 
| 653 | } else { | 650 | xfs_buf_item_pushbuf( | 
| 654 | xfs_buf_relse(bp); | 651 | xfs_buf_log_item_t *bip) | 
| 655 | } | 652 | { | 
| 653 | xfs_buf_t *bp; | ||
| 654 | |||
| 655 | ASSERT(!(bip->bli_flags & XFS_BLI_STALE)); | ||
| 656 | trace_xfs_buf_item_pushbuf(bip); | ||
| 657 | |||
| 658 | bp = bip->bli_buf; | ||
| 659 | ASSERT(XFS_BUF_ISDELAYWRITE(bp)); | ||
| 660 | xfs_buf_delwri_promote(bp); | ||
| 661 | xfs_buf_relse(bp); | ||
| 656 | } | 662 | } | 
| 657 | 663 | ||
| 658 | /* ARGSUSED */ | 664 | /* ARGSUSED */ | 
| @@ -677,7 +683,7 @@ static struct xfs_item_ops xfs_buf_item_ops = { | |||
| 677 | .iop_committed = (xfs_lsn_t(*)(xfs_log_item_t*, xfs_lsn_t)) | 683 | .iop_committed = (xfs_lsn_t(*)(xfs_log_item_t*, xfs_lsn_t)) | 
| 678 | xfs_buf_item_committed, | 684 | xfs_buf_item_committed, | 
| 679 | .iop_push = (void(*)(xfs_log_item_t*))xfs_buf_item_push, | 685 | .iop_push = (void(*)(xfs_log_item_t*))xfs_buf_item_push, | 
| 680 | .iop_pushbuf = NULL, | 686 | .iop_pushbuf = (void(*)(xfs_log_item_t*))xfs_buf_item_pushbuf, | 
| 681 | .iop_committing = (void(*)(xfs_log_item_t*, xfs_lsn_t)) | 687 | .iop_committing = (void(*)(xfs_log_item_t*, xfs_lsn_t)) | 
| 682 | xfs_buf_item_committing | 688 | xfs_buf_item_committing | 
| 683 | }; | 689 | }; | 
diff --git a/fs/xfs/xfs_da_btree.c b/fs/xfs/xfs_da_btree.c index c0c8869115b1..0ca556b4bf31 100644 --- a/fs/xfs/xfs_da_btree.c +++ b/fs/xfs/xfs_da_btree.c  | |||
| @@ -1534,8 +1534,8 @@ xfs_da_hashname(const __uint8_t *name, int namelen) | |||
| 1534 | enum xfs_dacmp | 1534 | enum xfs_dacmp | 
| 1535 | xfs_da_compname( | 1535 | xfs_da_compname( | 
| 1536 | struct xfs_da_args *args, | 1536 | struct xfs_da_args *args, | 
| 1537 | const char *name, | 1537 | const unsigned char *name, | 
| 1538 | int len) | 1538 | int len) | 
| 1539 | { | 1539 | { | 
| 1540 | return (args->namelen == len && memcmp(args->name, name, len) == 0) ? | 1540 | return (args->namelen == len && memcmp(args->name, name, len) == 0) ? | 
| 1541 | XFS_CMP_EXACT : XFS_CMP_DIFFERENT; | 1541 | XFS_CMP_EXACT : XFS_CMP_DIFFERENT; | 
diff --git a/fs/xfs/xfs_da_btree.h b/fs/xfs/xfs_da_btree.h index 30cd08f56a3a..fe9f5a8c1d2a 100644 --- a/fs/xfs/xfs_da_btree.h +++ b/fs/xfs/xfs_da_btree.h  | |||
| @@ -209,7 +209,8 @@ typedef struct xfs_da_state { | |||
| 209 | */ | 209 | */ | 
| 210 | struct xfs_nameops { | 210 | struct xfs_nameops { | 
| 211 | xfs_dahash_t (*hashname)(struct xfs_name *); | 211 | xfs_dahash_t (*hashname)(struct xfs_name *); | 
| 212 | enum xfs_dacmp (*compname)(struct xfs_da_args *, const char *, int); | 212 | enum xfs_dacmp (*compname)(struct xfs_da_args *, | 
| 213 | const unsigned char *, int); | ||
| 213 | }; | 214 | }; | 
| 214 | 215 | ||
| 215 | 216 | ||
| @@ -260,7 +261,7 @@ int xfs_da_shrink_inode(xfs_da_args_t *args, xfs_dablk_t dead_blkno, | |||
| 260 | 261 | ||
| 261 | uint xfs_da_hashname(const __uint8_t *name_string, int name_length); | 262 | uint xfs_da_hashname(const __uint8_t *name_string, int name_length); | 
| 262 | enum xfs_dacmp xfs_da_compname(struct xfs_da_args *args, | 263 | enum xfs_dacmp xfs_da_compname(struct xfs_da_args *args, | 
| 263 | const char *name, int len); | 264 | const unsigned char *name, int len); | 
| 264 | 265 | ||
| 265 | 266 | ||
| 266 | xfs_da_state_t *xfs_da_state_alloc(void); | 267 | xfs_da_state_t *xfs_da_state_alloc(void); | 
diff --git a/fs/xfs/xfs_dfrag.c b/fs/xfs/xfs_dfrag.c index 84ca1cf16a1e..cd27c9d6c71f 100644 --- a/fs/xfs/xfs_dfrag.c +++ b/fs/xfs/xfs_dfrag.c  | |||
| @@ -45,15 +45,21 @@ | |||
| 45 | #include "xfs_vnodeops.h" | 45 | #include "xfs_vnodeops.h" | 
| 46 | #include "xfs_trace.h" | 46 | #include "xfs_trace.h" | 
| 47 | 47 | ||
| 48 | |||
| 49 | static int xfs_swap_extents( | ||
| 50 | xfs_inode_t *ip, /* target inode */ | ||
| 51 | xfs_inode_t *tip, /* tmp inode */ | ||
| 52 | xfs_swapext_t *sxp); | ||
| 53 | |||
| 48 | /* | 54 | /* | 
| 49 | * Syssgi interface for swapext | 55 | * ioctl interface for swapext | 
| 50 | */ | 56 | */ | 
| 51 | int | 57 | int | 
| 52 | xfs_swapext( | 58 | xfs_swapext( | 
| 53 | xfs_swapext_t *sxp) | 59 | xfs_swapext_t *sxp) | 
| 54 | { | 60 | { | 
| 55 | xfs_inode_t *ip, *tip; | 61 | xfs_inode_t *ip, *tip; | 
| 56 | struct file *file, *target_file; | 62 | struct file *file, *tmp_file; | 
| 57 | int error = 0; | 63 | int error = 0; | 
| 58 | 64 | ||
| 59 | /* Pull information for the target fd */ | 65 | /* Pull information for the target fd */ | 
| @@ -68,46 +74,46 @@ xfs_swapext( | |||
| 68 | goto out_put_file; | 74 | goto out_put_file; | 
| 69 | } | 75 | } | 
| 70 | 76 | ||
| 71 | target_file = fget((int)sxp->sx_fdtmp); | 77 | tmp_file = fget((int)sxp->sx_fdtmp); | 
| 72 | if (!target_file) { | 78 | if (!tmp_file) { | 
| 73 | error = XFS_ERROR(EINVAL); | 79 | error = XFS_ERROR(EINVAL); | 
| 74 | goto out_put_file; | 80 | goto out_put_file; | 
| 75 | } | 81 | } | 
| 76 | 82 | ||
| 77 | if (!(target_file->f_mode & FMODE_WRITE) || | 83 | if (!(tmp_file->f_mode & FMODE_WRITE) || | 
| 78 | (target_file->f_flags & O_APPEND)) { | 84 | (tmp_file->f_flags & O_APPEND)) { | 
| 79 | error = XFS_ERROR(EBADF); | 85 | error = XFS_ERROR(EBADF); | 
| 80 | goto out_put_target_file; | 86 | goto out_put_tmp_file; | 
| 81 | } | 87 | } | 
| 82 | 88 | ||
| 83 | if (IS_SWAPFILE(file->f_path.dentry->d_inode) || | 89 | if (IS_SWAPFILE(file->f_path.dentry->d_inode) || | 
| 84 | IS_SWAPFILE(target_file->f_path.dentry->d_inode)) { | 90 | IS_SWAPFILE(tmp_file->f_path.dentry->d_inode)) { | 
| 85 | error = XFS_ERROR(EINVAL); | 91 | error = XFS_ERROR(EINVAL); | 
| 86 | goto out_put_target_file; | 92 | goto out_put_tmp_file; | 
| 87 | } | 93 | } | 
| 88 | 94 | ||
| 89 | ip = XFS_I(file->f_path.dentry->d_inode); | 95 | ip = XFS_I(file->f_path.dentry->d_inode); | 
| 90 | tip = XFS_I(target_file->f_path.dentry->d_inode); | 96 | tip = XFS_I(tmp_file->f_path.dentry->d_inode); | 
| 91 | 97 | ||
| 92 | if (ip->i_mount != tip->i_mount) { | 98 | if (ip->i_mount != tip->i_mount) { | 
| 93 | error = XFS_ERROR(EINVAL); | 99 | error = XFS_ERROR(EINVAL); | 
| 94 | goto out_put_target_file; | 100 | goto out_put_tmp_file; | 
| 95 | } | 101 | } | 
| 96 | 102 | ||
| 97 | if (ip->i_ino == tip->i_ino) { | 103 | if (ip->i_ino == tip->i_ino) { | 
| 98 | error = XFS_ERROR(EINVAL); | 104 | error = XFS_ERROR(EINVAL); | 
| 99 | goto out_put_target_file; | 105 | goto out_put_tmp_file; | 
| 100 | } | 106 | } | 
| 101 | 107 | ||
| 102 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) { | 108 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) { | 
| 103 | error = XFS_ERROR(EIO); | 109 | error = XFS_ERROR(EIO); | 
| 104 | goto out_put_target_file; | 110 | goto out_put_tmp_file; | 
| 105 | } | 111 | } | 
| 106 | 112 | ||
| 107 | error = xfs_swap_extents(ip, tip, sxp); | 113 | error = xfs_swap_extents(ip, tip, sxp); | 
| 108 | 114 | ||
| 109 | out_put_target_file: | 115 | out_put_tmp_file: | 
| 110 | fput(target_file); | 116 | fput(tmp_file); | 
| 111 | out_put_file: | 117 | out_put_file: | 
| 112 | fput(file); | 118 | fput(file); | 
| 113 | out: | 119 | out: | 
| @@ -186,7 +192,7 @@ xfs_swap_extents_check_format( | |||
| 186 | return 0; | 192 | return 0; | 
| 187 | } | 193 | } | 
| 188 | 194 | ||
| 189 | int | 195 | static int | 
| 190 | xfs_swap_extents( | 196 | xfs_swap_extents( | 
| 191 | xfs_inode_t *ip, /* target inode */ | 197 | xfs_inode_t *ip, /* target inode */ | 
| 192 | xfs_inode_t *tip, /* tmp inode */ | 198 | xfs_inode_t *tip, /* tmp inode */ | 
| @@ -254,6 +260,9 @@ xfs_swap_extents( | |||
| 254 | goto out_unlock; | 260 | goto out_unlock; | 
| 255 | } | 261 | } | 
| 256 | 262 | ||
| 263 | trace_xfs_swap_extent_before(ip, 0); | ||
| 264 | trace_xfs_swap_extent_before(tip, 1); | ||
| 265 | |||
| 257 | /* check inode formats now that data is flushed */ | 266 | /* check inode formats now that data is flushed */ | 
| 258 | error = xfs_swap_extents_check_format(ip, tip); | 267 | error = xfs_swap_extents_check_format(ip, tip); | 
| 259 | if (error) { | 268 | if (error) { | 
| @@ -421,6 +430,8 @@ xfs_swap_extents( | |||
| 421 | 430 | ||
| 422 | error = xfs_trans_commit(tp, XFS_TRANS_SWAPEXT); | 431 | error = xfs_trans_commit(tp, XFS_TRANS_SWAPEXT); | 
| 423 | 432 | ||
| 433 | trace_xfs_swap_extent_after(ip, 0); | ||
| 434 | trace_xfs_swap_extent_after(tip, 1); | ||
| 424 | out: | 435 | out: | 
| 425 | kmem_free(tempifp); | 436 | kmem_free(tempifp); | 
| 426 | return error; | 437 | return error; | 
diff --git a/fs/xfs/xfs_dfrag.h b/fs/xfs/xfs_dfrag.h index 4f55a6306558..20bdd935c121 100644 --- a/fs/xfs/xfs_dfrag.h +++ b/fs/xfs/xfs_dfrag.h  | |||
| @@ -48,9 +48,6 @@ typedef struct xfs_swapext | |||
| 48 | */ | 48 | */ | 
| 49 | int xfs_swapext(struct xfs_swapext *sx); | 49 | int xfs_swapext(struct xfs_swapext *sx); | 
| 50 | 50 | ||
| 51 | int xfs_swap_extents(struct xfs_inode *ip, struct xfs_inode *tip, | ||
| 52 | struct xfs_swapext *sxp); | ||
| 53 | |||
| 54 | #endif /* __KERNEL__ */ | 51 | #endif /* __KERNEL__ */ | 
| 55 | 52 | ||
| 56 | #endif /* __XFS_DFRAG_H__ */ | 53 | #endif /* __XFS_DFRAG_H__ */ | 
diff --git a/fs/xfs/xfs_dir2.c b/fs/xfs/xfs_dir2.c index 93634a7e90e9..42520f041265 100644 --- a/fs/xfs/xfs_dir2.c +++ b/fs/xfs/xfs_dir2.c  | |||
| @@ -44,7 +44,7 @@ | |||
| 44 | #include "xfs_vnodeops.h" | 44 | #include "xfs_vnodeops.h" | 
| 45 | #include "xfs_trace.h" | 45 | #include "xfs_trace.h" | 
| 46 | 46 | ||
| 47 | struct xfs_name xfs_name_dotdot = {"..", 2}; | 47 | struct xfs_name xfs_name_dotdot = { (unsigned char *)"..", 2}; | 
| 48 | 48 | ||
| 49 | /* | 49 | /* | 
| 50 | * ASCII case-insensitive (ie. A-Z) support for directories that was | 50 | * ASCII case-insensitive (ie. A-Z) support for directories that was | 
| @@ -66,8 +66,8 @@ xfs_ascii_ci_hashname( | |||
| 66 | STATIC enum xfs_dacmp | 66 | STATIC enum xfs_dacmp | 
| 67 | xfs_ascii_ci_compname( | 67 | xfs_ascii_ci_compname( | 
| 68 | struct xfs_da_args *args, | 68 | struct xfs_da_args *args, | 
| 69 | const char *name, | 69 | const unsigned char *name, | 
| 70 | int len) | 70 | int len) | 
| 71 | { | 71 | { | 
| 72 | enum xfs_dacmp result; | 72 | enum xfs_dacmp result; | 
| 73 | int i; | 73 | int i; | 
| @@ -247,7 +247,7 @@ xfs_dir_createname( | |||
| 247 | int | 247 | int | 
| 248 | xfs_dir_cilookup_result( | 248 | xfs_dir_cilookup_result( | 
| 249 | struct xfs_da_args *args, | 249 | struct xfs_da_args *args, | 
| 250 | const char *name, | 250 | const unsigned char *name, | 
| 251 | int len) | 251 | int len) | 
| 252 | { | 252 | { | 
| 253 | if (args->cmpresult == XFS_CMP_DIFFERENT) | 253 | if (args->cmpresult == XFS_CMP_DIFFERENT) | 
diff --git a/fs/xfs/xfs_dir2.h b/fs/xfs/xfs_dir2.h index 1d9ef96f33aa..74a3b1057685 100644 --- a/fs/xfs/xfs_dir2.h +++ b/fs/xfs/xfs_dir2.h  | |||
| @@ -100,7 +100,7 @@ extern int xfs_dir2_isleaf(struct xfs_trans *tp, struct xfs_inode *dp, | |||
| 100 | extern int xfs_dir2_shrink_inode(struct xfs_da_args *args, xfs_dir2_db_t db, | 100 | extern int xfs_dir2_shrink_inode(struct xfs_da_args *args, xfs_dir2_db_t db, | 
| 101 | struct xfs_dabuf *bp); | 101 | struct xfs_dabuf *bp); | 
| 102 | 102 | ||
| 103 | extern int xfs_dir_cilookup_result(struct xfs_da_args *args, const char *name, | 103 | extern int xfs_dir_cilookup_result(struct xfs_da_args *args, | 
| 104 | int len); | 104 | const unsigned char *name, int len); | 
| 105 | 105 | ||
| 106 | #endif /* __XFS_DIR2_H__ */ | 106 | #endif /* __XFS_DIR2_H__ */ | 
diff --git a/fs/xfs/xfs_dir2_block.c b/fs/xfs/xfs_dir2_block.c index ddc4ecc7807f..779a267b0a84 100644 --- a/fs/xfs/xfs_dir2_block.c +++ b/fs/xfs/xfs_dir2_block.c  | |||
| @@ -57,8 +57,8 @@ static xfs_dahash_t xfs_dir_hash_dot, xfs_dir_hash_dotdot; | |||
| 57 | void | 57 | void | 
| 58 | xfs_dir_startup(void) | 58 | xfs_dir_startup(void) | 
| 59 | { | 59 | { | 
| 60 | xfs_dir_hash_dot = xfs_da_hashname(".", 1); | 60 | xfs_dir_hash_dot = xfs_da_hashname((unsigned char *)".", 1); | 
| 61 | xfs_dir_hash_dotdot = xfs_da_hashname("..", 2); | 61 | xfs_dir_hash_dotdot = xfs_da_hashname((unsigned char *)"..", 2); | 
| 62 | } | 62 | } | 
| 63 | 63 | ||
| 64 | /* | 64 | /* | 
| @@ -513,8 +513,9 @@ xfs_dir2_block_getdents( | |||
| 513 | /* | 513 | /* | 
| 514 | * If it didn't fit, set the final offset to here & return. | 514 | * If it didn't fit, set the final offset to here & return. | 
| 515 | */ | 515 | */ | 
| 516 | if (filldir(dirent, dep->name, dep->namelen, cook & 0x7fffffff, | 516 | if (filldir(dirent, (char *)dep->name, dep->namelen, | 
| 517 | be64_to_cpu(dep->inumber), DT_UNKNOWN)) { | 517 | cook & 0x7fffffff, be64_to_cpu(dep->inumber), | 
| 518 | DT_UNKNOWN)) { | ||
| 518 | *offset = cook & 0x7fffffff; | 519 | *offset = cook & 0x7fffffff; | 
| 519 | xfs_da_brelse(NULL, bp); | 520 | xfs_da_brelse(NULL, bp); | 
| 520 | return 0; | 521 | return 0; | 
diff --git a/fs/xfs/xfs_dir2_leaf.c b/fs/xfs/xfs_dir2_leaf.c index 29f484c11b3a..e2d89854ec9e 100644 --- a/fs/xfs/xfs_dir2_leaf.c +++ b/fs/xfs/xfs_dir2_leaf.c  | |||
| @@ -1081,7 +1081,7 @@ xfs_dir2_leaf_getdents( | |||
| 1081 | dep = (xfs_dir2_data_entry_t *)ptr; | 1081 | dep = (xfs_dir2_data_entry_t *)ptr; | 
| 1082 | length = xfs_dir2_data_entsize(dep->namelen); | 1082 | length = xfs_dir2_data_entsize(dep->namelen); | 
| 1083 | 1083 | ||
| 1084 | if (filldir(dirent, dep->name, dep->namelen, | 1084 | if (filldir(dirent, (char *)dep->name, dep->namelen, | 
| 1085 | xfs_dir2_byte_to_dataptr(mp, curoff) & 0x7fffffff, | 1085 | xfs_dir2_byte_to_dataptr(mp, curoff) & 0x7fffffff, | 
| 1086 | be64_to_cpu(dep->inumber), DT_UNKNOWN)) | 1086 | be64_to_cpu(dep->inumber), DT_UNKNOWN)) | 
| 1087 | break; | 1087 | break; | 
diff --git a/fs/xfs/xfs_dir2_node.c b/fs/xfs/xfs_dir2_node.c index ce6e355199b5..78fc4d9ae756 100644 --- a/fs/xfs/xfs_dir2_node.c +++ b/fs/xfs/xfs_dir2_node.c  | |||
| @@ -65,7 +65,7 @@ static int xfs_dir2_node_addname_int(xfs_da_args_t *args, | |||
| 65 | /* | 65 | /* | 
| 66 | * Log entries from a freespace block. | 66 | * Log entries from a freespace block. | 
| 67 | */ | 67 | */ | 
| 68 | void | 68 | STATIC void | 
| 69 | xfs_dir2_free_log_bests( | 69 | xfs_dir2_free_log_bests( | 
| 70 | xfs_trans_t *tp, /* transaction pointer */ | 70 | xfs_trans_t *tp, /* transaction pointer */ | 
| 71 | xfs_dabuf_t *bp, /* freespace buffer */ | 71 | xfs_dabuf_t *bp, /* freespace buffer */ | 
diff --git a/fs/xfs/xfs_dir2_node.h b/fs/xfs/xfs_dir2_node.h index dde72db3d695..82dfe7147195 100644 --- a/fs/xfs/xfs_dir2_node.h +++ b/fs/xfs/xfs_dir2_node.h  | |||
| @@ -75,8 +75,6 @@ xfs_dir2_db_to_fdindex(struct xfs_mount *mp, xfs_dir2_db_t db) | |||
| 75 | return ((db) % XFS_DIR2_MAX_FREE_BESTS(mp)); | 75 | return ((db) % XFS_DIR2_MAX_FREE_BESTS(mp)); | 
| 76 | } | 76 | } | 
| 77 | 77 | ||
| 78 | extern void xfs_dir2_free_log_bests(struct xfs_trans *tp, struct xfs_dabuf *bp, | ||
| 79 | int first, int last); | ||
| 80 | extern int xfs_dir2_leaf_to_node(struct xfs_da_args *args, | 78 | extern int xfs_dir2_leaf_to_node(struct xfs_da_args *args, | 
| 81 | struct xfs_dabuf *lbp); | 79 | struct xfs_dabuf *lbp); | 
| 82 | extern xfs_dahash_t xfs_dir2_leafn_lasthash(struct xfs_dabuf *bp, int *count); | 80 | extern xfs_dahash_t xfs_dir2_leafn_lasthash(struct xfs_dabuf *bp, int *count); | 
diff --git a/fs/xfs/xfs_dir2_sf.c b/fs/xfs/xfs_dir2_sf.c index 9d4f17a69676..c1a5945d463a 100644 --- a/fs/xfs/xfs_dir2_sf.c +++ b/fs/xfs/xfs_dir2_sf.c  | |||
| @@ -782,7 +782,7 @@ xfs_dir2_sf_getdents( | |||
| 782 | } | 782 | } | 
| 783 | 783 | ||
| 784 | ino = xfs_dir2_sf_get_inumber(sfp, xfs_dir2_sf_inumberp(sfep)); | 784 | ino = xfs_dir2_sf_get_inumber(sfp, xfs_dir2_sf_inumberp(sfep)); | 
| 785 | if (filldir(dirent, sfep->name, sfep->namelen, | 785 | if (filldir(dirent, (char *)sfep->name, sfep->namelen, | 
| 786 | off & 0x7fffffff, ino, DT_UNKNOWN)) { | 786 | off & 0x7fffffff, ino, DT_UNKNOWN)) { | 
| 787 | *offset = off & 0x7fffffff; | 787 | *offset = off & 0x7fffffff; | 
| 788 | return 0; | 788 | return 0; | 
diff --git a/fs/xfs/xfs_extfree_item.c b/fs/xfs/xfs_extfree_item.c index 05a4bdd4be39..6f35ed1b39b9 100644 --- a/fs/xfs/xfs_extfree_item.c +++ b/fs/xfs/xfs_extfree_item.c  | |||
| @@ -82,7 +82,7 @@ xfs_efi_item_format(xfs_efi_log_item_t *efip, | |||
| 82 | 82 | ||
| 83 | log_vector->i_addr = (xfs_caddr_t)&(efip->efi_format); | 83 | log_vector->i_addr = (xfs_caddr_t)&(efip->efi_format); | 
| 84 | log_vector->i_len = size; | 84 | log_vector->i_len = size; | 
| 85 | XLOG_VEC_SET_TYPE(log_vector, XLOG_REG_TYPE_EFI_FORMAT); | 85 | log_vector->i_type = XLOG_REG_TYPE_EFI_FORMAT; | 
| 86 | ASSERT(size >= sizeof(xfs_efi_log_format_t)); | 86 | ASSERT(size >= sizeof(xfs_efi_log_format_t)); | 
| 87 | } | 87 | } | 
| 88 | 88 | ||
| @@ -406,7 +406,7 @@ xfs_efd_item_format(xfs_efd_log_item_t *efdp, | |||
| 406 | 406 | ||
| 407 | log_vector->i_addr = (xfs_caddr_t)&(efdp->efd_format); | 407 | log_vector->i_addr = (xfs_caddr_t)&(efdp->efd_format); | 
| 408 | log_vector->i_len = size; | 408 | log_vector->i_len = size; | 
| 409 | XLOG_VEC_SET_TYPE(log_vector, XLOG_REG_TYPE_EFD_FORMAT); | 409 | log_vector->i_type = XLOG_REG_TYPE_EFD_FORMAT; | 
| 410 | ASSERT(size >= sizeof(xfs_efd_log_format_t)); | 410 | ASSERT(size >= sizeof(xfs_efd_log_format_t)); | 
| 411 | } | 411 | } | 
| 412 | 412 | ||
diff --git a/fs/xfs/xfs_filestream.c b/fs/xfs/xfs_filestream.c index a631e1451abb..390850ee6603 100644 --- a/fs/xfs/xfs_filestream.c +++ b/fs/xfs/xfs_filestream.c  | |||
| @@ -140,6 +140,7 @@ _xfs_filestream_pick_ag( | |||
| 140 | int flags, | 140 | int flags, | 
| 141 | xfs_extlen_t minlen) | 141 | xfs_extlen_t minlen) | 
| 142 | { | 142 | { | 
| 143 | int streams, max_streams; | ||
| 143 | int err, trylock, nscan; | 144 | int err, trylock, nscan; | 
| 144 | xfs_extlen_t longest, free, minfree, maxfree = 0; | 145 | xfs_extlen_t longest, free, minfree, maxfree = 0; | 
| 145 | xfs_agnumber_t ag, max_ag = NULLAGNUMBER; | 146 | xfs_agnumber_t ag, max_ag = NULLAGNUMBER; | 
| @@ -155,15 +156,15 @@ _xfs_filestream_pick_ag( | |||
| 155 | trylock = XFS_ALLOC_FLAG_TRYLOCK; | 156 | trylock = XFS_ALLOC_FLAG_TRYLOCK; | 
| 156 | 157 | ||
| 157 | for (nscan = 0; 1; nscan++) { | 158 | for (nscan = 0; 1; nscan++) { | 
| 158 | 159 | pag = xfs_perag_get(mp, ag); | |
| 159 | TRACE_AG_SCAN(mp, ag, xfs_filestream_peek_ag(mp, ag)); | 160 | TRACE_AG_SCAN(mp, ag, atomic_read(&pag->pagf_fstrms)); | 
| 160 | |||
| 161 | pag = mp->m_perag + ag; | ||
| 162 | 161 | ||
| 163 | if (!pag->pagf_init) { | 162 | if (!pag->pagf_init) { | 
| 164 | err = xfs_alloc_pagf_init(mp, NULL, ag, trylock); | 163 | err = xfs_alloc_pagf_init(mp, NULL, ag, trylock); | 
| 165 | if (err && !trylock) | 164 | if (err && !trylock) { | 
| 165 | xfs_perag_put(pag); | ||
| 166 | return err; | 166 | return err; | 
| 167 | } | ||
| 167 | } | 168 | } | 
| 168 | 169 | ||
| 169 | /* Might fail sometimes during the 1st pass with trylock set. */ | 170 | /* Might fail sometimes during the 1st pass with trylock set. */ | 
| @@ -173,6 +174,7 @@ _xfs_filestream_pick_ag( | |||
| 173 | /* Keep track of the AG with the most free blocks. */ | 174 | /* Keep track of the AG with the most free blocks. */ | 
| 174 | if (pag->pagf_freeblks > maxfree) { | 175 | if (pag->pagf_freeblks > maxfree) { | 
| 175 | maxfree = pag->pagf_freeblks; | 176 | maxfree = pag->pagf_freeblks; | 
| 177 | max_streams = atomic_read(&pag->pagf_fstrms); | ||
| 176 | max_ag = ag; | 178 | max_ag = ag; | 
| 177 | } | 179 | } | 
| 178 | 180 | ||
| @@ -195,6 +197,8 @@ _xfs_filestream_pick_ag( | |||
| 195 | 197 | ||
| 196 | /* Break out, retaining the reference on the AG. */ | 198 | /* Break out, retaining the reference on the AG. */ | 
| 197 | free = pag->pagf_freeblks; | 199 | free = pag->pagf_freeblks; | 
| 200 | streams = atomic_read(&pag->pagf_fstrms); | ||
| 201 | xfs_perag_put(pag); | ||
| 198 | *agp = ag; | 202 | *agp = ag; | 
| 199 | break; | 203 | break; | 
| 200 | } | 204 | } | 
| @@ -202,6 +206,7 @@ _xfs_filestream_pick_ag( | |||
| 202 | /* Drop the reference on this AG, it's not usable. */ | 206 | /* Drop the reference on this AG, it's not usable. */ | 
| 203 | xfs_filestream_put_ag(mp, ag); | 207 | xfs_filestream_put_ag(mp, ag); | 
| 204 | next_ag: | 208 | next_ag: | 
| 209 | xfs_perag_put(pag); | ||
| 205 | /* Move to the next AG, wrapping to AG 0 if necessary. */ | 210 | /* Move to the next AG, wrapping to AG 0 if necessary. */ | 
| 206 | if (++ag >= mp->m_sb.sb_agcount) | 211 | if (++ag >= mp->m_sb.sb_agcount) | 
| 207 | ag = 0; | 212 | ag = 0; | 
| @@ -229,6 +234,7 @@ next_ag: | |||
| 229 | if (max_ag != NULLAGNUMBER) { | 234 | if (max_ag != NULLAGNUMBER) { | 
| 230 | xfs_filestream_get_ag(mp, max_ag); | 235 | xfs_filestream_get_ag(mp, max_ag); | 
| 231 | TRACE_AG_PICK1(mp, max_ag, maxfree); | 236 | TRACE_AG_PICK1(mp, max_ag, maxfree); | 
| 237 | streams = max_streams; | ||
| 232 | free = maxfree; | 238 | free = maxfree; | 
| 233 | *agp = max_ag; | 239 | *agp = max_ag; | 
| 234 | break; | 240 | break; | 
| @@ -240,16 +246,14 @@ next_ag: | |||
| 240 | return 0; | 246 | return 0; | 
| 241 | } | 247 | } | 
| 242 | 248 | ||
| 243 | TRACE_AG_PICK2(mp, startag, *agp, xfs_filestream_peek_ag(mp, *agp), | 249 | TRACE_AG_PICK2(mp, startag, *agp, streams, free, nscan, flags); | 
| 244 | free, nscan, flags); | ||
| 245 | 250 | ||
| 246 | return 0; | 251 | return 0; | 
| 247 | } | 252 | } | 
| 248 | 253 | ||
| 249 | /* | 254 | /* | 
| 250 | * Set the allocation group number for a file or a directory, updating inode | 255 | * Set the allocation group number for a file or a directory, updating inode | 
| 251 | * references and per-AG references as appropriate. Must be called with the | 256 | * references and per-AG references as appropriate. | 
| 252 | * m_peraglock held in read mode. | ||
| 253 | */ | 257 | */ | 
| 254 | static int | 258 | static int | 
| 255 | _xfs_filestream_update_ag( | 259 | _xfs_filestream_update_ag( | 
| @@ -451,20 +455,6 @@ xfs_filestream_unmount( | |||
| 451 | } | 455 | } | 
| 452 | 456 | ||
| 453 | /* | 457 | /* | 
| 454 | * If the mount point's m_perag array is going to be reallocated, all | ||
| 455 | * outstanding cache entries must be flushed to avoid accessing reference count | ||
| 456 | * addresses that have been freed. The call to xfs_filestream_flush() must be | ||
| 457 | * made inside the block that holds the m_peraglock in write mode to do the | ||
| 458 | * reallocation. | ||
| 459 | */ | ||
| 460 | void | ||
| 461 | xfs_filestream_flush( | ||
| 462 | xfs_mount_t *mp) | ||
| 463 | { | ||
| 464 | xfs_mru_cache_flush(mp->m_filestream); | ||
| 465 | } | ||
| 466 | |||
| 467 | /* | ||
| 468 | * Return the AG of the filestream the file or directory belongs to, or | 458 | * Return the AG of the filestream the file or directory belongs to, or | 
| 469 | * NULLAGNUMBER otherwise. | 459 | * NULLAGNUMBER otherwise. | 
| 470 | */ | 460 | */ | 
| @@ -526,7 +516,6 @@ xfs_filestream_associate( | |||
| 526 | 516 | ||
| 527 | mp = pip->i_mount; | 517 | mp = pip->i_mount; | 
| 528 | cache = mp->m_filestream; | 518 | cache = mp->m_filestream; | 
| 529 | down_read(&mp->m_peraglock); | ||
| 530 | 519 | ||
| 531 | /* | 520 | /* | 
| 532 | * We have a problem, Houston. | 521 | * We have a problem, Houston. | 
| @@ -543,10 +532,8 @@ xfs_filestream_associate( | |||
| 543 | * | 532 | * | 
| 544 | * So, if we can't get the iolock without sleeping then just give up | 533 | * So, if we can't get the iolock without sleeping then just give up | 
| 545 | */ | 534 | */ | 
| 546 | if (!xfs_ilock_nowait(pip, XFS_IOLOCK_EXCL)) { | 535 | if (!xfs_ilock_nowait(pip, XFS_IOLOCK_EXCL)) | 
| 547 | up_read(&mp->m_peraglock); | ||
| 548 | return 1; | 536 | return 1; | 
| 549 | } | ||
| 550 | 537 | ||
| 551 | /* If the parent directory is already in the cache, use its AG. */ | 538 | /* If the parent directory is already in the cache, use its AG. */ | 
| 552 | item = xfs_mru_cache_lookup(cache, pip->i_ino); | 539 | item = xfs_mru_cache_lookup(cache, pip->i_ino); | 
| @@ -601,7 +588,6 @@ exit_did_pick: | |||
| 601 | 588 | ||
| 602 | exit: | 589 | exit: | 
| 603 | xfs_iunlock(pip, XFS_IOLOCK_EXCL); | 590 | xfs_iunlock(pip, XFS_IOLOCK_EXCL); | 
| 604 | up_read(&mp->m_peraglock); | ||
| 605 | return -err; | 591 | return -err; | 
| 606 | } | 592 | } | 
| 607 | 593 | ||
diff --git a/fs/xfs/xfs_filestream.h b/fs/xfs/xfs_filestream.h index 4aba67c5f64f..260f757bbc5d 100644 --- a/fs/xfs/xfs_filestream.h +++ b/fs/xfs/xfs_filestream.h  | |||
| @@ -79,12 +79,21 @@ extern ktrace_t *xfs_filestreams_trace_buf; | |||
| 79 | * the cache that reference per-ag array elements that have since been | 79 | * the cache that reference per-ag array elements that have since been | 
| 80 | * reallocated. | 80 | * reallocated. | 
| 81 | */ | 81 | */ | 
| 82 | /* | ||
| 83 | * xfs_filestream_peek_ag is only used in tracing code | ||
| 84 | */ | ||
| 82 | static inline int | 85 | static inline int | 
| 83 | xfs_filestream_peek_ag( | 86 | xfs_filestream_peek_ag( | 
| 84 | xfs_mount_t *mp, | 87 | xfs_mount_t *mp, | 
| 85 | xfs_agnumber_t agno) | 88 | xfs_agnumber_t agno) | 
| 86 | { | 89 | { | 
| 87 | return atomic_read(&mp->m_perag[agno].pagf_fstrms); | 90 | struct xfs_perag *pag; | 
| 91 | int ret; | ||
| 92 | |||
| 93 | pag = xfs_perag_get(mp, agno); | ||
| 94 | ret = atomic_read(&pag->pagf_fstrms); | ||
| 95 | xfs_perag_put(pag); | ||
| 96 | return ret; | ||
| 88 | } | 97 | } | 
| 89 | 98 | ||
| 90 | static inline int | 99 | static inline int | 
| @@ -92,7 +101,13 @@ xfs_filestream_get_ag( | |||
| 92 | xfs_mount_t *mp, | 101 | xfs_mount_t *mp, | 
| 93 | xfs_agnumber_t agno) | 102 | xfs_agnumber_t agno) | 
| 94 | { | 103 | { | 
| 95 | return atomic_inc_return(&mp->m_perag[agno].pagf_fstrms); | 104 | struct xfs_perag *pag; | 
| 105 | int ret; | ||
| 106 | |||
| 107 | pag = xfs_perag_get(mp, agno); | ||
| 108 | ret = atomic_inc_return(&pag->pagf_fstrms); | ||
| 109 | xfs_perag_put(pag); | ||
| 110 | return ret; | ||
| 96 | } | 111 | } | 
| 97 | 112 | ||
| 98 | static inline int | 113 | static inline int | 
| @@ -100,7 +115,13 @@ xfs_filestream_put_ag( | |||
| 100 | xfs_mount_t *mp, | 115 | xfs_mount_t *mp, | 
| 101 | xfs_agnumber_t agno) | 116 | xfs_agnumber_t agno) | 
| 102 | { | 117 | { | 
| 103 | return atomic_dec_return(&mp->m_perag[agno].pagf_fstrms); | 118 | struct xfs_perag *pag; | 
| 119 | int ret; | ||
| 120 | |||
| 121 | pag = xfs_perag_get(mp, agno); | ||
| 122 | ret = atomic_dec_return(&pag->pagf_fstrms); | ||
| 123 | xfs_perag_put(pag); | ||
| 124 | return ret; | ||
| 104 | } | 125 | } | 
| 105 | 126 | ||
| 106 | /* allocation selection flags */ | 127 | /* allocation selection flags */ | 
| @@ -114,7 +135,6 @@ int xfs_filestream_init(void); | |||
| 114 | void xfs_filestream_uninit(void); | 135 | void xfs_filestream_uninit(void); | 
| 115 | int xfs_filestream_mount(struct xfs_mount *mp); | 136 | int xfs_filestream_mount(struct xfs_mount *mp); | 
| 116 | void xfs_filestream_unmount(struct xfs_mount *mp); | 137 | void xfs_filestream_unmount(struct xfs_mount *mp); | 
| 117 | void xfs_filestream_flush(struct xfs_mount *mp); | ||
| 118 | xfs_agnumber_t xfs_filestream_lookup_ag(struct xfs_inode *ip); | 138 | xfs_agnumber_t xfs_filestream_lookup_ag(struct xfs_inode *ip); | 
| 119 | int xfs_filestream_associate(struct xfs_inode *dip, struct xfs_inode *ip); | 139 | int xfs_filestream_associate(struct xfs_inode *dip, struct xfs_inode *ip); | 
| 120 | void xfs_filestream_deassociate(struct xfs_inode *ip); | 140 | void xfs_filestream_deassociate(struct xfs_inode *ip); | 
diff --git a/fs/xfs/xfs_fs.h b/fs/xfs/xfs_fs.h index f52ac276277e..7cf7220e7d5f 100644 --- a/fs/xfs/xfs_fs.h +++ b/fs/xfs/xfs_fs.h  | |||
| @@ -292,7 +292,8 @@ typedef struct xfs_bstat { | |||
| 292 | __s32 bs_extents; /* number of extents */ | 292 | __s32 bs_extents; /* number of extents */ | 
| 293 | __u32 bs_gen; /* generation count */ | 293 | __u32 bs_gen; /* generation count */ | 
| 294 | __u16 bs_projid; /* project id */ | 294 | __u16 bs_projid; /* project id */ | 
| 295 | unsigned char bs_pad[14]; /* pad space, unused */ | 295 | __u16 bs_forkoff; /* inode fork offset in bytes */ | 
| 296 | unsigned char bs_pad[12]; /* pad space, unused */ | ||
| 296 | __u32 bs_dmevmask; /* DMIG event mask */ | 297 | __u32 bs_dmevmask; /* DMIG event mask */ | 
| 297 | __u16 bs_dmstate; /* DMIG state info */ | 298 | __u16 bs_dmstate; /* DMIG state info */ | 
| 298 | __u16 bs_aextents; /* attribute number of extents */ | 299 | __u16 bs_aextents; /* attribute number of extents */ | 
diff --git a/fs/xfs/xfs_fsops.c b/fs/xfs/xfs_fsops.c index a13919a6a364..37a6f62c57b6 100644 --- a/fs/xfs/xfs_fsops.c +++ b/fs/xfs/xfs_fsops.c  | |||
| @@ -167,27 +167,14 @@ xfs_growfs_data_private( | |||
| 167 | } | 167 | } | 
| 168 | new = nb - mp->m_sb.sb_dblocks; | 168 | new = nb - mp->m_sb.sb_dblocks; | 
| 169 | oagcount = mp->m_sb.sb_agcount; | 169 | oagcount = mp->m_sb.sb_agcount; | 
| 170 | if (nagcount > oagcount) { | ||
| 171 | void *new_perag, *old_perag; | ||
| 172 | |||
| 173 | xfs_filestream_flush(mp); | ||
| 174 | |||
| 175 | new_perag = kmem_zalloc(sizeof(xfs_perag_t) * nagcount, | ||
| 176 | KM_MAYFAIL); | ||
| 177 | if (!new_perag) | ||
| 178 | return XFS_ERROR(ENOMEM); | ||
| 179 | |||
| 180 | down_write(&mp->m_peraglock); | ||
| 181 | memcpy(new_perag, mp->m_perag, sizeof(xfs_perag_t) * oagcount); | ||
| 182 | old_perag = mp->m_perag; | ||
| 183 | mp->m_perag = new_perag; | ||
| 184 | |||
| 185 | mp->m_flags |= XFS_MOUNT_32BITINODES; | ||
| 186 | nagimax = xfs_initialize_perag(mp, nagcount); | ||
| 187 | up_write(&mp->m_peraglock); | ||
| 188 | 170 | ||
| 189 | kmem_free(old_perag); | 171 | /* allocate the new per-ag structures */ | 
| 172 | if (nagcount > oagcount) { | ||
| 173 | error = xfs_initialize_perag(mp, nagcount, &nagimax); | ||
| 174 | if (error) | ||
| 175 | return error; | ||
| 190 | } | 176 | } | 
| 177 | |||
| 191 | tp = xfs_trans_alloc(mp, XFS_TRANS_GROWFS); | 178 | tp = xfs_trans_alloc(mp, XFS_TRANS_GROWFS); | 
| 192 | tp->t_flags |= XFS_TRANS_RESERVE; | 179 | tp->t_flags |= XFS_TRANS_RESERVE; | 
| 193 | if ((error = xfs_trans_reserve(tp, XFS_GROWFS_SPACE_RES(mp), | 180 | if ((error = xfs_trans_reserve(tp, XFS_GROWFS_SPACE_RES(mp), | 
| @@ -196,6 +183,11 @@ xfs_growfs_data_private( | |||
| 196 | return error; | 183 | return error; | 
| 197 | } | 184 | } | 
| 198 | 185 | ||
| 186 | /* | ||
| 187 | * Write new AG headers to disk. Non-transactional, but written | ||
| 188 | * synchronously so they are completed prior to the growfs transaction | ||
| 189 | * being logged. | ||
| 190 | */ | ||
| 199 | nfree = 0; | 191 | nfree = 0; | 
| 200 | for (agno = nagcount - 1; agno >= oagcount; agno--, new -= agsize) { | 192 | for (agno = nagcount - 1; agno >= oagcount; agno--, new -= agsize) { | 
| 201 | /* | 193 | /* | 
| @@ -359,6 +351,12 @@ xfs_growfs_data_private( | |||
| 359 | goto error0; | 351 | goto error0; | 
| 360 | } | 352 | } | 
| 361 | } | 353 | } | 
| 354 | |||
| 355 | /* | ||
| 356 | * Update changed superblock fields transactionally. These are not | ||
| 357 | * seen by the rest of the world until the transaction commit applies | ||
| 358 | * them atomically to the superblock. | ||
| 359 | */ | ||
| 362 | if (nagcount > oagcount) | 360 | if (nagcount > oagcount) | 
| 363 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_AGCOUNT, nagcount - oagcount); | 361 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_AGCOUNT, nagcount - oagcount); | 
| 364 | if (nb > mp->m_sb.sb_dblocks) | 362 | if (nb > mp->m_sb.sb_dblocks) | 
| @@ -369,9 +367,9 @@ xfs_growfs_data_private( | |||
| 369 | if (dpct) | 367 | if (dpct) | 
| 370 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_IMAXPCT, dpct); | 368 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_IMAXPCT, dpct); | 
| 371 | error = xfs_trans_commit(tp, 0); | 369 | error = xfs_trans_commit(tp, 0); | 
| 372 | if (error) { | 370 | if (error) | 
| 373 | return error; | 371 | return error; | 
| 374 | } | 372 | |
| 375 | /* New allocation groups fully initialized, so update mount struct */ | 373 | /* New allocation groups fully initialized, so update mount struct */ | 
| 376 | if (nagimax) | 374 | if (nagimax) | 
| 377 | mp->m_maxagi = nagimax; | 375 | mp->m_maxagi = nagimax; | 
| @@ -381,6 +379,8 @@ xfs_growfs_data_private( | |||
| 381 | mp->m_maxicount = icount << mp->m_sb.sb_inopblog; | 379 | mp->m_maxicount = icount << mp->m_sb.sb_inopblog; | 
| 382 | } else | 380 | } else | 
| 383 | mp->m_maxicount = 0; | 381 | mp->m_maxicount = 0; | 
| 382 | |||
| 383 | /* update secondary superblocks. */ | ||
| 384 | for (agno = 1; agno < nagcount; agno++) { | 384 | for (agno = 1; agno < nagcount; agno++) { | 
| 385 | error = xfs_read_buf(mp, mp->m_ddev_targp, | 385 | error = xfs_read_buf(mp, mp->m_ddev_targp, | 
| 386 | XFS_AGB_TO_DADDR(mp, agno, XFS_SB_BLOCK(mp)), | 386 | XFS_AGB_TO_DADDR(mp, agno, XFS_SB_BLOCK(mp)), | 
diff --git a/fs/xfs/xfs_ialloc.c b/fs/xfs/xfs_ialloc.c index cb907ba69c4c..9d884c127bb9 100644 --- a/fs/xfs/xfs_ialloc.c +++ b/fs/xfs/xfs_ialloc.c  | |||
| @@ -205,7 +205,7 @@ xfs_ialloc_inode_init( | |||
| 205 | d = XFS_AGB_TO_DADDR(mp, agno, agbno + (j * blks_per_cluster)); | 205 | d = XFS_AGB_TO_DADDR(mp, agno, agbno + (j * blks_per_cluster)); | 
| 206 | fbuf = xfs_trans_get_buf(tp, mp->m_ddev_targp, d, | 206 | fbuf = xfs_trans_get_buf(tp, mp->m_ddev_targp, d, | 
| 207 | mp->m_bsize * blks_per_cluster, | 207 | mp->m_bsize * blks_per_cluster, | 
| 208 | XFS_BUF_LOCK); | 208 | XBF_LOCK); | 
| 209 | ASSERT(fbuf); | 209 | ASSERT(fbuf); | 
| 210 | ASSERT(!XFS_BUF_GETERROR(fbuf)); | 210 | ASSERT(!XFS_BUF_GETERROR(fbuf)); | 
| 211 | 211 | ||
| @@ -253,6 +253,7 @@ xfs_ialloc_ag_alloc( | |||
| 253 | xfs_agino_t thisino; /* current inode number, for loop */ | 253 | xfs_agino_t thisino; /* current inode number, for loop */ | 
| 254 | int isaligned = 0; /* inode allocation at stripe unit */ | 254 | int isaligned = 0; /* inode allocation at stripe unit */ | 
| 255 | /* boundary */ | 255 | /* boundary */ | 
| 256 | struct xfs_perag *pag; | ||
| 256 | 257 | ||
| 257 | args.tp = tp; | 258 | args.tp = tp; | 
| 258 | args.mp = tp->t_mountp; | 259 | args.mp = tp->t_mountp; | 
| @@ -382,9 +383,9 @@ xfs_ialloc_ag_alloc( | |||
| 382 | newino = XFS_OFFBNO_TO_AGINO(args.mp, args.agbno, 0); | 383 | newino = XFS_OFFBNO_TO_AGINO(args.mp, args.agbno, 0); | 
| 383 | be32_add_cpu(&agi->agi_count, newlen); | 384 | be32_add_cpu(&agi->agi_count, newlen); | 
| 384 | be32_add_cpu(&agi->agi_freecount, newlen); | 385 | be32_add_cpu(&agi->agi_freecount, newlen); | 
| 385 | down_read(&args.mp->m_peraglock); | 386 | pag = xfs_perag_get(args.mp, agno); | 
| 386 | args.mp->m_perag[agno].pagi_freecount += newlen; | 387 | pag->pagi_freecount += newlen; | 
| 387 | up_read(&args.mp->m_peraglock); | 388 | xfs_perag_put(pag); | 
| 388 | agi->agi_newino = cpu_to_be32(newino); | 389 | agi->agi_newino = cpu_to_be32(newino); | 
| 389 | 390 | ||
| 390 | /* | 391 | /* | 
| @@ -486,9 +487,8 @@ xfs_ialloc_ag_select( | |||
| 486 | */ | 487 | */ | 
| 487 | agno = pagno; | 488 | agno = pagno; | 
| 488 | flags = XFS_ALLOC_FLAG_TRYLOCK; | 489 | flags = XFS_ALLOC_FLAG_TRYLOCK; | 
| 489 | down_read(&mp->m_peraglock); | ||
| 490 | for (;;) { | 490 | for (;;) { | 
| 491 | pag = &mp->m_perag[agno]; | 491 | pag = xfs_perag_get(mp, agno); | 
| 492 | if (!pag->pagi_init) { | 492 | if (!pag->pagi_init) { | 
| 493 | if (xfs_ialloc_read_agi(mp, tp, agno, &agbp)) { | 493 | if (xfs_ialloc_read_agi(mp, tp, agno, &agbp)) { | 
| 494 | agbp = NULL; | 494 | agbp = NULL; | 
| @@ -527,7 +527,7 @@ xfs_ialloc_ag_select( | |||
| 527 | agbp = NULL; | 527 | agbp = NULL; | 
| 528 | goto nextag; | 528 | goto nextag; | 
| 529 | } | 529 | } | 
| 530 | up_read(&mp->m_peraglock); | 530 | xfs_perag_put(pag); | 
| 531 | return agbp; | 531 | return agbp; | 
| 532 | } | 532 | } | 
| 533 | } | 533 | } | 
| @@ -535,22 +535,19 @@ unlock_nextag: | |||
| 535 | if (agbp) | 535 | if (agbp) | 
| 536 | xfs_trans_brelse(tp, agbp); | 536 | xfs_trans_brelse(tp, agbp); | 
| 537 | nextag: | 537 | nextag: | 
| 538 | xfs_perag_put(pag); | ||
| 538 | /* | 539 | /* | 
| 539 | * No point in iterating over the rest, if we're shutting | 540 | * No point in iterating over the rest, if we're shutting | 
| 540 | * down. | 541 | * down. | 
| 541 | */ | 542 | */ | 
| 542 | if (XFS_FORCED_SHUTDOWN(mp)) { | 543 | if (XFS_FORCED_SHUTDOWN(mp)) | 
| 543 | up_read(&mp->m_peraglock); | ||
| 544 | return NULL; | 544 | return NULL; | 
| 545 | } | ||
| 546 | agno++; | 545 | agno++; | 
| 547 | if (agno >= agcount) | 546 | if (agno >= agcount) | 
| 548 | agno = 0; | 547 | agno = 0; | 
| 549 | if (agno == pagno) { | 548 | if (agno == pagno) { | 
| 550 | if (flags == 0) { | 549 | if (flags == 0) | 
| 551 | up_read(&mp->m_peraglock); | ||
| 552 | return NULL; | 550 | return NULL; | 
| 553 | } | ||
| 554 | flags = 0; | 551 | flags = 0; | 
| 555 | } | 552 | } | 
| 556 | } | 553 | } | 
| @@ -672,6 +669,7 @@ xfs_dialloc( | |||
| 672 | xfs_agnumber_t tagno; /* testing allocation group number */ | 669 | xfs_agnumber_t tagno; /* testing allocation group number */ | 
| 673 | xfs_btree_cur_t *tcur; /* temp cursor */ | 670 | xfs_btree_cur_t *tcur; /* temp cursor */ | 
| 674 | xfs_inobt_rec_incore_t trec; /* temp inode allocation record */ | 671 | xfs_inobt_rec_incore_t trec; /* temp inode allocation record */ | 
| 672 | struct xfs_perag *pag; | ||
| 675 | 673 | ||
| 676 | 674 | ||
| 677 | if (*IO_agbp == NULL) { | 675 | if (*IO_agbp == NULL) { | 
| @@ -771,13 +769,13 @@ nextag: | |||
| 771 | *inop = NULLFSINO; | 769 | *inop = NULLFSINO; | 
| 772 | return noroom ? ENOSPC : 0; | 770 | return noroom ? ENOSPC : 0; | 
| 773 | } | 771 | } | 
| 774 | down_read(&mp->m_peraglock); | 772 | pag = xfs_perag_get(mp, tagno); | 
| 775 | if (mp->m_perag[tagno].pagi_inodeok == 0) { | 773 | if (pag->pagi_inodeok == 0) { | 
| 776 | up_read(&mp->m_peraglock); | 774 | xfs_perag_put(pag); | 
| 777 | goto nextag; | 775 | goto nextag; | 
| 778 | } | 776 | } | 
| 779 | error = xfs_ialloc_read_agi(mp, tp, tagno, &agbp); | 777 | error = xfs_ialloc_read_agi(mp, tp, tagno, &agbp); | 
| 780 | up_read(&mp->m_peraglock); | 778 | xfs_perag_put(pag); | 
| 781 | if (error) | 779 | if (error) | 
| 782 | goto nextag; | 780 | goto nextag; | 
| 783 | agi = XFS_BUF_TO_AGI(agbp); | 781 | agi = XFS_BUF_TO_AGI(agbp); | 
| @@ -790,6 +788,7 @@ nextag: | |||
| 790 | */ | 788 | */ | 
| 791 | agno = tagno; | 789 | agno = tagno; | 
| 792 | *IO_agbp = NULL; | 790 | *IO_agbp = NULL; | 
| 791 | pag = xfs_perag_get(mp, agno); | ||
| 793 | 792 | ||
| 794 | restart_pagno: | 793 | restart_pagno: | 
| 795 | cur = xfs_inobt_init_cursor(mp, tp, agbp, be32_to_cpu(agi->agi_seqno)); | 794 | cur = xfs_inobt_init_cursor(mp, tp, agbp, be32_to_cpu(agi->agi_seqno)); | 
| @@ -808,7 +807,6 @@ nextag: | |||
| 808 | * If in the same AG as the parent, try to get near the parent. | 807 | * If in the same AG as the parent, try to get near the parent. | 
| 809 | */ | 808 | */ | 
| 810 | if (pagno == agno) { | 809 | if (pagno == agno) { | 
| 811 | xfs_perag_t *pag = &mp->m_perag[agno]; | ||
| 812 | int doneleft; /* done, to the left */ | 810 | int doneleft; /* done, to the left */ | 
| 813 | int doneright; /* done, to the right */ | 811 | int doneright; /* done, to the right */ | 
| 814 | int searchdistance = 10; | 812 | int searchdistance = 10; | 
| @@ -1006,9 +1004,7 @@ alloc_inode: | |||
| 1006 | goto error0; | 1004 | goto error0; | 
| 1007 | be32_add_cpu(&agi->agi_freecount, -1); | 1005 | be32_add_cpu(&agi->agi_freecount, -1); | 
| 1008 | xfs_ialloc_log_agi(tp, agbp, XFS_AGI_FREECOUNT); | 1006 | xfs_ialloc_log_agi(tp, agbp, XFS_AGI_FREECOUNT); | 
| 1009 | down_read(&mp->m_peraglock); | 1007 | pag->pagi_freecount--; | 
| 1010 | mp->m_perag[tagno].pagi_freecount--; | ||
| 1011 | up_read(&mp->m_peraglock); | ||
| 1012 | 1008 | ||
| 1013 | error = xfs_check_agi_freecount(cur, agi); | 1009 | error = xfs_check_agi_freecount(cur, agi); | 
| 1014 | if (error) | 1010 | if (error) | 
| @@ -1016,12 +1012,14 @@ alloc_inode: | |||
| 1016 | 1012 | ||
| 1017 | xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR); | 1013 | xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR); | 
| 1018 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, -1); | 1014 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, -1); | 
| 1015 | xfs_perag_put(pag); | ||
| 1019 | *inop = ino; | 1016 | *inop = ino; | 
| 1020 | return 0; | 1017 | return 0; | 
| 1021 | error1: | 1018 | error1: | 
| 1022 | xfs_btree_del_cursor(tcur, XFS_BTREE_ERROR); | 1019 | xfs_btree_del_cursor(tcur, XFS_BTREE_ERROR); | 
| 1023 | error0: | 1020 | error0: | 
| 1024 | xfs_btree_del_cursor(cur, XFS_BTREE_ERROR); | 1021 | xfs_btree_del_cursor(cur, XFS_BTREE_ERROR); | 
| 1022 | xfs_perag_put(pag); | ||
| 1025 | return error; | 1023 | return error; | 
| 1026 | } | 1024 | } | 
| 1027 | 1025 | ||
| @@ -1052,6 +1050,7 @@ xfs_difree( | |||
| 1052 | xfs_mount_t *mp; /* mount structure for filesystem */ | 1050 | xfs_mount_t *mp; /* mount structure for filesystem */ | 
| 1053 | int off; /* offset of inode in inode chunk */ | 1051 | int off; /* offset of inode in inode chunk */ | 
| 1054 | xfs_inobt_rec_incore_t rec; /* btree record */ | 1052 | xfs_inobt_rec_incore_t rec; /* btree record */ | 
| 1053 | struct xfs_perag *pag; | ||
| 1055 | 1054 | ||
| 1056 | mp = tp->t_mountp; | 1055 | mp = tp->t_mountp; | 
| 1057 | 1056 | ||
| @@ -1088,9 +1087,7 @@ xfs_difree( | |||
| 1088 | /* | 1087 | /* | 
| 1089 | * Get the allocation group header. | 1088 | * Get the allocation group header. | 
| 1090 | */ | 1089 | */ | 
| 1091 | down_read(&mp->m_peraglock); | ||
| 1092 | error = xfs_ialloc_read_agi(mp, tp, agno, &agbp); | 1090 | error = xfs_ialloc_read_agi(mp, tp, agno, &agbp); | 
| 1093 | up_read(&mp->m_peraglock); | ||
| 1094 | if (error) { | 1091 | if (error) { | 
| 1095 | cmn_err(CE_WARN, | 1092 | cmn_err(CE_WARN, | 
| 1096 | "xfs_difree: xfs_ialloc_read_agi() returned an error %d on %s. Returning error.", | 1093 | "xfs_difree: xfs_ialloc_read_agi() returned an error %d on %s. Returning error.", | 
| @@ -1157,9 +1154,9 @@ xfs_difree( | |||
| 1157 | be32_add_cpu(&agi->agi_count, -ilen); | 1154 | be32_add_cpu(&agi->agi_count, -ilen); | 
| 1158 | be32_add_cpu(&agi->agi_freecount, -(ilen - 1)); | 1155 | be32_add_cpu(&agi->agi_freecount, -(ilen - 1)); | 
| 1159 | xfs_ialloc_log_agi(tp, agbp, XFS_AGI_COUNT | XFS_AGI_FREECOUNT); | 1156 | xfs_ialloc_log_agi(tp, agbp, XFS_AGI_COUNT | XFS_AGI_FREECOUNT); | 
| 1160 | down_read(&mp->m_peraglock); | 1157 | pag = xfs_perag_get(mp, agno); | 
| 1161 | mp->m_perag[agno].pagi_freecount -= ilen - 1; | 1158 | pag->pagi_freecount -= ilen - 1; | 
| 1162 | up_read(&mp->m_peraglock); | 1159 | xfs_perag_put(pag); | 
| 1163 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_ICOUNT, -ilen); | 1160 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_ICOUNT, -ilen); | 
| 1164 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, -(ilen - 1)); | 1161 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, -(ilen - 1)); | 
| 1165 | 1162 | ||
| @@ -1188,9 +1185,9 @@ xfs_difree( | |||
| 1188 | */ | 1185 | */ | 
| 1189 | be32_add_cpu(&agi->agi_freecount, 1); | 1186 | be32_add_cpu(&agi->agi_freecount, 1); | 
| 1190 | xfs_ialloc_log_agi(tp, agbp, XFS_AGI_FREECOUNT); | 1187 | xfs_ialloc_log_agi(tp, agbp, XFS_AGI_FREECOUNT); | 
| 1191 | down_read(&mp->m_peraglock); | 1188 | pag = xfs_perag_get(mp, agno); | 
| 1192 | mp->m_perag[agno].pagi_freecount++; | 1189 | pag->pagi_freecount++; | 
| 1193 | up_read(&mp->m_peraglock); | 1190 | xfs_perag_put(pag); | 
| 1194 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, 1); | 1191 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, 1); | 
| 1195 | } | 1192 | } | 
| 1196 | 1193 | ||
| @@ -1312,9 +1309,7 @@ xfs_imap( | |||
| 1312 | xfs_buf_t *agbp; /* agi buffer */ | 1309 | xfs_buf_t *agbp; /* agi buffer */ | 
| 1313 | int i; /* temp state */ | 1310 | int i; /* temp state */ | 
| 1314 | 1311 | ||
| 1315 | down_read(&mp->m_peraglock); | ||
| 1316 | error = xfs_ialloc_read_agi(mp, tp, agno, &agbp); | 1312 | error = xfs_ialloc_read_agi(mp, tp, agno, &agbp); | 
| 1317 | up_read(&mp->m_peraglock); | ||
| 1318 | if (error) { | 1313 | if (error) { | 
| 1319 | xfs_fs_cmn_err(CE_ALERT, mp, "xfs_imap: " | 1314 | xfs_fs_cmn_err(CE_ALERT, mp, "xfs_imap: " | 
| 1320 | "xfs_ialloc_read_agi() returned " | 1315 | "xfs_ialloc_read_agi() returned " | 
| @@ -1379,7 +1374,6 @@ xfs_imap( | |||
| 1379 | XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks)); | 1374 | XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks)); | 
| 1380 | return XFS_ERROR(EINVAL); | 1375 | return XFS_ERROR(EINVAL); | 
| 1381 | } | 1376 | } | 
| 1382 | |||
| 1383 | return 0; | 1377 | return 0; | 
| 1384 | } | 1378 | } | 
| 1385 | 1379 | ||
| @@ -1523,8 +1517,7 @@ xfs_ialloc_read_agi( | |||
| 1523 | return error; | 1517 | return error; | 
| 1524 | 1518 | ||
| 1525 | agi = XFS_BUF_TO_AGI(*bpp); | 1519 | agi = XFS_BUF_TO_AGI(*bpp); | 
| 1526 | pag = &mp->m_perag[agno]; | 1520 | pag = xfs_perag_get(mp, agno); | 
| 1527 | |||
| 1528 | if (!pag->pagi_init) { | 1521 | if (!pag->pagi_init) { | 
| 1529 | pag->pagi_freecount = be32_to_cpu(agi->agi_freecount); | 1522 | pag->pagi_freecount = be32_to_cpu(agi->agi_freecount); | 
| 1530 | pag->pagi_count = be32_to_cpu(agi->agi_count); | 1523 | pag->pagi_count = be32_to_cpu(agi->agi_count); | 
| @@ -1537,6 +1530,7 @@ xfs_ialloc_read_agi( | |||
| 1537 | */ | 1530 | */ | 
| 1538 | ASSERT(pag->pagi_freecount == be32_to_cpu(agi->agi_freecount) || | 1531 | ASSERT(pag->pagi_freecount == be32_to_cpu(agi->agi_freecount) || | 
| 1539 | XFS_FORCED_SHUTDOWN(mp)); | 1532 | XFS_FORCED_SHUTDOWN(mp)); | 
| 1533 | xfs_perag_put(pag); | ||
| 1540 | return 0; | 1534 | return 0; | 
| 1541 | } | 1535 | } | 
| 1542 | 1536 | ||
diff --git a/fs/xfs/xfs_iget.c b/fs/xfs/xfs_iget.c index 155e798f30a1..6845db90818f 100644 --- a/fs/xfs/xfs_iget.c +++ b/fs/xfs/xfs_iget.c  | |||
| @@ -190,13 +190,12 @@ xfs_iget_cache_hit( | |||
| 190 | trace_xfs_iget_reclaim(ip); | 190 | trace_xfs_iget_reclaim(ip); | 
| 191 | 191 | ||
| 192 | /* | 192 | /* | 
| 193 | * We need to set XFS_INEW atomically with clearing the | 193 | * We need to set XFS_IRECLAIM to prevent xfs_reclaim_inode | 
| 194 | * reclaimable tag so that we do have an indicator of the | 194 | * from stomping over us while we recycle the inode. We can't | 
| 195 | * inode still being initialized. | 195 | * clear the radix tree reclaimable tag yet as it requires | 
| 196 | * pag_ici_lock to be held exclusive. | ||
| 196 | */ | 197 | */ | 
| 197 | ip->i_flags |= XFS_INEW; | 198 | ip->i_flags |= XFS_IRECLAIM; | 
| 198 | ip->i_flags &= ~XFS_IRECLAIMABLE; | ||
| 199 | __xfs_inode_clear_reclaim_tag(mp, pag, ip); | ||
| 200 | 199 | ||
| 201 | spin_unlock(&ip->i_flags_lock); | 200 | spin_unlock(&ip->i_flags_lock); | 
| 202 | read_unlock(&pag->pag_ici_lock); | 201 | read_unlock(&pag->pag_ici_lock); | 
| @@ -216,7 +215,15 @@ xfs_iget_cache_hit( | |||
| 216 | trace_xfs_iget_reclaim(ip); | 215 | trace_xfs_iget_reclaim(ip); | 
| 217 | goto out_error; | 216 | goto out_error; | 
| 218 | } | 217 | } | 
| 218 | |||
| 219 | write_lock(&pag->pag_ici_lock); | ||
| 220 | spin_lock(&ip->i_flags_lock); | ||
| 221 | ip->i_flags &= ~(XFS_IRECLAIMABLE | XFS_IRECLAIM); | ||
| 222 | ip->i_flags |= XFS_INEW; | ||
| 223 | __xfs_inode_clear_reclaim_tag(mp, pag, ip); | ||
| 219 | inode->i_state = I_NEW; | 224 | inode->i_state = I_NEW; | 
| 225 | spin_unlock(&ip->i_flags_lock); | ||
| 226 | write_unlock(&pag->pag_ici_lock); | ||
| 220 | } else { | 227 | } else { | 
| 221 | /* If the VFS inode is being torn down, pause and try again. */ | 228 | /* If the VFS inode is being torn down, pause and try again. */ | 
| 222 | if (!igrab(inode)) { | 229 | if (!igrab(inode)) { | 
| @@ -374,7 +381,7 @@ xfs_iget( | |||
| 374 | return EINVAL; | 381 | return EINVAL; | 
| 375 | 382 | ||
| 376 | /* get the perag structure and ensure that it's inode capable */ | 383 | /* get the perag structure and ensure that it's inode capable */ | 
| 377 | pag = xfs_get_perag(mp, ino); | 384 | pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ino)); | 
| 378 | if (!pag->pagi_inodeok) | 385 | if (!pag->pagi_inodeok) | 
| 379 | return EINVAL; | 386 | return EINVAL; | 
| 380 | ASSERT(pag->pag_ici_init); | 387 | ASSERT(pag->pag_ici_init); | 
| @@ -398,7 +405,7 @@ again: | |||
| 398 | if (error) | 405 | if (error) | 
| 399 | goto out_error_or_again; | 406 | goto out_error_or_again; | 
| 400 | } | 407 | } | 
| 401 | xfs_put_perag(mp, pag); | 408 | xfs_perag_put(pag); | 
| 402 | 409 | ||
| 403 | *ipp = ip; | 410 | *ipp = ip; | 
| 404 | 411 | ||
| @@ -417,7 +424,7 @@ out_error_or_again: | |||
| 417 | delay(1); | 424 | delay(1); | 
| 418 | goto again; | 425 | goto again; | 
| 419 | } | 426 | } | 
| 420 | xfs_put_perag(mp, pag); | 427 | xfs_perag_put(pag); | 
| 421 | return error; | 428 | return error; | 
| 422 | } | 429 | } | 
| 423 | 430 | ||
| @@ -488,12 +495,12 @@ xfs_ireclaim( | |||
| 488 | * added to the tree assert that it's been there before to catch | 495 | * added to the tree assert that it's been there before to catch | 
| 489 | * problems with the inode life time early on. | 496 | * problems with the inode life time early on. | 
| 490 | */ | 497 | */ | 
| 491 | pag = xfs_get_perag(mp, ip->i_ino); | 498 | pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino)); | 
| 492 | write_lock(&pag->pag_ici_lock); | 499 | write_lock(&pag->pag_ici_lock); | 
| 493 | if (!radix_tree_delete(&pag->pag_ici_root, agino)) | 500 | if (!radix_tree_delete(&pag->pag_ici_root, agino)) | 
| 494 | ASSERT(0); | 501 | ASSERT(0); | 
| 495 | write_unlock(&pag->pag_ici_lock); | 502 | write_unlock(&pag->pag_ici_lock); | 
| 496 | xfs_put_perag(mp, pag); | 503 | xfs_perag_put(pag); | 
| 497 | 504 | ||
| 498 | /* | 505 | /* | 
| 499 | * Here we do an (almost) spurious inode lock in order to coordinate | 506 | * Here we do an (almost) spurious inode lock in order to coordinate | 
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c index ef77fd88c8e3..0ffd56447045 100644 --- a/fs/xfs/xfs_inode.c +++ b/fs/xfs/xfs_inode.c  | |||
| @@ -151,7 +151,7 @@ xfs_imap_to_bp( | |||
| 151 | "an error %d on %s. Returning error.", | 151 | "an error %d on %s. Returning error.", | 
| 152 | error, mp->m_fsname); | 152 | error, mp->m_fsname); | 
| 153 | } else { | 153 | } else { | 
| 154 | ASSERT(buf_flags & XFS_BUF_TRYLOCK); | 154 | ASSERT(buf_flags & XBF_TRYLOCK); | 
| 155 | } | 155 | } | 
| 156 | return error; | 156 | return error; | 
| 157 | } | 157 | } | 
| @@ -239,7 +239,7 @@ xfs_inotobp( | |||
| 239 | if (error) | 239 | if (error) | 
| 240 | return error; | 240 | return error; | 
| 241 | 241 | ||
| 242 | error = xfs_imap_to_bp(mp, tp, &imap, &bp, XFS_BUF_LOCK, imap_flags); | 242 | error = xfs_imap_to_bp(mp, tp, &imap, &bp, XBF_LOCK, imap_flags); | 
| 243 | if (error) | 243 | if (error) | 
| 244 | return error; | 244 | return error; | 
| 245 | 245 | ||
| @@ -285,7 +285,7 @@ xfs_itobp( | |||
| 285 | return error; | 285 | return error; | 
| 286 | 286 | ||
| 287 | if (!bp) { | 287 | if (!bp) { | 
| 288 | ASSERT(buf_flags & XFS_BUF_TRYLOCK); | 288 | ASSERT(buf_flags & XBF_TRYLOCK); | 
| 289 | ASSERT(tp == NULL); | 289 | ASSERT(tp == NULL); | 
| 290 | *bpp = NULL; | 290 | *bpp = NULL; | 
| 291 | return EAGAIN; | 291 | return EAGAIN; | 
| @@ -807,7 +807,7 @@ xfs_iread( | |||
| 807 | * Get pointers to the on-disk inode and the buffer containing it. | 807 | * Get pointers to the on-disk inode and the buffer containing it. | 
| 808 | */ | 808 | */ | 
| 809 | error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &bp, | 809 | error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &bp, | 
| 810 | XFS_BUF_LOCK, iget_flags); | 810 | XBF_LOCK, iget_flags); | 
| 811 | if (error) | 811 | if (error) | 
| 812 | return error; | 812 | return error; | 
| 813 | dip = (xfs_dinode_t *)xfs_buf_offset(bp, ip->i_imap.im_boffset); | 813 | dip = (xfs_dinode_t *)xfs_buf_offset(bp, ip->i_imap.im_boffset); | 
| @@ -1751,7 +1751,7 @@ xfs_iunlink( | |||
| 1751 | * Here we put the head pointer into our next pointer, | 1751 | * Here we put the head pointer into our next pointer, | 
| 1752 | * and then we fall through to point the head at us. | 1752 | * and then we fall through to point the head at us. | 
| 1753 | */ | 1753 | */ | 
| 1754 | error = xfs_itobp(mp, tp, ip, &dip, &ibp, XFS_BUF_LOCK); | 1754 | error = xfs_itobp(mp, tp, ip, &dip, &ibp, XBF_LOCK); | 
| 1755 | if (error) | 1755 | if (error) | 
| 1756 | return error; | 1756 | return error; | 
| 1757 | 1757 | ||
| @@ -1833,7 +1833,7 @@ xfs_iunlink_remove( | |||
| 1833 | * of dealing with the buffer when there is no need to | 1833 | * of dealing with the buffer when there is no need to | 
| 1834 | * change it. | 1834 | * change it. | 
| 1835 | */ | 1835 | */ | 
| 1836 | error = xfs_itobp(mp, tp, ip, &dip, &ibp, XFS_BUF_LOCK); | 1836 | error = xfs_itobp(mp, tp, ip, &dip, &ibp, XBF_LOCK); | 
| 1837 | if (error) { | 1837 | if (error) { | 
| 1838 | cmn_err(CE_WARN, | 1838 | cmn_err(CE_WARN, | 
| 1839 | "xfs_iunlink_remove: xfs_itobp() returned an error %d on %s. Returning error.", | 1839 | "xfs_iunlink_remove: xfs_itobp() returned an error %d on %s. Returning error.", | 
| @@ -1895,7 +1895,7 @@ xfs_iunlink_remove( | |||
| 1895 | * Now last_ibp points to the buffer previous to us on | 1895 | * Now last_ibp points to the buffer previous to us on | 
| 1896 | * the unlinked list. Pull us from the list. | 1896 | * the unlinked list. Pull us from the list. | 
| 1897 | */ | 1897 | */ | 
| 1898 | error = xfs_itobp(mp, tp, ip, &dip, &ibp, XFS_BUF_LOCK); | 1898 | error = xfs_itobp(mp, tp, ip, &dip, &ibp, XBF_LOCK); | 
| 1899 | if (error) { | 1899 | if (error) { | 
| 1900 | cmn_err(CE_WARN, | 1900 | cmn_err(CE_WARN, | 
| 1901 | "xfs_iunlink_remove: xfs_itobp() returned an error %d on %s. Returning error.", | 1901 | "xfs_iunlink_remove: xfs_itobp() returned an error %d on %s. Returning error.", | 
| @@ -1946,8 +1946,9 @@ xfs_ifree_cluster( | |||
| 1946 | xfs_inode_t *ip, **ip_found; | 1946 | xfs_inode_t *ip, **ip_found; | 
| 1947 | xfs_inode_log_item_t *iip; | 1947 | xfs_inode_log_item_t *iip; | 
| 1948 | xfs_log_item_t *lip; | 1948 | xfs_log_item_t *lip; | 
| 1949 | xfs_perag_t *pag = xfs_get_perag(mp, inum); | 1949 | struct xfs_perag *pag; | 
| 1950 | 1950 | ||
| 1951 | pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, inum)); | ||
| 1951 | if (mp->m_sb.sb_blocksize >= XFS_INODE_CLUSTER_SIZE(mp)) { | 1952 | if (mp->m_sb.sb_blocksize >= XFS_INODE_CLUSTER_SIZE(mp)) { | 
| 1952 | blks_per_cluster = 1; | 1953 | blks_per_cluster = 1; | 
| 1953 | ninodes = mp->m_sb.sb_inopblock; | 1954 | ninodes = mp->m_sb.sb_inopblock; | 
| @@ -2039,7 +2040,7 @@ xfs_ifree_cluster( | |||
| 2039 | 2040 | ||
| 2040 | bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, blkno, | 2041 | bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, blkno, | 
| 2041 | mp->m_bsize * blks_per_cluster, | 2042 | mp->m_bsize * blks_per_cluster, | 
| 2042 | XFS_BUF_LOCK); | 2043 | XBF_LOCK); | 
| 2043 | 2044 | ||
| 2044 | pre_flushed = 0; | 2045 | pre_flushed = 0; | 
| 2045 | lip = XFS_BUF_FSPRIVATE(bp, xfs_log_item_t *); | 2046 | lip = XFS_BUF_FSPRIVATE(bp, xfs_log_item_t *); | 
| @@ -2088,7 +2089,7 @@ xfs_ifree_cluster( | |||
| 2088 | } | 2089 | } | 
| 2089 | 2090 | ||
| 2090 | kmem_free(ip_found); | 2091 | kmem_free(ip_found); | 
| 2091 | xfs_put_perag(mp, pag); | 2092 | xfs_perag_put(pag); | 
| 2092 | } | 2093 | } | 
| 2093 | 2094 | ||
| 2094 | /* | 2095 | /* | 
| @@ -2150,7 +2151,7 @@ xfs_ifree( | |||
| 2150 | 2151 | ||
| 2151 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); | 2152 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); | 
| 2152 | 2153 | ||
| 2153 | error = xfs_itobp(ip->i_mount, tp, ip, &dip, &ibp, XFS_BUF_LOCK); | 2154 | error = xfs_itobp(ip->i_mount, tp, ip, &dip, &ibp, XBF_LOCK); | 
| 2154 | if (error) | 2155 | if (error) | 
| 2155 | return error; | 2156 | return error; | 
| 2156 | 2157 | ||
| @@ -2438,72 +2439,31 @@ xfs_idestroy_fork( | |||
| 2438 | } | 2439 | } | 
| 2439 | 2440 | ||
| 2440 | /* | 2441 | /* | 
| 2441 | * Increment the pin count of the given buffer. | 2442 | * This is called to unpin an inode. The caller must have the inode locked | 
| 2442 | * This value is protected by ipinlock spinlock in the mount structure. | 2443 | * in at least shared mode so that the buffer cannot be subsequently pinned | 
| 2444 | * once someone is waiting for it to be unpinned. | ||
| 2443 | */ | 2445 | */ | 
| 2444 | void | 2446 | static void | 
| 2445 | xfs_ipin( | 2447 | xfs_iunpin_nowait( | 
| 2446 | xfs_inode_t *ip) | 2448 | struct xfs_inode *ip) | 
| 2447 | { | ||
| 2448 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL)); | ||
| 2449 | |||
| 2450 | atomic_inc(&ip->i_pincount); | ||
| 2451 | } | ||
| 2452 | |||
| 2453 | /* | ||
| 2454 | * Decrement the pin count of the given inode, and wake up | ||
| 2455 | * anyone in xfs_iwait_unpin() if the count goes to 0. The | ||
| 2456 | * inode must have been previously pinned with a call to xfs_ipin(). | ||
| 2457 | */ | ||
| 2458 | void | ||
| 2459 | xfs_iunpin( | ||
| 2460 | xfs_inode_t *ip) | ||
| 2461 | { | ||
| 2462 | ASSERT(atomic_read(&ip->i_pincount) > 0); | ||
| 2463 | |||
| 2464 | if (atomic_dec_and_test(&ip->i_pincount)) | ||
| 2465 | wake_up(&ip->i_ipin_wait); | ||
| 2466 | } | ||
| 2467 | |||
| 2468 | /* | ||
| 2469 | * This is called to unpin an inode. It can be directed to wait or to return | ||
| 2470 | * immediately without waiting for the inode to be unpinned. The caller must | ||
| 2471 | * have the inode locked in at least shared mode so that the buffer cannot be | ||
| 2472 | * subsequently pinned once someone is waiting for it to be unpinned. | ||
| 2473 | */ | ||
| 2474 | STATIC void | ||
| 2475 | __xfs_iunpin_wait( | ||
| 2476 | xfs_inode_t *ip, | ||
| 2477 | int wait) | ||
| 2478 | { | 2449 | { | 
| 2479 | xfs_inode_log_item_t *iip = ip->i_itemp; | ||
| 2480 | |||
| 2481 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED)); | 2450 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED)); | 
| 2482 | if (atomic_read(&ip->i_pincount) == 0) | ||
| 2483 | return; | ||
| 2484 | 2451 | ||
| 2485 | /* Give the log a push to start the unpinning I/O */ | 2452 | /* Give the log a push to start the unpinning I/O */ | 
| 2486 | xfs_log_force(ip->i_mount, (iip && iip->ili_last_lsn) ? | 2453 | xfs_log_force_lsn(ip->i_mount, ip->i_itemp->ili_last_lsn, 0); | 
| 2487 | iip->ili_last_lsn : 0, XFS_LOG_FORCE); | ||
| 2488 | if (wait) | ||
| 2489 | wait_event(ip->i_ipin_wait, (atomic_read(&ip->i_pincount) == 0)); | ||
| 2490 | } | ||
| 2491 | 2454 | ||
| 2492 | static inline void | ||
| 2493 | xfs_iunpin_wait( | ||
| 2494 | xfs_inode_t *ip) | ||
| 2495 | { | ||
| 2496 | __xfs_iunpin_wait(ip, 1); | ||
| 2497 | } | 2455 | } | 
| 2498 | 2456 | ||
| 2499 | static inline void | 2457 | void | 
| 2500 | xfs_iunpin_nowait( | 2458 | xfs_iunpin_wait( | 
| 2501 | xfs_inode_t *ip) | 2459 | struct xfs_inode *ip) | 
| 2502 | { | 2460 | { | 
| 2503 | __xfs_iunpin_wait(ip, 0); | 2461 | if (xfs_ipincount(ip)) { | 
| 2462 | xfs_iunpin_nowait(ip); | ||
| 2463 | wait_event(ip->i_ipin_wait, (xfs_ipincount(ip) == 0)); | ||
| 2464 | } | ||
| 2504 | } | 2465 | } | 
| 2505 | 2466 | ||
| 2506 | |||
| 2507 | /* | 2467 | /* | 
| 2508 | * xfs_iextents_copy() | 2468 | * xfs_iextents_copy() | 
| 2509 | * | 2469 | * | 
| @@ -2675,7 +2635,7 @@ xfs_iflush_cluster( | |||
| 2675 | xfs_buf_t *bp) | 2635 | xfs_buf_t *bp) | 
| 2676 | { | 2636 | { | 
| 2677 | xfs_mount_t *mp = ip->i_mount; | 2637 | xfs_mount_t *mp = ip->i_mount; | 
| 2678 | xfs_perag_t *pag = xfs_get_perag(mp, ip->i_ino); | 2638 | struct xfs_perag *pag; | 
| 2679 | unsigned long first_index, mask; | 2639 | unsigned long first_index, mask; | 
| 2680 | unsigned long inodes_per_cluster; | 2640 | unsigned long inodes_per_cluster; | 
| 2681 | int ilist_size; | 2641 | int ilist_size; | 
| @@ -2686,6 +2646,7 @@ xfs_iflush_cluster( | |||
| 2686 | int bufwasdelwri; | 2646 | int bufwasdelwri; | 
| 2687 | int i; | 2647 | int i; | 
| 2688 | 2648 | ||
| 2649 | pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino)); | ||
| 2689 | ASSERT(pag->pagi_inodeok); | 2650 | ASSERT(pag->pagi_inodeok); | 
| 2690 | ASSERT(pag->pag_ici_init); | 2651 | ASSERT(pag->pag_ici_init); | 
| 2691 | 2652 | ||
| @@ -2693,7 +2654,7 @@ xfs_iflush_cluster( | |||
| 2693 | ilist_size = inodes_per_cluster * sizeof(xfs_inode_t *); | 2654 | ilist_size = inodes_per_cluster * sizeof(xfs_inode_t *); | 
| 2694 | ilist = kmem_alloc(ilist_size, KM_MAYFAIL|KM_NOFS); | 2655 | ilist = kmem_alloc(ilist_size, KM_MAYFAIL|KM_NOFS); | 
| 2695 | if (!ilist) | 2656 | if (!ilist) | 
| 2696 | return 0; | 2657 | goto out_put; | 
| 2697 | 2658 | ||
| 2698 | mask = ~(((XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog)) - 1); | 2659 | mask = ~(((XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog)) - 1); | 
| 2699 | first_index = XFS_INO_TO_AGINO(mp, ip->i_ino) & mask; | 2660 | first_index = XFS_INO_TO_AGINO(mp, ip->i_ino) & mask; | 
| @@ -2762,6 +2723,8 @@ xfs_iflush_cluster( | |||
| 2762 | out_free: | 2723 | out_free: | 
| 2763 | read_unlock(&pag->pag_ici_lock); | 2724 | read_unlock(&pag->pag_ici_lock); | 
| 2764 | kmem_free(ilist); | 2725 | kmem_free(ilist); | 
| 2726 | out_put: | ||
| 2727 | xfs_perag_put(pag); | ||
| 2765 | return 0; | 2728 | return 0; | 
| 2766 | 2729 | ||
| 2767 | 2730 | ||
| @@ -2805,6 +2768,7 @@ cluster_corrupt_out: | |||
| 2805 | */ | 2768 | */ | 
| 2806 | xfs_iflush_abort(iq); | 2769 | xfs_iflush_abort(iq); | 
| 2807 | kmem_free(ilist); | 2770 | kmem_free(ilist); | 
| 2771 | xfs_perag_put(pag); | ||
| 2808 | return XFS_ERROR(EFSCORRUPTED); | 2772 | return XFS_ERROR(EFSCORRUPTED); | 
| 2809 | } | 2773 | } | 
| 2810 | 2774 | ||
| @@ -2827,8 +2791,6 @@ xfs_iflush( | |||
| 2827 | xfs_dinode_t *dip; | 2791 | xfs_dinode_t *dip; | 
| 2828 | xfs_mount_t *mp; | 2792 | xfs_mount_t *mp; | 
| 2829 | int error; | 2793 | int error; | 
| 2830 | int noblock = (flags == XFS_IFLUSH_ASYNC_NOBLOCK); | ||
| 2831 | enum { INT_DELWRI = (1 << 0), INT_ASYNC = (1 << 1) }; | ||
| 2832 | 2794 | ||
| 2833 | XFS_STATS_INC(xs_iflush_count); | 2795 | XFS_STATS_INC(xs_iflush_count); | 
| 2834 | 2796 | ||
| @@ -2841,15 +2803,6 @@ xfs_iflush( | |||
| 2841 | mp = ip->i_mount; | 2803 | mp = ip->i_mount; | 
| 2842 | 2804 | ||
| 2843 | /* | 2805 | /* | 
| 2844 | * If the inode isn't dirty, then just release the inode flush lock and | ||
| 2845 | * do nothing. | ||
| 2846 | */ | ||
| 2847 | if (xfs_inode_clean(ip)) { | ||
| 2848 | xfs_ifunlock(ip); | ||
| 2849 | return 0; | ||
| 2850 | } | ||
| 2851 | |||
| 2852 | /* | ||
| 2853 | * We can't flush the inode until it is unpinned, so wait for it if we | 2806 | * We can't flush the inode until it is unpinned, so wait for it if we | 
| 2854 | * are allowed to block. We know noone new can pin it, because we are | 2807 | * are allowed to block. We know noone new can pin it, because we are | 
| 2855 | * holding the inode lock shared and you need to hold it exclusively to | 2808 | * holding the inode lock shared and you need to hold it exclusively to | 
| @@ -2860,7 +2813,7 @@ xfs_iflush( | |||
| 2860 | * in the same cluster are dirty, they will probably write the inode | 2813 | * in the same cluster are dirty, they will probably write the inode | 
| 2861 | * out for us if they occur after the log force completes. | 2814 | * out for us if they occur after the log force completes. | 
| 2862 | */ | 2815 | */ | 
| 2863 | if (noblock && xfs_ipincount(ip)) { | 2816 | if (!(flags & SYNC_WAIT) && xfs_ipincount(ip)) { | 
| 2864 | xfs_iunpin_nowait(ip); | 2817 | xfs_iunpin_nowait(ip); | 
| 2865 | xfs_ifunlock(ip); | 2818 | xfs_ifunlock(ip); | 
| 2866 | return EAGAIN; | 2819 | return EAGAIN; | 
| @@ -2894,60 +2847,10 @@ xfs_iflush( | |||
| 2894 | } | 2847 | } | 
| 2895 | 2848 | ||
| 2896 | /* | 2849 | /* | 
| 2897 | * Decide how buffer will be flushed out. This is done before | ||
| 2898 | * the call to xfs_iflush_int because this field is zeroed by it. | ||
| 2899 | */ | ||
| 2900 | if (iip != NULL && iip->ili_format.ilf_fields != 0) { | ||
| 2901 | /* | ||
| 2902 | * Flush out the inode buffer according to the directions | ||
| 2903 | * of the caller. In the cases where the caller has given | ||
| 2904 | * us a choice choose the non-delwri case. This is because | ||
| 2905 | * the inode is in the AIL and we need to get it out soon. | ||
| 2906 | */ | ||
| 2907 | switch (flags) { | ||
| 2908 | case XFS_IFLUSH_SYNC: | ||
| 2909 | case XFS_IFLUSH_DELWRI_ELSE_SYNC: | ||
| 2910 | flags = 0; | ||
| 2911 | break; | ||
| 2912 | case XFS_IFLUSH_ASYNC_NOBLOCK: | ||
| 2913 | case XFS_IFLUSH_ASYNC: | ||
| 2914 | case XFS_IFLUSH_DELWRI_ELSE_ASYNC: | ||
| 2915 | flags = INT_ASYNC; | ||
| 2916 | break; | ||
| 2917 | case XFS_IFLUSH_DELWRI: | ||
| 2918 | flags = INT_DELWRI; | ||
| 2919 | break; | ||
| 2920 | default: | ||
| 2921 | ASSERT(0); | ||
| 2922 | flags = 0; | ||
| 2923 | break; | ||
| 2924 | } | ||
| 2925 | } else { | ||
| 2926 | switch (flags) { | ||
| 2927 | case XFS_IFLUSH_DELWRI_ELSE_SYNC: | ||
| 2928 | case XFS_IFLUSH_DELWRI_ELSE_ASYNC: | ||
| 2929 | case XFS_IFLUSH_DELWRI: | ||
| 2930 | flags = INT_DELWRI; | ||
| 2931 | break; | ||
| 2932 | case XFS_IFLUSH_ASYNC_NOBLOCK: | ||
| 2933 | case XFS_IFLUSH_ASYNC: | ||
| 2934 | flags = INT_ASYNC; | ||
| 2935 | break; | ||
| 2936 | case XFS_IFLUSH_SYNC: | ||
| 2937 | flags = 0; | ||
| 2938 | break; | ||
| 2939 | default: | ||
| 2940 | ASSERT(0); | ||
| 2941 | flags = 0; | ||
| 2942 | break; | ||
| 2943 | } | ||
| 2944 | } | ||
| 2945 | |||
| 2946 | /* | ||
| 2947 | * Get the buffer containing the on-disk inode. | 2850 | * Get the buffer containing the on-disk inode. | 
| 2948 | */ | 2851 | */ | 
| 2949 | error = xfs_itobp(mp, NULL, ip, &dip, &bp, | 2852 | error = xfs_itobp(mp, NULL, ip, &dip, &bp, | 
| 2950 | noblock ? XFS_BUF_TRYLOCK : XFS_BUF_LOCK); | 2853 | (flags & SYNC_WAIT) ? XBF_LOCK : XBF_TRYLOCK); | 
| 2951 | if (error || !bp) { | 2854 | if (error || !bp) { | 
| 2952 | xfs_ifunlock(ip); | 2855 | xfs_ifunlock(ip); | 
| 2953 | return error; | 2856 | return error; | 
| @@ -2965,7 +2868,7 @@ xfs_iflush( | |||
| 2965 | * get stuck waiting in the write for too long. | 2868 | * get stuck waiting in the write for too long. | 
| 2966 | */ | 2869 | */ | 
| 2967 | if (XFS_BUF_ISPINNED(bp)) | 2870 | if (XFS_BUF_ISPINNED(bp)) | 
| 2968 | xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE); | 2871 | xfs_log_force(mp, 0); | 
| 2969 | 2872 | ||
| 2970 | /* | 2873 | /* | 
| 2971 | * inode clustering: | 2874 | * inode clustering: | 
| @@ -2975,13 +2878,10 @@ xfs_iflush( | |||
| 2975 | if (error) | 2878 | if (error) | 
| 2976 | goto cluster_corrupt_out; | 2879 | goto cluster_corrupt_out; | 
| 2977 | 2880 | ||
| 2978 | if (flags & INT_DELWRI) { | 2881 | if (flags & SYNC_WAIT) | 
| 2979 | xfs_bdwrite(mp, bp); | ||
| 2980 | } else if (flags & INT_ASYNC) { | ||
| 2981 | error = xfs_bawrite(mp, bp); | ||
| 2982 | } else { | ||
| 2983 | error = xfs_bwrite(mp, bp); | 2882 | error = xfs_bwrite(mp, bp); | 
| 2984 | } | 2883 | else | 
| 2884 | xfs_bdwrite(mp, bp); | ||
| 2985 | return error; | 2885 | return error; | 
| 2986 | 2886 | ||
| 2987 | corrupt_out: | 2887 | corrupt_out: | 
| @@ -3016,16 +2916,6 @@ xfs_iflush_int( | |||
| 3016 | iip = ip->i_itemp; | 2916 | iip = ip->i_itemp; | 
| 3017 | mp = ip->i_mount; | 2917 | mp = ip->i_mount; | 
| 3018 | 2918 | ||
| 3019 | |||
| 3020 | /* | ||
| 3021 | * If the inode isn't dirty, then just release the inode | ||
| 3022 | * flush lock and do nothing. | ||
| 3023 | */ | ||
| 3024 | if (xfs_inode_clean(ip)) { | ||
| 3025 | xfs_ifunlock(ip); | ||
| 3026 | return 0; | ||
| 3027 | } | ||
| 3028 | |||
| 3029 | /* set *dip = inode's place in the buffer */ | 2919 | /* set *dip = inode's place in the buffer */ | 
| 3030 | dip = (xfs_dinode_t *)xfs_buf_offset(bp, ip->i_imap.im_boffset); | 2920 | dip = (xfs_dinode_t *)xfs_buf_offset(bp, ip->i_imap.im_boffset); | 
| 3031 | 2921 | ||
diff --git a/fs/xfs/xfs_inode.h b/fs/xfs/xfs_inode.h index ec1f28c4fc4f..9965e40a4615 100644 --- a/fs/xfs/xfs_inode.h +++ b/fs/xfs/xfs_inode.h  | |||
| @@ -420,16 +420,6 @@ static inline void xfs_ifunlock(xfs_inode_t *ip) | |||
| 420 | #define XFS_ILOCK_DEP(flags) (((flags) & XFS_ILOCK_DEP_MASK) >> XFS_ILOCK_SHIFT) | 420 | #define XFS_ILOCK_DEP(flags) (((flags) & XFS_ILOCK_DEP_MASK) >> XFS_ILOCK_SHIFT) | 
| 421 | 421 | ||
| 422 | /* | 422 | /* | 
| 423 | * Flags for xfs_iflush() | ||
| 424 | */ | ||
| 425 | #define XFS_IFLUSH_DELWRI_ELSE_SYNC 1 | ||
| 426 | #define XFS_IFLUSH_DELWRI_ELSE_ASYNC 2 | ||
| 427 | #define XFS_IFLUSH_SYNC 3 | ||
| 428 | #define XFS_IFLUSH_ASYNC 4 | ||
| 429 | #define XFS_IFLUSH_DELWRI 5 | ||
| 430 | #define XFS_IFLUSH_ASYNC_NOBLOCK 6 | ||
| 431 | |||
| 432 | /* | ||
| 433 | * Flags for xfs_itruncate_start(). | 423 | * Flags for xfs_itruncate_start(). | 
| 434 | */ | 424 | */ | 
| 435 | #define XFS_ITRUNC_DEFINITE 0x1 | 425 | #define XFS_ITRUNC_DEFINITE 0x1 | 
| @@ -481,14 +471,14 @@ int xfs_itruncate_finish(struct xfs_trans **, xfs_inode_t *, | |||
| 481 | int xfs_iunlink(struct xfs_trans *, xfs_inode_t *); | 471 | int xfs_iunlink(struct xfs_trans *, xfs_inode_t *); | 
| 482 | 472 | ||
| 483 | void xfs_iext_realloc(xfs_inode_t *, int, int); | 473 | void xfs_iext_realloc(xfs_inode_t *, int, int); | 
| 484 | void xfs_ipin(xfs_inode_t *); | 474 | void xfs_iunpin_wait(xfs_inode_t *); | 
| 485 | void xfs_iunpin(xfs_inode_t *); | ||
| 486 | int xfs_iflush(xfs_inode_t *, uint); | 475 | int xfs_iflush(xfs_inode_t *, uint); | 
| 487 | void xfs_ichgtime(xfs_inode_t *, int); | 476 | void xfs_ichgtime(xfs_inode_t *, int); | 
| 488 | void xfs_lock_inodes(xfs_inode_t **, int, uint); | 477 | void xfs_lock_inodes(xfs_inode_t **, int, uint); | 
| 489 | void xfs_lock_two_inodes(xfs_inode_t *, xfs_inode_t *, uint); | 478 | void xfs_lock_two_inodes(xfs_inode_t *, xfs_inode_t *, uint); | 
| 490 | 479 | ||
| 491 | void xfs_synchronize_times(xfs_inode_t *); | 480 | void xfs_synchronize_times(xfs_inode_t *); | 
| 481 | void xfs_mark_inode_dirty(xfs_inode_t *); | ||
| 492 | void xfs_mark_inode_dirty_sync(xfs_inode_t *); | 482 | void xfs_mark_inode_dirty_sync(xfs_inode_t *); | 
| 493 | 483 | ||
| 494 | #define IHOLD(ip) \ | 484 | #define IHOLD(ip) \ | 
diff --git a/fs/xfs/xfs_inode_item.c b/fs/xfs/xfs_inode_item.c index f38855d21ea5..7bfea8540159 100644 --- a/fs/xfs/xfs_inode_item.c +++ b/fs/xfs/xfs_inode_item.c  | |||
| @@ -228,7 +228,7 @@ xfs_inode_item_format( | |||
| 228 | 228 | ||
| 229 | vecp->i_addr = (xfs_caddr_t)&iip->ili_format; | 229 | vecp->i_addr = (xfs_caddr_t)&iip->ili_format; | 
| 230 | vecp->i_len = sizeof(xfs_inode_log_format_t); | 230 | vecp->i_len = sizeof(xfs_inode_log_format_t); | 
| 231 | XLOG_VEC_SET_TYPE(vecp, XLOG_REG_TYPE_IFORMAT); | 231 | vecp->i_type = XLOG_REG_TYPE_IFORMAT; | 
| 232 | vecp++; | 232 | vecp++; | 
| 233 | nvecs = 1; | 233 | nvecs = 1; | 
| 234 | 234 | ||
| @@ -279,7 +279,7 @@ xfs_inode_item_format( | |||
| 279 | 279 | ||
| 280 | vecp->i_addr = (xfs_caddr_t)&ip->i_d; | 280 | vecp->i_addr = (xfs_caddr_t)&ip->i_d; | 
| 281 | vecp->i_len = sizeof(struct xfs_icdinode); | 281 | vecp->i_len = sizeof(struct xfs_icdinode); | 
| 282 | XLOG_VEC_SET_TYPE(vecp, XLOG_REG_TYPE_ICORE); | 282 | vecp->i_type = XLOG_REG_TYPE_ICORE; | 
| 283 | vecp++; | 283 | vecp++; | 
| 284 | nvecs++; | 284 | nvecs++; | 
| 285 | iip->ili_format.ilf_fields |= XFS_ILOG_CORE; | 285 | iip->ili_format.ilf_fields |= XFS_ILOG_CORE; | 
| @@ -336,7 +336,7 @@ xfs_inode_item_format( | |||
| 336 | vecp->i_addr = | 336 | vecp->i_addr = | 
| 337 | (char *)(ip->i_df.if_u1.if_extents); | 337 | (char *)(ip->i_df.if_u1.if_extents); | 
| 338 | vecp->i_len = ip->i_df.if_bytes; | 338 | vecp->i_len = ip->i_df.if_bytes; | 
| 339 | XLOG_VEC_SET_TYPE(vecp, XLOG_REG_TYPE_IEXT); | 339 | vecp->i_type = XLOG_REG_TYPE_IEXT; | 
| 340 | } else | 340 | } else | 
| 341 | #endif | 341 | #endif | 
| 342 | { | 342 | { | 
| @@ -355,7 +355,7 @@ xfs_inode_item_format( | |||
| 355 | vecp->i_addr = (xfs_caddr_t)ext_buffer; | 355 | vecp->i_addr = (xfs_caddr_t)ext_buffer; | 
| 356 | vecp->i_len = xfs_iextents_copy(ip, ext_buffer, | 356 | vecp->i_len = xfs_iextents_copy(ip, ext_buffer, | 
| 357 | XFS_DATA_FORK); | 357 | XFS_DATA_FORK); | 
| 358 | XLOG_VEC_SET_TYPE(vecp, XLOG_REG_TYPE_IEXT); | 358 | vecp->i_type = XLOG_REG_TYPE_IEXT; | 
| 359 | } | 359 | } | 
| 360 | ASSERT(vecp->i_len <= ip->i_df.if_bytes); | 360 | ASSERT(vecp->i_len <= ip->i_df.if_bytes); | 
| 361 | iip->ili_format.ilf_dsize = vecp->i_len; | 361 | iip->ili_format.ilf_dsize = vecp->i_len; | 
| @@ -373,7 +373,7 @@ xfs_inode_item_format( | |||
| 373 | ASSERT(ip->i_df.if_broot != NULL); | 373 | ASSERT(ip->i_df.if_broot != NULL); | 
| 374 | vecp->i_addr = (xfs_caddr_t)ip->i_df.if_broot; | 374 | vecp->i_addr = (xfs_caddr_t)ip->i_df.if_broot; | 
| 375 | vecp->i_len = ip->i_df.if_broot_bytes; | 375 | vecp->i_len = ip->i_df.if_broot_bytes; | 
| 376 | XLOG_VEC_SET_TYPE(vecp, XLOG_REG_TYPE_IBROOT); | 376 | vecp->i_type = XLOG_REG_TYPE_IBROOT; | 
| 377 | vecp++; | 377 | vecp++; | 
| 378 | nvecs++; | 378 | nvecs++; | 
| 379 | iip->ili_format.ilf_dsize = ip->i_df.if_broot_bytes; | 379 | iip->ili_format.ilf_dsize = ip->i_df.if_broot_bytes; | 
| @@ -399,7 +399,7 @@ xfs_inode_item_format( | |||
| 399 | ASSERT((ip->i_df.if_real_bytes == 0) || | 399 | ASSERT((ip->i_df.if_real_bytes == 0) || | 
| 400 | (ip->i_df.if_real_bytes == data_bytes)); | 400 | (ip->i_df.if_real_bytes == data_bytes)); | 
| 401 | vecp->i_len = (int)data_bytes; | 401 | vecp->i_len = (int)data_bytes; | 
| 402 | XLOG_VEC_SET_TYPE(vecp, XLOG_REG_TYPE_ILOCAL); | 402 | vecp->i_type = XLOG_REG_TYPE_ILOCAL; | 
| 403 | vecp++; | 403 | vecp++; | 
| 404 | nvecs++; | 404 | nvecs++; | 
| 405 | iip->ili_format.ilf_dsize = (unsigned)data_bytes; | 405 | iip->ili_format.ilf_dsize = (unsigned)data_bytes; | 
| @@ -477,7 +477,7 @@ xfs_inode_item_format( | |||
| 477 | vecp->i_len = xfs_iextents_copy(ip, ext_buffer, | 477 | vecp->i_len = xfs_iextents_copy(ip, ext_buffer, | 
| 478 | XFS_ATTR_FORK); | 478 | XFS_ATTR_FORK); | 
| 479 | #endif | 479 | #endif | 
| 480 | XLOG_VEC_SET_TYPE(vecp, XLOG_REG_TYPE_IATTR_EXT); | 480 | vecp->i_type = XLOG_REG_TYPE_IATTR_EXT; | 
| 481 | iip->ili_format.ilf_asize = vecp->i_len; | 481 | iip->ili_format.ilf_asize = vecp->i_len; | 
| 482 | vecp++; | 482 | vecp++; | 
| 483 | nvecs++; | 483 | nvecs++; | 
| @@ -492,7 +492,7 @@ xfs_inode_item_format( | |||
| 492 | ASSERT(ip->i_afp->if_broot != NULL); | 492 | ASSERT(ip->i_afp->if_broot != NULL); | 
| 493 | vecp->i_addr = (xfs_caddr_t)ip->i_afp->if_broot; | 493 | vecp->i_addr = (xfs_caddr_t)ip->i_afp->if_broot; | 
| 494 | vecp->i_len = ip->i_afp->if_broot_bytes; | 494 | vecp->i_len = ip->i_afp->if_broot_bytes; | 
| 495 | XLOG_VEC_SET_TYPE(vecp, XLOG_REG_TYPE_IATTR_BROOT); | 495 | vecp->i_type = XLOG_REG_TYPE_IATTR_BROOT; | 
| 496 | vecp++; | 496 | vecp++; | 
| 497 | nvecs++; | 497 | nvecs++; | 
| 498 | iip->ili_format.ilf_asize = ip->i_afp->if_broot_bytes; | 498 | iip->ili_format.ilf_asize = ip->i_afp->if_broot_bytes; | 
| @@ -516,7 +516,7 @@ xfs_inode_item_format( | |||
| 516 | ASSERT((ip->i_afp->if_real_bytes == 0) || | 516 | ASSERT((ip->i_afp->if_real_bytes == 0) || | 
| 517 | (ip->i_afp->if_real_bytes == data_bytes)); | 517 | (ip->i_afp->if_real_bytes == data_bytes)); | 
| 518 | vecp->i_len = (int)data_bytes; | 518 | vecp->i_len = (int)data_bytes; | 
| 519 | XLOG_VEC_SET_TYPE(vecp, XLOG_REG_TYPE_IATTR_LOCAL); | 519 | vecp->i_type = XLOG_REG_TYPE_IATTR_LOCAL; | 
| 520 | vecp++; | 520 | vecp++; | 
| 521 | nvecs++; | 521 | nvecs++; | 
| 522 | iip->ili_format.ilf_asize = (unsigned)data_bytes; | 522 | iip->ili_format.ilf_asize = (unsigned)data_bytes; | 
| @@ -535,23 +535,23 @@ xfs_inode_item_format( | |||
| 535 | 535 | ||
| 536 | /* | 536 | /* | 
| 537 | * This is called to pin the inode associated with the inode log | 537 | * This is called to pin the inode associated with the inode log | 
| 538 | * item in memory so it cannot be written out. Do this by calling | 538 | * item in memory so it cannot be written out. | 
| 539 | * xfs_ipin() to bump the pin count in the inode while holding the | ||
| 540 | * inode pin lock. | ||
| 541 | */ | 539 | */ | 
| 542 | STATIC void | 540 | STATIC void | 
| 543 | xfs_inode_item_pin( | 541 | xfs_inode_item_pin( | 
| 544 | xfs_inode_log_item_t *iip) | 542 | xfs_inode_log_item_t *iip) | 
| 545 | { | 543 | { | 
| 546 | ASSERT(xfs_isilocked(iip->ili_inode, XFS_ILOCK_EXCL)); | 544 | ASSERT(xfs_isilocked(iip->ili_inode, XFS_ILOCK_EXCL)); | 
| 547 | xfs_ipin(iip->ili_inode); | 545 | |
| 546 | atomic_inc(&iip->ili_inode->i_pincount); | ||
| 548 | } | 547 | } | 
| 549 | 548 | ||
| 550 | 549 | ||
| 551 | /* | 550 | /* | 
| 552 | * This is called to unpin the inode associated with the inode log | 551 | * This is called to unpin the inode associated with the inode log | 
| 553 | * item which was previously pinned with a call to xfs_inode_item_pin(). | 552 | * item which was previously pinned with a call to xfs_inode_item_pin(). | 
| 554 | * Just call xfs_iunpin() on the inode to do this. | 553 | * | 
| 554 | * Also wake up anyone in xfs_iunpin_wait() if the count goes to 0. | ||
| 555 | */ | 555 | */ | 
| 556 | /* ARGSUSED */ | 556 | /* ARGSUSED */ | 
| 557 | STATIC void | 557 | STATIC void | 
| @@ -559,7 +559,11 @@ xfs_inode_item_unpin( | |||
| 559 | xfs_inode_log_item_t *iip, | 559 | xfs_inode_log_item_t *iip, | 
| 560 | int stale) | 560 | int stale) | 
| 561 | { | 561 | { | 
| 562 | xfs_iunpin(iip->ili_inode); | 562 | struct xfs_inode *ip = iip->ili_inode; | 
| 563 | |||
| 564 | ASSERT(atomic_read(&ip->i_pincount) > 0); | ||
| 565 | if (atomic_dec_and_test(&ip->i_pincount)) | ||
| 566 | wake_up(&ip->i_ipin_wait); | ||
| 563 | } | 567 | } | 
| 564 | 568 | ||
| 565 | /* ARGSUSED */ | 569 | /* ARGSUSED */ | 
| @@ -568,7 +572,7 @@ xfs_inode_item_unpin_remove( | |||
| 568 | xfs_inode_log_item_t *iip, | 572 | xfs_inode_log_item_t *iip, | 
| 569 | xfs_trans_t *tp) | 573 | xfs_trans_t *tp) | 
| 570 | { | 574 | { | 
| 571 | xfs_iunpin(iip->ili_inode); | 575 | xfs_inode_item_unpin(iip, 0); | 
| 572 | } | 576 | } | 
| 573 | 577 | ||
| 574 | /* | 578 | /* | 
| @@ -602,33 +606,20 @@ xfs_inode_item_trylock( | |||
| 602 | 606 | ||
| 603 | if (!xfs_iflock_nowait(ip)) { | 607 | if (!xfs_iflock_nowait(ip)) { | 
| 604 | /* | 608 | /* | 
| 605 | * If someone else isn't already trying to push the inode | 609 | * inode has already been flushed to the backing buffer, | 
| 606 | * buffer, we get to do it. | 610 | * leave it locked in shared mode, pushbuf routine will | 
| 611 | * unlock it. | ||
| 607 | */ | 612 | */ | 
| 608 | if (iip->ili_pushbuf_flag == 0) { | 613 | return XFS_ITEM_PUSHBUF; | 
| 609 | iip->ili_pushbuf_flag = 1; | ||
| 610 | #ifdef DEBUG | ||
| 611 | iip->ili_push_owner = current_pid(); | ||
| 612 | #endif | ||
| 613 | /* | ||
| 614 | * Inode is left locked in shared mode. | ||
| 615 | * Pushbuf routine gets to unlock it. | ||
| 616 | */ | ||
| 617 | return XFS_ITEM_PUSHBUF; | ||
| 618 | } else { | ||
| 619 | /* | ||
| 620 | * We hold the AIL lock, so we must specify the | ||
| 621 | * NONOTIFY flag so that we won't double trip. | ||
| 622 | */ | ||
| 623 | xfs_iunlock(ip, XFS_ILOCK_SHARED|XFS_IUNLOCK_NONOTIFY); | ||
| 624 | return XFS_ITEM_FLUSHING; | ||
| 625 | } | ||
| 626 | /* NOTREACHED */ | ||
| 627 | } | 614 | } | 
| 628 | 615 | ||
| 629 | /* Stale items should force out the iclog */ | 616 | /* Stale items should force out the iclog */ | 
| 630 | if (ip->i_flags & XFS_ISTALE) { | 617 | if (ip->i_flags & XFS_ISTALE) { | 
| 631 | xfs_ifunlock(ip); | 618 | xfs_ifunlock(ip); | 
| 619 | /* | ||
| 620 | * we hold the AIL lock - notify the unlock routine of this | ||
| 621 | * so it doesn't try to get the lock again. | ||
| 622 | */ | ||
| 632 | xfs_iunlock(ip, XFS_ILOCK_SHARED|XFS_IUNLOCK_NONOTIFY); | 623 | xfs_iunlock(ip, XFS_ILOCK_SHARED|XFS_IUNLOCK_NONOTIFY); | 
| 633 | return XFS_ITEM_PINNED; | 624 | return XFS_ITEM_PINNED; | 
| 634 | } | 625 | } | 
| @@ -746,11 +737,8 @@ xfs_inode_item_committed( | |||
| 746 | * This gets called by xfs_trans_push_ail(), when IOP_TRYLOCK | 737 | * This gets called by xfs_trans_push_ail(), when IOP_TRYLOCK | 
| 747 | * failed to get the inode flush lock but did get the inode locked SHARED. | 738 | * failed to get the inode flush lock but did get the inode locked SHARED. | 
| 748 | * Here we're trying to see if the inode buffer is incore, and if so whether it's | 739 | * Here we're trying to see if the inode buffer is incore, and if so whether it's | 
| 749 | * marked delayed write. If that's the case, we'll initiate a bawrite on that | 740 | * marked delayed write. If that's the case, we'll promote it and that will | 
| 750 | * buffer to expedite the process. | 741 | * allow the caller to write the buffer by triggering the xfsbufd to run. | 
| 751 | * | ||
| 752 | * We aren't holding the AIL lock (or the flush lock) when this gets called, | ||
| 753 | * so it is inherently race-y. | ||
| 754 | */ | 742 | */ | 
| 755 | STATIC void | 743 | STATIC void | 
| 756 | xfs_inode_item_pushbuf( | 744 | xfs_inode_item_pushbuf( | 
| @@ -759,82 +747,30 @@ xfs_inode_item_pushbuf( | |||
| 759 | xfs_inode_t *ip; | 747 | xfs_inode_t *ip; | 
| 760 | xfs_mount_t *mp; | 748 | xfs_mount_t *mp; | 
| 761 | xfs_buf_t *bp; | 749 | xfs_buf_t *bp; | 
| 762 | uint dopush; | ||
| 763 | 750 | ||
| 764 | ip = iip->ili_inode; | 751 | ip = iip->ili_inode; | 
| 765 | |||
| 766 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_SHARED)); | 752 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_SHARED)); | 
| 767 | 753 | ||
| 768 | /* | 754 | /* | 
| 769 | * The ili_pushbuf_flag keeps others from | ||
| 770 | * trying to duplicate our effort. | ||
| 771 | */ | ||
| 772 | ASSERT(iip->ili_pushbuf_flag != 0); | ||
| 773 | ASSERT(iip->ili_push_owner == current_pid()); | ||
| 774 | |||
| 775 | /* | ||
| 776 | * If a flush is not in progress anymore, chances are that the | 755 | * If a flush is not in progress anymore, chances are that the | 
| 777 | * inode was taken off the AIL. So, just get out. | 756 | * inode was taken off the AIL. So, just get out. | 
| 778 | */ | 757 | */ | 
| 779 | if (completion_done(&ip->i_flush) || | 758 | if (completion_done(&ip->i_flush) || | 
| 780 | ((iip->ili_item.li_flags & XFS_LI_IN_AIL) == 0)) { | 759 | ((iip->ili_item.li_flags & XFS_LI_IN_AIL) == 0)) { | 
| 781 | iip->ili_pushbuf_flag = 0; | ||
| 782 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | 760 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | 
| 783 | return; | 761 | return; | 
| 784 | } | 762 | } | 
| 785 | 763 | ||
| 786 | mp = ip->i_mount; | 764 | mp = ip->i_mount; | 
| 787 | bp = xfs_incore(mp->m_ddev_targp, iip->ili_format.ilf_blkno, | 765 | bp = xfs_incore(mp->m_ddev_targp, iip->ili_format.ilf_blkno, | 
| 788 | iip->ili_format.ilf_len, XFS_INCORE_TRYLOCK); | 766 | iip->ili_format.ilf_len, XBF_TRYLOCK); | 
| 789 | |||
| 790 | if (bp != NULL) { | ||
| 791 | if (XFS_BUF_ISDELAYWRITE(bp)) { | ||
| 792 | /* | ||
| 793 | * We were racing with iflush because we don't hold | ||
| 794 | * the AIL lock or the flush lock. However, at this point, | ||
| 795 | * we have the buffer, and we know that it's dirty. | ||
| 796 | * So, it's possible that iflush raced with us, and | ||
| 797 | * this item is already taken off the AIL. | ||
| 798 | * If not, we can flush it async. | ||
| 799 | */ | ||
| 800 | dopush = ((iip->ili_item.li_flags & XFS_LI_IN_AIL) && | ||
| 801 | !completion_done(&ip->i_flush)); | ||
| 802 | iip->ili_pushbuf_flag = 0; | ||
| 803 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | ||
| 804 | |||
| 805 | trace_xfs_inode_item_push(bp, _RET_IP_); | ||
| 806 | 767 | ||
| 807 | if (XFS_BUF_ISPINNED(bp)) { | ||
| 808 | xfs_log_force(mp, (xfs_lsn_t)0, | ||
| 809 | XFS_LOG_FORCE); | ||
| 810 | } | ||
| 811 | if (dopush) { | ||
| 812 | int error; | ||
| 813 | error = xfs_bawrite(mp, bp); | ||
| 814 | if (error) | ||
| 815 | xfs_fs_cmn_err(CE_WARN, mp, | ||
| 816 | "xfs_inode_item_pushbuf: pushbuf error %d on iip %p, bp %p", | ||
| 817 | error, iip, bp); | ||
| 818 | } else { | ||
| 819 | xfs_buf_relse(bp); | ||
| 820 | } | ||
| 821 | } else { | ||
| 822 | iip->ili_pushbuf_flag = 0; | ||
| 823 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | ||
| 824 | xfs_buf_relse(bp); | ||
| 825 | } | ||
| 826 | return; | ||
| 827 | } | ||
| 828 | /* | ||
| 829 | * We have to be careful about resetting pushbuf flag too early (above). | ||
| 830 | * Even though in theory we can do it as soon as we have the buflock, | ||
| 831 | * we don't want others to be doing work needlessly. They'll come to | ||
| 832 | * this function thinking that pushing the buffer is their | ||
| 833 | * responsibility only to find that the buffer is still locked by | ||
| 834 | * another doing the same thing | ||
| 835 | */ | ||
| 836 | iip->ili_pushbuf_flag = 0; | ||
| 837 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | 768 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | 
| 769 | if (!bp) | ||
| 770 | return; | ||
| 771 | if (XFS_BUF_ISDELAYWRITE(bp)) | ||
| 772 | xfs_buf_delwri_promote(bp); | ||
| 773 | xfs_buf_relse(bp); | ||
| 838 | return; | 774 | return; | 
| 839 | } | 775 | } | 
| 840 | 776 | ||
| @@ -867,10 +803,14 @@ xfs_inode_item_push( | |||
| 867 | iip->ili_format.ilf_fields != 0); | 803 | iip->ili_format.ilf_fields != 0); | 
| 868 | 804 | ||
| 869 | /* | 805 | /* | 
| 870 | * Write out the inode. The completion routine ('iflush_done') will | 806 | * Push the inode to it's backing buffer. This will not remove the | 
| 871 | * pull it from the AIL, mark it clean, unlock the flush lock. | 807 | * inode from the AIL - a further push will be required to trigger a | 
| 808 | * buffer push. However, this allows all the dirty inodes to be pushed | ||
| 809 | * to the buffer before it is pushed to disk. THe buffer IO completion | ||
| 810 | * will pull th einode from the AIL, mark it clean and unlock the flush | ||
| 811 | * lock. | ||
| 872 | */ | 812 | */ | 
| 873 | (void) xfs_iflush(ip, XFS_IFLUSH_ASYNC); | 813 | (void) xfs_iflush(ip, 0); | 
| 874 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | 814 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | 
| 875 | 815 | ||
| 876 | return; | 816 | return; | 
| @@ -934,7 +874,6 @@ xfs_inode_item_init( | |||
| 934 | /* | 874 | /* | 
| 935 | We have zeroed memory. No need ... | 875 | We have zeroed memory. No need ... | 
| 936 | iip->ili_extents_buf = NULL; | 876 | iip->ili_extents_buf = NULL; | 
| 937 | iip->ili_pushbuf_flag = 0; | ||
| 938 | */ | 877 | */ | 
| 939 | 878 | ||
| 940 | iip->ili_format.ilf_type = XFS_LI_INODE; | 879 | iip->ili_format.ilf_type = XFS_LI_INODE; | 
diff --git a/fs/xfs/xfs_inode_item.h b/fs/xfs/xfs_inode_item.h index cc8df1ac7783..9a467958ecdd 100644 --- a/fs/xfs/xfs_inode_item.h +++ b/fs/xfs/xfs_inode_item.h  | |||
| @@ -144,12 +144,6 @@ typedef struct xfs_inode_log_item { | |||
| 144 | data exts */ | 144 | data exts */ | 
| 145 | struct xfs_bmbt_rec *ili_aextents_buf; /* array of logged | 145 | struct xfs_bmbt_rec *ili_aextents_buf; /* array of logged | 
| 146 | attr exts */ | 146 | attr exts */ | 
| 147 | unsigned int ili_pushbuf_flag; /* one bit used in push_ail */ | ||
| 148 | |||
| 149 | #ifdef DEBUG | ||
| 150 | uint64_t ili_push_owner; /* one who sets pushbuf_flag | ||
| 151 | above gets to push the buf */ | ||
| 152 | #endif | ||
| 153 | #ifdef XFS_TRANS_DEBUG | 147 | #ifdef XFS_TRANS_DEBUG | 
| 154 | int ili_root_size; | 148 | int ili_root_size; | 
| 155 | char *ili_orig_root; | 149 | char *ili_orig_root; | 
diff --git a/fs/xfs/xfs_itable.c b/fs/xfs/xfs_itable.c index 62efab2f3839..b1b801e4a28e 100644 --- a/fs/xfs/xfs_itable.c +++ b/fs/xfs/xfs_itable.c  | |||
| @@ -106,6 +106,7 @@ xfs_bulkstat_one_iget( | |||
| 106 | buf->bs_dmevmask = dic->di_dmevmask; | 106 | buf->bs_dmevmask = dic->di_dmevmask; | 
| 107 | buf->bs_dmstate = dic->di_dmstate; | 107 | buf->bs_dmstate = dic->di_dmstate; | 
| 108 | buf->bs_aextents = dic->di_anextents; | 108 | buf->bs_aextents = dic->di_anextents; | 
| 109 | buf->bs_forkoff = XFS_IFORK_BOFF(ip); | ||
| 109 | 110 | ||
| 110 | switch (dic->di_format) { | 111 | switch (dic->di_format) { | 
| 111 | case XFS_DINODE_FMT_DEV: | 112 | case XFS_DINODE_FMT_DEV: | 
| @@ -176,6 +177,7 @@ xfs_bulkstat_one_dinode( | |||
| 176 | buf->bs_dmevmask = be32_to_cpu(dic->di_dmevmask); | 177 | buf->bs_dmevmask = be32_to_cpu(dic->di_dmevmask); | 
| 177 | buf->bs_dmstate = be16_to_cpu(dic->di_dmstate); | 178 | buf->bs_dmstate = be16_to_cpu(dic->di_dmstate); | 
| 178 | buf->bs_aextents = be16_to_cpu(dic->di_anextents); | 179 | buf->bs_aextents = be16_to_cpu(dic->di_anextents); | 
| 180 | buf->bs_forkoff = XFS_DFORK_BOFF(dic); | ||
| 179 | 181 | ||
| 180 | switch (dic->di_format) { | 182 | switch (dic->di_format) { | 
| 181 | case XFS_DINODE_FMT_DEV: | 183 | case XFS_DINODE_FMT_DEV: | 
| @@ -408,8 +410,10 @@ xfs_bulkstat( | |||
| 408 | (XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog); | 410 | (XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog); | 
| 409 | nimask = ~(nicluster - 1); | 411 | nimask = ~(nicluster - 1); | 
| 410 | nbcluster = nicluster >> mp->m_sb.sb_inopblog; | 412 | nbcluster = nicluster >> mp->m_sb.sb_inopblog; | 
| 411 | irbuf = kmem_zalloc_greedy(&irbsize, PAGE_SIZE, PAGE_SIZE * 4, | 413 | irbuf = kmem_zalloc_greedy(&irbsize, PAGE_SIZE, PAGE_SIZE * 4); | 
| 412 | KM_SLEEP | KM_MAYFAIL | KM_LARGE); | 414 | if (!irbuf) | 
| 415 | return ENOMEM; | ||
| 416 | |||
| 413 | nirbuf = irbsize / sizeof(*irbuf); | 417 | nirbuf = irbsize / sizeof(*irbuf); | 
| 414 | 418 | ||
| 415 | /* | 419 | /* | 
| @@ -420,9 +424,7 @@ xfs_bulkstat( | |||
| 420 | while (XFS_BULKSTAT_UBLEFT(ubleft) && agno < mp->m_sb.sb_agcount) { | 424 | while (XFS_BULKSTAT_UBLEFT(ubleft) && agno < mp->m_sb.sb_agcount) { | 
| 421 | cond_resched(); | 425 | cond_resched(); | 
| 422 | bp = NULL; | 426 | bp = NULL; | 
| 423 | down_read(&mp->m_peraglock); | ||
| 424 | error = xfs_ialloc_read_agi(mp, NULL, agno, &agbp); | 427 | error = xfs_ialloc_read_agi(mp, NULL, agno, &agbp); | 
| 425 | up_read(&mp->m_peraglock); | ||
| 426 | if (error) { | 428 | if (error) { | 
| 427 | /* | 429 | /* | 
| 428 | * Skip this allocation group and go to the next one. | 430 | * Skip this allocation group and go to the next one. | 
| @@ -729,7 +731,7 @@ xfs_bulkstat( | |||
| 729 | /* | 731 | /* | 
| 730 | * Done, we're either out of filesystem or space to put the data. | 732 | * Done, we're either out of filesystem or space to put the data. | 
| 731 | */ | 733 | */ | 
| 732 | kmem_free(irbuf); | 734 | kmem_free_large(irbuf); | 
| 733 | *ubcountp = ubelem; | 735 | *ubcountp = ubelem; | 
| 734 | /* | 736 | /* | 
| 735 | * Found some inodes, return them now and return the error next time. | 737 | * Found some inodes, return them now and return the error next time. | 
| @@ -849,9 +851,7 @@ xfs_inumbers( | |||
| 849 | agbp = NULL; | 851 | agbp = NULL; | 
| 850 | while (left > 0 && agno < mp->m_sb.sb_agcount) { | 852 | while (left > 0 && agno < mp->m_sb.sb_agcount) { | 
| 851 | if (agbp == NULL) { | 853 | if (agbp == NULL) { | 
| 852 | down_read(&mp->m_peraglock); | ||
| 853 | error = xfs_ialloc_read_agi(mp, NULL, agno, &agbp); | 854 | error = xfs_ialloc_read_agi(mp, NULL, agno, &agbp); | 
| 854 | up_read(&mp->m_peraglock); | ||
| 855 | if (error) { | 855 | if (error) { | 
| 856 | /* | 856 | /* | 
| 857 | * If we can't read the AGI of this ag, | 857 | * If we can't read the AGI of this ag, | 
diff --git a/fs/xfs/xfs_log.c b/fs/xfs/xfs_log.c index 600b5b06aaeb..e8fba92d7cd9 100644 --- a/fs/xfs/xfs_log.c +++ b/fs/xfs/xfs_log.c  | |||
| @@ -50,7 +50,6 @@ kmem_zone_t *xfs_log_ticket_zone; | |||
| 50 | (off) += (bytes);} | 50 | (off) += (bytes);} | 
| 51 | 51 | ||
| 52 | /* Local miscellaneous function prototypes */ | 52 | /* Local miscellaneous function prototypes */ | 
| 53 | STATIC int xlog_bdstrat_cb(struct xfs_buf *); | ||
| 54 | STATIC int xlog_commit_record(xfs_mount_t *mp, xlog_ticket_t *ticket, | 53 | STATIC int xlog_commit_record(xfs_mount_t *mp, xlog_ticket_t *ticket, | 
| 55 | xlog_in_core_t **, xfs_lsn_t *); | 54 | xlog_in_core_t **, xfs_lsn_t *); | 
| 56 | STATIC xlog_t * xlog_alloc_log(xfs_mount_t *mp, | 55 | STATIC xlog_t * xlog_alloc_log(xfs_mount_t *mp, | 
| @@ -61,7 +60,7 @@ STATIC int xlog_space_left(xlog_t *log, int cycle, int bytes); | |||
| 61 | STATIC int xlog_sync(xlog_t *log, xlog_in_core_t *iclog); | 60 | STATIC int xlog_sync(xlog_t *log, xlog_in_core_t *iclog); | 
| 62 | STATIC void xlog_dealloc_log(xlog_t *log); | 61 | STATIC void xlog_dealloc_log(xlog_t *log); | 
| 63 | STATIC int xlog_write(xfs_mount_t *mp, xfs_log_iovec_t region[], | 62 | STATIC int xlog_write(xfs_mount_t *mp, xfs_log_iovec_t region[], | 
| 64 | int nentries, xfs_log_ticket_t tic, | 63 | int nentries, struct xlog_ticket *tic, | 
| 65 | xfs_lsn_t *start_lsn, | 64 | xfs_lsn_t *start_lsn, | 
| 66 | xlog_in_core_t **commit_iclog, | 65 | xlog_in_core_t **commit_iclog, | 
| 67 | uint flags); | 66 | uint flags); | 
| @@ -80,11 +79,6 @@ STATIC int xlog_state_release_iclog(xlog_t *log, | |||
| 80 | STATIC void xlog_state_switch_iclogs(xlog_t *log, | 79 | STATIC void xlog_state_switch_iclogs(xlog_t *log, | 
| 81 | xlog_in_core_t *iclog, | 80 | xlog_in_core_t *iclog, | 
| 82 | int eventual_size); | 81 | int eventual_size); | 
| 83 | STATIC int xlog_state_sync(xlog_t *log, | ||
| 84 | xfs_lsn_t lsn, | ||
| 85 | uint flags, | ||
| 86 | int *log_flushed); | ||
| 87 | STATIC int xlog_state_sync_all(xlog_t *log, uint flags, int *log_flushed); | ||
| 88 | STATIC void xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog); | 82 | STATIC void xlog_state_want_sync(xlog_t *log, xlog_in_core_t *iclog); | 
| 89 | 83 | ||
| 90 | /* local functions to manipulate grant head */ | 84 | /* local functions to manipulate grant head */ | 
| @@ -249,14 +243,14 @@ xlog_tic_add_region(xlog_ticket_t *tic, uint len, uint type) | |||
| 249 | * out when the next write occurs. | 243 | * out when the next write occurs. | 
| 250 | */ | 244 | */ | 
| 251 | xfs_lsn_t | 245 | xfs_lsn_t | 
| 252 | xfs_log_done(xfs_mount_t *mp, | 246 | xfs_log_done( | 
| 253 | xfs_log_ticket_t xtic, | 247 | struct xfs_mount *mp, | 
| 254 | void **iclog, | 248 | struct xlog_ticket *ticket, | 
| 255 | uint flags) | 249 | struct xlog_in_core **iclog, | 
| 250 | uint flags) | ||
| 256 | { | 251 | { | 
| 257 | xlog_t *log = mp->m_log; | 252 | struct log *log = mp->m_log; | 
| 258 | xlog_ticket_t *ticket = (xfs_log_ticket_t) xtic; | 253 | xfs_lsn_t lsn = 0; | 
| 259 | xfs_lsn_t lsn = 0; | ||
| 260 | 254 | ||
| 261 | if (XLOG_FORCED_SHUTDOWN(log) || | 255 | if (XLOG_FORCED_SHUTDOWN(log) || | 
| 262 | /* | 256 | /* | 
| @@ -264,8 +258,7 @@ xfs_log_done(xfs_mount_t *mp, | |||
| 264 | * If we get an error, just continue and give back the log ticket. | 258 | * If we get an error, just continue and give back the log ticket. | 
| 265 | */ | 259 | */ | 
| 266 | (((ticket->t_flags & XLOG_TIC_INITED) == 0) && | 260 | (((ticket->t_flags & XLOG_TIC_INITED) == 0) && | 
| 267 | (xlog_commit_record(mp, ticket, | 261 | (xlog_commit_record(mp, ticket, iclog, &lsn)))) { | 
| 268 | (xlog_in_core_t **)iclog, &lsn)))) { | ||
| 269 | lsn = (xfs_lsn_t) -1; | 262 | lsn = (xfs_lsn_t) -1; | 
| 270 | if (ticket->t_flags & XLOG_TIC_PERM_RESERV) { | 263 | if (ticket->t_flags & XLOG_TIC_PERM_RESERV) { | 
| 271 | flags |= XFS_LOG_REL_PERM_RESERV; | 264 | flags |= XFS_LOG_REL_PERM_RESERV; | 
| @@ -295,67 +288,8 @@ xfs_log_done(xfs_mount_t *mp, | |||
| 295 | } | 288 | } | 
| 296 | 289 | ||
| 297 | return lsn; | 290 | return lsn; | 
| 298 | } /* xfs_log_done */ | ||
| 299 | |||
| 300 | |||
| 301 | /* | ||
| 302 | * Force the in-core log to disk. If flags == XFS_LOG_SYNC, | ||
| 303 | * the force is done synchronously. | ||
| 304 | * | ||
| 305 | * Asynchronous forces are implemented by setting the WANT_SYNC | ||
| 306 | * bit in the appropriate in-core log and then returning. | ||
| 307 | * | ||
| 308 | * Synchronous forces are implemented with a signal variable. All callers | ||
| 309 | * to force a given lsn to disk will wait on a the sv attached to the | ||
| 310 | * specific in-core log. When given in-core log finally completes its | ||
| 311 | * write to disk, that thread will wake up all threads waiting on the | ||
| 312 | * sv. | ||
| 313 | */ | ||
| 314 | int | ||
| 315 | _xfs_log_force( | ||
| 316 | xfs_mount_t *mp, | ||
| 317 | xfs_lsn_t lsn, | ||
| 318 | uint flags, | ||
| 319 | int *log_flushed) | ||
| 320 | { | ||
| 321 | xlog_t *log = mp->m_log; | ||
| 322 | int dummy; | ||
| 323 | |||
| 324 | if (!log_flushed) | ||
| 325 | log_flushed = &dummy; | ||
| 326 | |||
| 327 | ASSERT(flags & XFS_LOG_FORCE); | ||
| 328 | |||
| 329 | XFS_STATS_INC(xs_log_force); | ||
| 330 | |||
| 331 | if (log->l_flags & XLOG_IO_ERROR) | ||
| 332 | return XFS_ERROR(EIO); | ||
| 333 | if (lsn == 0) | ||
| 334 | return xlog_state_sync_all(log, flags, log_flushed); | ||
| 335 | else | ||
| 336 | return xlog_state_sync(log, lsn, flags, log_flushed); | ||
| 337 | } /* _xfs_log_force */ | ||
| 338 | |||
| 339 | /* | ||
| 340 | * Wrapper for _xfs_log_force(), to be used when caller doesn't care | ||
| 341 | * about errors or whether the log was flushed or not. This is the normal | ||
| 342 | * interface to use when trying to unpin items or move the log forward. | ||
| 343 | */ | ||
| 344 | void | ||
| 345 | xfs_log_force( | ||
| 346 | xfs_mount_t *mp, | ||
| 347 | xfs_lsn_t lsn, | ||
| 348 | uint flags) | ||
| 349 | { | ||
| 350 | int error; | ||
| 351 | error = _xfs_log_force(mp, lsn, flags, NULL); | ||
| 352 | if (error) { | ||
| 353 | xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: " | ||
| 354 | "error %d returned.", error); | ||
| 355 | } | ||
| 356 | } | 291 | } | 
| 357 | 292 | ||
| 358 | |||
| 359 | /* | 293 | /* | 
| 360 | * Attaches a new iclog I/O completion callback routine during | 294 | * Attaches a new iclog I/O completion callback routine during | 
| 361 | * transaction commit. If the log is in error state, a non-zero | 295 | * transaction commit. If the log is in error state, a non-zero | 
| @@ -363,11 +297,11 @@ xfs_log_force( | |||
| 363 | * executing the callback at an appropriate time. | 297 | * executing the callback at an appropriate time. | 
| 364 | */ | 298 | */ | 
| 365 | int | 299 | int | 
| 366 | xfs_log_notify(xfs_mount_t *mp, /* mount of partition */ | 300 | xfs_log_notify( | 
| 367 | void *iclog_hndl, /* iclog to hang callback off */ | 301 | struct xfs_mount *mp, | 
| 368 | xfs_log_callback_t *cb) | 302 | struct xlog_in_core *iclog, | 
| 303 | xfs_log_callback_t *cb) | ||
| 369 | { | 304 | { | 
| 370 | xlog_in_core_t *iclog = (xlog_in_core_t *)iclog_hndl; | ||
| 371 | int abortflg; | 305 | int abortflg; | 
| 372 | 306 | ||
| 373 | spin_lock(&iclog->ic_callback_lock); | 307 | spin_lock(&iclog->ic_callback_lock); | 
| @@ -381,16 +315,14 @@ xfs_log_notify(xfs_mount_t *mp, /* mount of partition */ | |||
| 381 | } | 315 | } | 
| 382 | spin_unlock(&iclog->ic_callback_lock); | 316 | spin_unlock(&iclog->ic_callback_lock); | 
| 383 | return abortflg; | 317 | return abortflg; | 
| 384 | } /* xfs_log_notify */ | 318 | } | 
| 385 | 319 | ||
| 386 | int | 320 | int | 
| 387 | xfs_log_release_iclog(xfs_mount_t *mp, | 321 | xfs_log_release_iclog( | 
| 388 | void *iclog_hndl) | 322 | struct xfs_mount *mp, | 
| 323 | struct xlog_in_core *iclog) | ||
| 389 | { | 324 | { | 
| 390 | xlog_t *log = mp->m_log; | 325 | if (xlog_state_release_iclog(mp->m_log, iclog)) { | 
| 391 | xlog_in_core_t *iclog = (xlog_in_core_t *)iclog_hndl; | ||
| 392 | |||
| 393 | if (xlog_state_release_iclog(log, iclog)) { | ||
| 394 | xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR); | 326 | xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR); | 
| 395 | return EIO; | 327 | return EIO; | 
| 396 | } | 328 | } | 
| @@ -409,17 +341,18 @@ xfs_log_release_iclog(xfs_mount_t *mp, | |||
| 409 | * reservation, we prevent over allocation problems. | 341 | * reservation, we prevent over allocation problems. | 
| 410 | */ | 342 | */ | 
| 411 | int | 343 | int | 
| 412 | xfs_log_reserve(xfs_mount_t *mp, | 344 | xfs_log_reserve( | 
| 413 | int unit_bytes, | 345 | struct xfs_mount *mp, | 
| 414 | int cnt, | 346 | int unit_bytes, | 
| 415 | xfs_log_ticket_t *ticket, | 347 | int cnt, | 
| 416 | __uint8_t client, | 348 | struct xlog_ticket **ticket, | 
| 417 | uint flags, | 349 | __uint8_t client, | 
| 418 | uint t_type) | 350 | uint flags, | 
| 351 | uint t_type) | ||
| 419 | { | 352 | { | 
| 420 | xlog_t *log = mp->m_log; | 353 | struct log *log = mp->m_log; | 
| 421 | xlog_ticket_t *internal_ticket; | 354 | struct xlog_ticket *internal_ticket; | 
| 422 | int retval = 0; | 355 | int retval = 0; | 
| 423 | 356 | ||
| 424 | ASSERT(client == XFS_TRANSACTION || client == XFS_LOG); | 357 | ASSERT(client == XFS_TRANSACTION || client == XFS_LOG); | 
| 425 | ASSERT((flags & XFS_LOG_NOSLEEP) == 0); | 358 | ASSERT((flags & XFS_LOG_NOSLEEP) == 0); | 
| @@ -432,7 +365,7 @@ xfs_log_reserve(xfs_mount_t *mp, | |||
| 432 | 365 | ||
| 433 | if (*ticket != NULL) { | 366 | if (*ticket != NULL) { | 
| 434 | ASSERT(flags & XFS_LOG_PERM_RESERV); | 367 | ASSERT(flags & XFS_LOG_PERM_RESERV); | 
| 435 | internal_ticket = (xlog_ticket_t *)*ticket; | 368 | internal_ticket = *ticket; | 
| 436 | 369 | ||
| 437 | trace_xfs_log_reserve(log, internal_ticket); | 370 | trace_xfs_log_reserve(log, internal_ticket); | 
| 438 | 371 | ||
| @@ -584,7 +517,7 @@ xfs_log_unmount_write(xfs_mount_t *mp) | |||
| 584 | xlog_in_core_t *first_iclog; | 517 | xlog_in_core_t *first_iclog; | 
| 585 | #endif | 518 | #endif | 
| 586 | xfs_log_iovec_t reg[1]; | 519 | xfs_log_iovec_t reg[1]; | 
| 587 | xfs_log_ticket_t tic = NULL; | 520 | xlog_ticket_t *tic = NULL; | 
| 588 | xfs_lsn_t lsn; | 521 | xfs_lsn_t lsn; | 
| 589 | int error; | 522 | int error; | 
| 590 | 523 | ||
| @@ -602,7 +535,7 @@ xfs_log_unmount_write(xfs_mount_t *mp) | |||
| 602 | if (mp->m_flags & XFS_MOUNT_RDONLY) | 535 | if (mp->m_flags & XFS_MOUNT_RDONLY) | 
| 603 | return 0; | 536 | return 0; | 
| 604 | 537 | ||
| 605 | error = _xfs_log_force(mp, 0, XFS_LOG_FORCE|XFS_LOG_SYNC, NULL); | 538 | error = _xfs_log_force(mp, XFS_LOG_SYNC, NULL); | 
| 606 | ASSERT(error || !(XLOG_FORCED_SHUTDOWN(log))); | 539 | ASSERT(error || !(XLOG_FORCED_SHUTDOWN(log))); | 
| 607 | 540 | ||
| 608 | #ifdef DEBUG | 541 | #ifdef DEBUG | 
| @@ -618,7 +551,7 @@ xfs_log_unmount_write(xfs_mount_t *mp) | |||
| 618 | if (! (XLOG_FORCED_SHUTDOWN(log))) { | 551 | if (! (XLOG_FORCED_SHUTDOWN(log))) { | 
| 619 | reg[0].i_addr = (void*)&magic; | 552 | reg[0].i_addr = (void*)&magic; | 
| 620 | reg[0].i_len = sizeof(magic); | 553 | reg[0].i_len = sizeof(magic); | 
| 621 | XLOG_VEC_SET_TYPE(®[0], XLOG_REG_TYPE_UNMOUNT); | 554 | reg[0].i_type = XLOG_REG_TYPE_UNMOUNT; | 
| 622 | 555 | ||
| 623 | error = xfs_log_reserve(mp, 600, 1, &tic, | 556 | error = xfs_log_reserve(mp, 600, 1, &tic, | 
| 624 | XFS_LOG, 0, XLOG_UNMOUNT_REC_TYPE); | 557 | XFS_LOG, 0, XLOG_UNMOUNT_REC_TYPE); | 
| @@ -721,24 +654,24 @@ xfs_log_unmount(xfs_mount_t *mp) | |||
| 721 | * transaction occur with one call to xfs_log_write(). | 654 | * transaction occur with one call to xfs_log_write(). | 
| 722 | */ | 655 | */ | 
| 723 | int | 656 | int | 
| 724 | xfs_log_write(xfs_mount_t * mp, | 657 | xfs_log_write( | 
| 725 | xfs_log_iovec_t reg[], | 658 | struct xfs_mount *mp, | 
| 726 | int nentries, | 659 | struct xfs_log_iovec reg[], | 
| 727 | xfs_log_ticket_t tic, | 660 | int nentries, | 
| 728 | xfs_lsn_t *start_lsn) | 661 | struct xlog_ticket *tic, | 
| 662 | xfs_lsn_t *start_lsn) | ||
| 729 | { | 663 | { | 
| 730 | int error; | 664 | struct log *log = mp->m_log; | 
| 731 | xlog_t *log = mp->m_log; | 665 | int error; | 
| 732 | 666 | ||
| 733 | if (XLOG_FORCED_SHUTDOWN(log)) | 667 | if (XLOG_FORCED_SHUTDOWN(log)) | 
| 734 | return XFS_ERROR(EIO); | 668 | return XFS_ERROR(EIO); | 
| 735 | 669 | ||
| 736 | if ((error = xlog_write(mp, reg, nentries, tic, start_lsn, NULL, 0))) { | 670 | error = xlog_write(mp, reg, nentries, tic, start_lsn, NULL, 0); | 
| 671 | if (error) | ||
| 737 | xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR); | 672 | xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR); | 
| 738 | } | ||
| 739 | return error; | 673 | return error; | 
| 740 | } /* xfs_log_write */ | 674 | } | 
| 741 | |||
| 742 | 675 | ||
| 743 | void | 676 | void | 
| 744 | xfs_log_move_tail(xfs_mount_t *mp, | 677 | xfs_log_move_tail(xfs_mount_t *mp, | 
| @@ -988,35 +921,6 @@ xlog_iodone(xfs_buf_t *bp) | |||
| 988 | } /* xlog_iodone */ | 921 | } /* xlog_iodone */ | 
| 989 | 922 | ||
| 990 | /* | 923 | /* | 
| 991 | * The bdstrat callback function for log bufs. This gives us a central | ||
| 992 | * place to trap bufs in case we get hit by a log I/O error and need to | ||
| 993 | * shutdown. Actually, in practice, even when we didn't get a log error, | ||
| 994 | * we transition the iclogs to IOERROR state *after* flushing all existing | ||
| 995 | * iclogs to disk. This is because we don't want anymore new transactions to be | ||
| 996 | * started or completed afterwards. | ||
| 997 | */ | ||
| 998 | STATIC int | ||
| 999 | xlog_bdstrat_cb(struct xfs_buf *bp) | ||
| 1000 | { | ||
| 1001 | xlog_in_core_t *iclog; | ||
| 1002 | |||
| 1003 | iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *); | ||
| 1004 | |||
| 1005 | if ((iclog->ic_state & XLOG_STATE_IOERROR) == 0) { | ||
| 1006 | /* note for irix bstrat will need struct bdevsw passed | ||
| 1007 | * Fix the following macro if the code ever is merged | ||
| 1008 | */ | ||
| 1009 | XFS_bdstrat(bp); | ||
| 1010 | return 0; | ||
| 1011 | } | ||
| 1012 | |||
| 1013 | XFS_BUF_ERROR(bp, EIO); | ||
| 1014 | XFS_BUF_STALE(bp); | ||
| 1015 | xfs_biodone(bp); | ||
| 1016 | return XFS_ERROR(EIO); | ||
| 1017 | } | ||
| 1018 | |||
| 1019 | /* | ||
| 1020 | * Return size of each in-core log record buffer. | 924 | * Return size of each in-core log record buffer. | 
| 1021 | * | 925 | * | 
| 1022 | * All machines get 8 x 32kB buffers by default, unless tuned otherwise. | 926 | * All machines get 8 x 32kB buffers by default, unless tuned otherwise. | 
| @@ -1158,7 +1062,6 @@ xlog_alloc_log(xfs_mount_t *mp, | |||
| 1158 | if (!bp) | 1062 | if (!bp) | 
| 1159 | goto out_free_log; | 1063 | goto out_free_log; | 
| 1160 | XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone); | 1064 | XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone); | 
| 1161 | XFS_BUF_SET_BDSTRAT_FUNC(bp, xlog_bdstrat_cb); | ||
| 1162 | XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1); | 1065 | XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1); | 
| 1163 | ASSERT(XFS_BUF_ISBUSY(bp)); | 1066 | ASSERT(XFS_BUF_ISBUSY(bp)); | 
| 1164 | ASSERT(XFS_BUF_VALUSEMA(bp) <= 0); | 1067 | ASSERT(XFS_BUF_VALUSEMA(bp) <= 0); | 
| @@ -1196,7 +1099,6 @@ xlog_alloc_log(xfs_mount_t *mp, | |||
| 1196 | if (!XFS_BUF_CPSEMA(bp)) | 1099 | if (!XFS_BUF_CPSEMA(bp)) | 
| 1197 | ASSERT(0); | 1100 | ASSERT(0); | 
| 1198 | XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone); | 1101 | XFS_BUF_SET_IODONE_FUNC(bp, xlog_iodone); | 
| 1199 | XFS_BUF_SET_BDSTRAT_FUNC(bp, xlog_bdstrat_cb); | ||
| 1200 | XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1); | 1102 | XFS_BUF_SET_FSPRIVATE2(bp, (unsigned long)1); | 
| 1201 | iclog->ic_bp = bp; | 1103 | iclog->ic_bp = bp; | 
| 1202 | iclog->ic_data = bp->b_addr; | 1104 | iclog->ic_data = bp->b_addr; | 
| @@ -1268,7 +1170,7 @@ xlog_commit_record(xfs_mount_t *mp, | |||
| 1268 | 1170 | ||
| 1269 | reg[0].i_addr = NULL; | 1171 | reg[0].i_addr = NULL; | 
| 1270 | reg[0].i_len = 0; | 1172 | reg[0].i_len = 0; | 
| 1271 | XLOG_VEC_SET_TYPE(®[0], XLOG_REG_TYPE_COMMIT); | 1173 | reg[0].i_type = XLOG_REG_TYPE_COMMIT; | 
| 1272 | 1174 | ||
| 1273 | ASSERT_ALWAYS(iclog); | 1175 | ASSERT_ALWAYS(iclog); | 
| 1274 | if ((error = xlog_write(mp, reg, 1, ticket, commitlsnp, | 1176 | if ((error = xlog_write(mp, reg, 1, ticket, commitlsnp, | 
| @@ -1343,6 +1245,37 @@ xlog_grant_push_ail(xfs_mount_t *mp, | |||
| 1343 | xfs_trans_ail_push(log->l_ailp, threshold_lsn); | 1245 | xfs_trans_ail_push(log->l_ailp, threshold_lsn); | 
| 1344 | } /* xlog_grant_push_ail */ | 1246 | } /* xlog_grant_push_ail */ | 
| 1345 | 1247 | ||
| 1248 | /* | ||
| 1249 | * The bdstrat callback function for log bufs. This gives us a central | ||
| 1250 | * place to trap bufs in case we get hit by a log I/O error and need to | ||
| 1251 | * shutdown. Actually, in practice, even when we didn't get a log error, | ||
| 1252 | * we transition the iclogs to IOERROR state *after* flushing all existing | ||
| 1253 | * iclogs to disk. This is because we don't want anymore new transactions to be | ||
| 1254 | * started or completed afterwards. | ||
| 1255 | */ | ||
| 1256 | STATIC int | ||
| 1257 | xlog_bdstrat( | ||
| 1258 | struct xfs_buf *bp) | ||
| 1259 | { | ||
| 1260 | struct xlog_in_core *iclog; | ||
| 1261 | |||
| 1262 | iclog = XFS_BUF_FSPRIVATE(bp, xlog_in_core_t *); | ||
| 1263 | if (iclog->ic_state & XLOG_STATE_IOERROR) { | ||
| 1264 | XFS_BUF_ERROR(bp, EIO); | ||
| 1265 | XFS_BUF_STALE(bp); | ||
| 1266 | xfs_biodone(bp); | ||
| 1267 | /* | ||
| 1268 | * It would seem logical to return EIO here, but we rely on | ||
| 1269 | * the log state machine to propagate I/O errors instead of | ||
| 1270 | * doing it here. | ||
| 1271 | */ | ||
| 1272 | return 0; | ||
| 1273 | } | ||
| 1274 | |||
| 1275 | bp->b_flags |= _XBF_RUN_QUEUES; | ||
| 1276 | xfs_buf_iorequest(bp); | ||
| 1277 | return 0; | ||
| 1278 | } | ||
| 1346 | 1279 | ||
| 1347 | /* | 1280 | /* | 
| 1348 | * Flush out the in-core log (iclog) to the on-disk log in an asynchronous | 1281 | * Flush out the in-core log (iclog) to the on-disk log in an asynchronous | 
| @@ -1462,7 +1395,7 @@ xlog_sync(xlog_t *log, | |||
| 1462 | */ | 1395 | */ | 
| 1463 | XFS_BUF_WRITE(bp); | 1396 | XFS_BUF_WRITE(bp); | 
| 1464 | 1397 | ||
| 1465 | if ((error = XFS_bwrite(bp))) { | 1398 | if ((error = xlog_bdstrat(bp))) { | 
| 1466 | xfs_ioerror_alert("xlog_sync", log->l_mp, bp, | 1399 | xfs_ioerror_alert("xlog_sync", log->l_mp, bp, | 
| 1467 | XFS_BUF_ADDR(bp)); | 1400 | XFS_BUF_ADDR(bp)); | 
| 1468 | return error; | 1401 | return error; | 
| @@ -1502,7 +1435,7 @@ xlog_sync(xlog_t *log, | |||
| 1502 | /* account for internal log which doesn't start at block #0 */ | 1435 | /* account for internal log which doesn't start at block #0 */ | 
| 1503 | XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart); | 1436 | XFS_BUF_SET_ADDR(bp, XFS_BUF_ADDR(bp) + log->l_logBBstart); | 
| 1504 | XFS_BUF_WRITE(bp); | 1437 | XFS_BUF_WRITE(bp); | 
| 1505 | if ((error = XFS_bwrite(bp))) { | 1438 | if ((error = xlog_bdstrat(bp))) { | 
| 1506 | xfs_ioerror_alert("xlog_sync (split)", log->l_mp, | 1439 | xfs_ioerror_alert("xlog_sync (split)", log->l_mp, | 
| 1507 | bp, XFS_BUF_ADDR(bp)); | 1440 | bp, XFS_BUF_ADDR(bp)); | 
| 1508 | return error; | 1441 | return error; | 
| @@ -1707,16 +1640,16 @@ xlog_print_tic_res(xfs_mount_t *mp, xlog_ticket_t *ticket) | |||
| 1707 | * bytes have been written out. | 1640 | * bytes have been written out. | 
| 1708 | */ | 1641 | */ | 
| 1709 | STATIC int | 1642 | STATIC int | 
| 1710 | xlog_write(xfs_mount_t * mp, | 1643 | xlog_write( | 
| 1711 | xfs_log_iovec_t reg[], | 1644 | struct xfs_mount *mp, | 
| 1712 | int nentries, | 1645 | struct xfs_log_iovec reg[], | 
| 1713 | xfs_log_ticket_t tic, | 1646 | int nentries, | 
| 1714 | xfs_lsn_t *start_lsn, | 1647 | struct xlog_ticket *ticket, | 
| 1715 | xlog_in_core_t **commit_iclog, | 1648 | xfs_lsn_t *start_lsn, | 
| 1716 | uint flags) | 1649 | struct xlog_in_core **commit_iclog, | 
| 1650 | uint flags) | ||
| 1717 | { | 1651 | { | 
| 1718 | xlog_t *log = mp->m_log; | 1652 | xlog_t *log = mp->m_log; | 
| 1719 | xlog_ticket_t *ticket = (xlog_ticket_t *)tic; | ||
| 1720 | xlog_in_core_t *iclog = NULL; /* ptr to current in-core log */ | 1653 | xlog_in_core_t *iclog = NULL; /* ptr to current in-core log */ | 
| 1721 | xlog_op_header_t *logop_head; /* ptr to log operation header */ | 1654 | xlog_op_header_t *logop_head; /* ptr to log operation header */ | 
| 1722 | __psint_t ptr; /* copy address into data region */ | 1655 | __psint_t ptr; /* copy address into data region */ | 
| @@ -1830,7 +1763,7 @@ xlog_write(xfs_mount_t * mp, | |||
| 1830 | default: | 1763 | default: | 
| 1831 | xfs_fs_cmn_err(CE_WARN, mp, | 1764 | xfs_fs_cmn_err(CE_WARN, mp, | 
| 1832 | "Bad XFS transaction clientid 0x%x in ticket 0x%p", | 1765 | "Bad XFS transaction clientid 0x%x in ticket 0x%p", | 
| 1833 | logop_head->oh_clientid, tic); | 1766 | logop_head->oh_clientid, ticket); | 
| 1834 | return XFS_ERROR(EIO); | 1767 | return XFS_ERROR(EIO); | 
| 1835 | } | 1768 | } | 
| 1836 | 1769 | ||
| @@ -2854,7 +2787,6 @@ xlog_state_switch_iclogs(xlog_t *log, | |||
| 2854 | log->l_iclog = iclog->ic_next; | 2787 | log->l_iclog = iclog->ic_next; | 
| 2855 | } /* xlog_state_switch_iclogs */ | 2788 | } /* xlog_state_switch_iclogs */ | 
| 2856 | 2789 | ||
| 2857 | |||
| 2858 | /* | 2790 | /* | 
| 2859 | * Write out all data in the in-core log as of this exact moment in time. | 2791 | * Write out all data in the in-core log as of this exact moment in time. | 
| 2860 | * | 2792 | * | 
| @@ -2882,11 +2814,17 @@ xlog_state_switch_iclogs(xlog_t *log, | |||
| 2882 | * b) when we return from flushing out this iclog, it is still | 2814 | * b) when we return from flushing out this iclog, it is still | 
| 2883 | * not in the active nor dirty state. | 2815 | * not in the active nor dirty state. | 
| 2884 | */ | 2816 | */ | 
| 2885 | STATIC int | 2817 | int | 
| 2886 | xlog_state_sync_all(xlog_t *log, uint flags, int *log_flushed) | 2818 | _xfs_log_force( | 
| 2819 | struct xfs_mount *mp, | ||
| 2820 | uint flags, | ||
| 2821 | int *log_flushed) | ||
| 2887 | { | 2822 | { | 
| 2888 | xlog_in_core_t *iclog; | 2823 | struct log *log = mp->m_log; | 
| 2889 | xfs_lsn_t lsn; | 2824 | struct xlog_in_core *iclog; | 
| 2825 | xfs_lsn_t lsn; | ||
| 2826 | |||
| 2827 | XFS_STATS_INC(xs_log_force); | ||
| 2890 | 2828 | ||
| 2891 | spin_lock(&log->l_icloglock); | 2829 | spin_lock(&log->l_icloglock); | 
| 2892 | 2830 | ||
| @@ -2932,7 +2870,9 @@ xlog_state_sync_all(xlog_t *log, uint flags, int *log_flushed) | |||
| 2932 | 2870 | ||
| 2933 | if (xlog_state_release_iclog(log, iclog)) | 2871 | if (xlog_state_release_iclog(log, iclog)) | 
| 2934 | return XFS_ERROR(EIO); | 2872 | return XFS_ERROR(EIO); | 
| 2935 | *log_flushed = 1; | 2873 | |
| 2874 | if (log_flushed) | ||
| 2875 | *log_flushed = 1; | ||
| 2936 | spin_lock(&log->l_icloglock); | 2876 | spin_lock(&log->l_icloglock); | 
| 2937 | if (be64_to_cpu(iclog->ic_header.h_lsn) == lsn && | 2877 | if (be64_to_cpu(iclog->ic_header.h_lsn) == lsn && | 
| 2938 | iclog->ic_state != XLOG_STATE_DIRTY) | 2878 | iclog->ic_state != XLOG_STATE_DIRTY) | 
| @@ -2976,19 +2916,37 @@ maybe_sleep: | |||
| 2976 | */ | 2916 | */ | 
| 2977 | if (iclog->ic_state & XLOG_STATE_IOERROR) | 2917 | if (iclog->ic_state & XLOG_STATE_IOERROR) | 
| 2978 | return XFS_ERROR(EIO); | 2918 | return XFS_ERROR(EIO); | 
| 2979 | *log_flushed = 1; | 2919 | if (log_flushed) | 
| 2980 | 2920 | *log_flushed = 1; | |
| 2981 | } else { | 2921 | } else { | 
| 2982 | 2922 | ||
| 2983 | no_sleep: | 2923 | no_sleep: | 
| 2984 | spin_unlock(&log->l_icloglock); | 2924 | spin_unlock(&log->l_icloglock); | 
| 2985 | } | 2925 | } | 
| 2986 | return 0; | 2926 | return 0; | 
| 2987 | } /* xlog_state_sync_all */ | 2927 | } | 
| 2988 | 2928 | ||
| 2929 | /* | ||
| 2930 | * Wrapper for _xfs_log_force(), to be used when caller doesn't care | ||
| 2931 | * about errors or whether the log was flushed or not. This is the normal | ||
| 2932 | * interface to use when trying to unpin items or move the log forward. | ||
| 2933 | */ | ||
| 2934 | void | ||
| 2935 | xfs_log_force( | ||
| 2936 | xfs_mount_t *mp, | ||
| 2937 | uint flags) | ||
| 2938 | { | ||
| 2939 | int error; | ||
| 2940 | |||
| 2941 | error = _xfs_log_force(mp, flags, NULL); | ||
| 2942 | if (error) { | ||
| 2943 | xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: " | ||
| 2944 | "error %d returned.", error); | ||
| 2945 | } | ||
| 2946 | } | ||
| 2989 | 2947 | ||
| 2990 | /* | 2948 | /* | 
| 2991 | * Used by code which implements synchronous log forces. | 2949 | * Force the in-core log to disk for a specific LSN. | 
| 2992 | * | 2950 | * | 
| 2993 | * Find in-core log with lsn. | 2951 | * Find in-core log with lsn. | 
| 2994 | * If it is in the DIRTY state, just return. | 2952 | * If it is in the DIRTY state, just return. | 
| @@ -2996,109 +2954,142 @@ no_sleep: | |||
| 2996 | * state and go to sleep or return. | 2954 | * state and go to sleep or return. | 
| 2997 | * If it is in any other state, go to sleep or return. | 2955 | * If it is in any other state, go to sleep or return. | 
| 2998 | * | 2956 | * | 
| 2999 | * If filesystem activity goes to zero, the iclog will get flushed only by | 2957 | * Synchronous forces are implemented with a signal variable. All callers | 
| 3000 | * bdflush(). | 2958 | * to force a given lsn to disk will wait on a the sv attached to the | 
| 2959 | * specific in-core log. When given in-core log finally completes its | ||
| 2960 | * write to disk, that thread will wake up all threads waiting on the | ||
| 2961 | * sv. | ||
| 3001 | */ | 2962 | */ | 
| 3002 | STATIC int | 2963 | int | 
| 3003 | xlog_state_sync(xlog_t *log, | 2964 | _xfs_log_force_lsn( | 
| 3004 | xfs_lsn_t lsn, | 2965 | struct xfs_mount *mp, | 
| 3005 | uint flags, | 2966 | xfs_lsn_t lsn, | 
| 3006 | int *log_flushed) | 2967 | uint flags, | 
| 2968 | int *log_flushed) | ||
| 3007 | { | 2969 | { | 
| 3008 | xlog_in_core_t *iclog; | 2970 | struct log *log = mp->m_log; | 
| 3009 | int already_slept = 0; | 2971 | struct xlog_in_core *iclog; | 
| 3010 | 2972 | int already_slept = 0; | |
| 3011 | try_again: | ||
| 3012 | spin_lock(&log->l_icloglock); | ||
| 3013 | iclog = log->l_iclog; | ||
| 3014 | 2973 | ||
| 3015 | if (iclog->ic_state & XLOG_STATE_IOERROR) { | 2974 | ASSERT(lsn != 0); | 
| 3016 | spin_unlock(&log->l_icloglock); | ||
| 3017 | return XFS_ERROR(EIO); | ||
| 3018 | } | ||
| 3019 | 2975 | ||
| 3020 | do { | 2976 | XFS_STATS_INC(xs_log_force); | 
| 3021 | if (be64_to_cpu(iclog->ic_header.h_lsn) != lsn) { | ||
| 3022 | iclog = iclog->ic_next; | ||
| 3023 | continue; | ||
| 3024 | } | ||
| 3025 | 2977 | ||
| 3026 | if (iclog->ic_state == XLOG_STATE_DIRTY) { | 2978 | try_again: | 
| 2979 | spin_lock(&log->l_icloglock); | ||
| 2980 | iclog = log->l_iclog; | ||
| 2981 | if (iclog->ic_state & XLOG_STATE_IOERROR) { | ||
| 3027 | spin_unlock(&log->l_icloglock); | 2982 | spin_unlock(&log->l_icloglock); | 
| 3028 | return 0; | 2983 | return XFS_ERROR(EIO); | 
| 3029 | } | 2984 | } | 
| 3030 | 2985 | ||
| 3031 | if (iclog->ic_state == XLOG_STATE_ACTIVE) { | 2986 | do { | 
| 3032 | /* | 2987 | if (be64_to_cpu(iclog->ic_header.h_lsn) != lsn) { | 
| 3033 | * We sleep here if we haven't already slept (e.g. | 2988 | iclog = iclog->ic_next; | 
| 3034 | * this is the first time we've looked at the correct | 2989 | continue; | 
| 3035 | * iclog buf) and the buffer before us is going to | 2990 | } | 
| 3036 | * be sync'ed. The reason for this is that if we | 2991 | |
| 3037 | * are doing sync transactions here, by waiting for | 2992 | if (iclog->ic_state == XLOG_STATE_DIRTY) { | 
| 3038 | * the previous I/O to complete, we can allow a few | 2993 | spin_unlock(&log->l_icloglock); | 
| 3039 | * more transactions into this iclog before we close | 2994 | return 0; | 
| 3040 | * it down. | 2995 | } | 
| 3041 | * | 2996 | |
| 3042 | * Otherwise, we mark the buffer WANT_SYNC, and bump | 2997 | if (iclog->ic_state == XLOG_STATE_ACTIVE) { | 
| 3043 | * up the refcnt so we can release the log (which drops | 2998 | /* | 
| 3044 | * the ref count). The state switch keeps new transaction | 2999 | * We sleep here if we haven't already slept (e.g. | 
| 3045 | * commits from using this buffer. When the current commits | 3000 | * this is the first time we've looked at the correct | 
| 3046 | * finish writing into the buffer, the refcount will drop to | 3001 | * iclog buf) and the buffer before us is going to | 
| 3047 | * zero and the buffer will go out then. | 3002 | * be sync'ed. The reason for this is that if we | 
| 3048 | */ | 3003 | * are doing sync transactions here, by waiting for | 
| 3049 | if (!already_slept && | 3004 | * the previous I/O to complete, we can allow a few | 
| 3050 | (iclog->ic_prev->ic_state & (XLOG_STATE_WANT_SYNC | | 3005 | * more transactions into this iclog before we close | 
| 3051 | XLOG_STATE_SYNCING))) { | 3006 | * it down. | 
| 3052 | ASSERT(!(iclog->ic_state & XLOG_STATE_IOERROR)); | 3007 | * | 
| 3053 | XFS_STATS_INC(xs_log_force_sleep); | 3008 | * Otherwise, we mark the buffer WANT_SYNC, and bump | 
| 3054 | sv_wait(&iclog->ic_prev->ic_write_wait, PSWP, | 3009 | * up the refcnt so we can release the log (which | 
| 3055 | &log->l_icloglock, s); | 3010 | * drops the ref count). The state switch keeps new | 
| 3056 | *log_flushed = 1; | 3011 | * transaction commits from using this buffer. When | 
| 3057 | already_slept = 1; | 3012 | * the current commits finish writing into the buffer, | 
| 3058 | goto try_again; | 3013 | * the refcount will drop to zero and the buffer will | 
| 3059 | } else { | 3014 | * go out then. | 
| 3015 | */ | ||
| 3016 | if (!already_slept && | ||
| 3017 | (iclog->ic_prev->ic_state & | ||
| 3018 | (XLOG_STATE_WANT_SYNC | XLOG_STATE_SYNCING))) { | ||
| 3019 | ASSERT(!(iclog->ic_state & XLOG_STATE_IOERROR)); | ||
| 3020 | |||
| 3021 | XFS_STATS_INC(xs_log_force_sleep); | ||
| 3022 | |||
| 3023 | sv_wait(&iclog->ic_prev->ic_write_wait, | ||
| 3024 | PSWP, &log->l_icloglock, s); | ||
| 3025 | if (log_flushed) | ||
| 3026 | *log_flushed = 1; | ||
| 3027 | already_slept = 1; | ||
| 3028 | goto try_again; | ||
| 3029 | } | ||
| 3060 | atomic_inc(&iclog->ic_refcnt); | 3030 | atomic_inc(&iclog->ic_refcnt); | 
| 3061 | xlog_state_switch_iclogs(log, iclog, 0); | 3031 | xlog_state_switch_iclogs(log, iclog, 0); | 
| 3062 | spin_unlock(&log->l_icloglock); | 3032 | spin_unlock(&log->l_icloglock); | 
| 3063 | if (xlog_state_release_iclog(log, iclog)) | 3033 | if (xlog_state_release_iclog(log, iclog)) | 
| 3064 | return XFS_ERROR(EIO); | 3034 | return XFS_ERROR(EIO); | 
| 3065 | *log_flushed = 1; | 3035 | if (log_flushed) | 
| 3036 | *log_flushed = 1; | ||
| 3066 | spin_lock(&log->l_icloglock); | 3037 | spin_lock(&log->l_icloglock); | 
| 3067 | } | 3038 | } | 
| 3068 | } | ||
| 3069 | 3039 | ||
| 3070 | if ((flags & XFS_LOG_SYNC) && /* sleep */ | 3040 | if ((flags & XFS_LOG_SYNC) && /* sleep */ | 
| 3071 | !(iclog->ic_state & (XLOG_STATE_ACTIVE | XLOG_STATE_DIRTY))) { | 3041 | !(iclog->ic_state & | 
| 3042 | (XLOG_STATE_ACTIVE | XLOG_STATE_DIRTY))) { | ||
| 3043 | /* | ||
| 3044 | * Don't wait on completion if we know that we've | ||
| 3045 | * gotten a log write error. | ||
| 3046 | */ | ||
| 3047 | if (iclog->ic_state & XLOG_STATE_IOERROR) { | ||
| 3048 | spin_unlock(&log->l_icloglock); | ||
| 3049 | return XFS_ERROR(EIO); | ||
| 3050 | } | ||
| 3051 | XFS_STATS_INC(xs_log_force_sleep); | ||
| 3052 | sv_wait(&iclog->ic_force_wait, PSWP, &log->l_icloglock, s); | ||
| 3053 | /* | ||
| 3054 | * No need to grab the log lock here since we're | ||
| 3055 | * only deciding whether or not to return EIO | ||
| 3056 | * and the memory read should be atomic. | ||
| 3057 | */ | ||
| 3058 | if (iclog->ic_state & XLOG_STATE_IOERROR) | ||
| 3059 | return XFS_ERROR(EIO); | ||
| 3072 | 3060 | ||
| 3073 | /* | 3061 | if (log_flushed) | 
| 3074 | * Don't wait on completion if we know that we've | 3062 | *log_flushed = 1; | 
| 3075 | * gotten a log write error. | 3063 | } else { /* just return */ | 
| 3076 | */ | ||
| 3077 | if (iclog->ic_state & XLOG_STATE_IOERROR) { | ||
| 3078 | spin_unlock(&log->l_icloglock); | 3064 | spin_unlock(&log->l_icloglock); | 
| 3079 | return XFS_ERROR(EIO); | ||
| 3080 | } | 3065 | } | 
| 3081 | XFS_STATS_INC(xs_log_force_sleep); | ||
| 3082 | sv_wait(&iclog->ic_force_wait, PSWP, &log->l_icloglock, s); | ||
| 3083 | /* | ||
| 3084 | * No need to grab the log lock here since we're | ||
| 3085 | * only deciding whether or not to return EIO | ||
| 3086 | * and the memory read should be atomic. | ||
| 3087 | */ | ||
| 3088 | if (iclog->ic_state & XLOG_STATE_IOERROR) | ||
| 3089 | return XFS_ERROR(EIO); | ||
| 3090 | *log_flushed = 1; | ||
| 3091 | } else { /* just return */ | ||
| 3092 | spin_unlock(&log->l_icloglock); | ||
| 3093 | } | ||
| 3094 | return 0; | ||
| 3095 | 3066 | ||
| 3096 | } while (iclog != log->l_iclog); | 3067 | return 0; | 
| 3068 | } while (iclog != log->l_iclog); | ||
| 3097 | 3069 | ||
| 3098 | spin_unlock(&log->l_icloglock); | 3070 | spin_unlock(&log->l_icloglock); | 
| 3099 | return 0; | 3071 | return 0; | 
| 3100 | } /* xlog_state_sync */ | 3072 | } | 
| 3073 | |||
| 3074 | /* | ||
| 3075 | * Wrapper for _xfs_log_force_lsn(), to be used when caller doesn't care | ||
| 3076 | * about errors or whether the log was flushed or not. This is the normal | ||
| 3077 | * interface to use when trying to unpin items or move the log forward. | ||
| 3078 | */ | ||
| 3079 | void | ||
| 3080 | xfs_log_force_lsn( | ||
| 3081 | xfs_mount_t *mp, | ||
| 3082 | xfs_lsn_t lsn, | ||
| 3083 | uint flags) | ||
| 3084 | { | ||
| 3085 | int error; | ||
| 3101 | 3086 | ||
| 3087 | error = _xfs_log_force_lsn(mp, lsn, flags, NULL); | ||
| 3088 | if (error) { | ||
| 3089 | xfs_fs_cmn_err(CE_WARN, mp, "xfs_log_force: " | ||
| 3090 | "error %d returned.", error); | ||
| 3091 | } | ||
| 3092 | } | ||
| 3102 | 3093 | ||
| 3103 | /* | 3094 | /* | 
| 3104 | * Called when we want to mark the current iclog as being ready to sync to | 3095 | * Called when we want to mark the current iclog as being ready to sync to | 
| @@ -3463,7 +3454,6 @@ xfs_log_force_umount( | |||
| 3463 | xlog_ticket_t *tic; | 3454 | xlog_ticket_t *tic; | 
| 3464 | xlog_t *log; | 3455 | xlog_t *log; | 
| 3465 | int retval; | 3456 | int retval; | 
| 3466 | int dummy; | ||
| 3467 | 3457 | ||
| 3468 | log = mp->m_log; | 3458 | log = mp->m_log; | 
| 3469 | 3459 | ||
| @@ -3537,13 +3527,14 @@ xfs_log_force_umount( | |||
| 3537 | } | 3527 | } | 
| 3538 | spin_unlock(&log->l_grant_lock); | 3528 | spin_unlock(&log->l_grant_lock); | 
| 3539 | 3529 | ||
| 3540 | if (! (log->l_iclog->ic_state & XLOG_STATE_IOERROR)) { | 3530 | if (!(log->l_iclog->ic_state & XLOG_STATE_IOERROR)) { | 
| 3541 | ASSERT(!logerror); | 3531 | ASSERT(!logerror); | 
| 3542 | /* | 3532 | /* | 
| 3543 | * Force the incore logs to disk before shutting the | 3533 | * Force the incore logs to disk before shutting the | 
| 3544 | * log down completely. | 3534 | * log down completely. | 
| 3545 | */ | 3535 | */ | 
| 3546 | xlog_state_sync_all(log, XFS_LOG_FORCE|XFS_LOG_SYNC, &dummy); | 3536 | _xfs_log_force(mp, XFS_LOG_SYNC, NULL); | 
| 3537 | |||
| 3547 | spin_lock(&log->l_icloglock); | 3538 | spin_lock(&log->l_icloglock); | 
| 3548 | retval = xlog_state_ioerror(log); | 3539 | retval = xlog_state_ioerror(log); | 
| 3549 | spin_unlock(&log->l_icloglock); | 3540 | spin_unlock(&log->l_icloglock); | 
diff --git a/fs/xfs/xfs_log.h b/fs/xfs/xfs_log.h index d0c9baa50b1a..97a24c7795a4 100644 --- a/fs/xfs/xfs_log.h +++ b/fs/xfs/xfs_log.h  | |||
| @@ -70,14 +70,8 @@ static inline xfs_lsn_t _lsn_cmp(xfs_lsn_t lsn1, xfs_lsn_t lsn2) | |||
| 70 | * Flags to xfs_log_force() | 70 | * Flags to xfs_log_force() | 
| 71 | * | 71 | * | 
| 72 | * XFS_LOG_SYNC: Synchronous force in-core log to disk | 72 | * XFS_LOG_SYNC: Synchronous force in-core log to disk | 
| 73 | * XFS_LOG_FORCE: Start in-core log write now. | ||
| 74 | * XFS_LOG_URGE: Start write within some window of time. | ||
| 75 | * | ||
| 76 | * Note: Either XFS_LOG_FORCE or XFS_LOG_URGE must be set. | ||
| 77 | */ | 73 | */ | 
| 78 | #define XFS_LOG_SYNC 0x1 | 74 | #define XFS_LOG_SYNC 0x1 | 
| 79 | #define XFS_LOG_FORCE 0x2 | ||
| 80 | #define XFS_LOG_URGE 0x4 | ||
| 81 | 75 | ||
| 82 | #endif /* __KERNEL__ */ | 76 | #endif /* __KERNEL__ */ | 
| 83 | 77 | ||
| @@ -110,16 +104,12 @@ static inline xfs_lsn_t _lsn_cmp(xfs_lsn_t lsn1, xfs_lsn_t lsn2) | |||
| 110 | #define XLOG_REG_TYPE_TRANSHDR 19 | 104 | #define XLOG_REG_TYPE_TRANSHDR 19 | 
| 111 | #define XLOG_REG_TYPE_MAX 19 | 105 | #define XLOG_REG_TYPE_MAX 19 | 
| 112 | 106 | ||
| 113 | #define XLOG_VEC_SET_TYPE(vecp, t) ((vecp)->i_type = (t)) | ||
| 114 | |||
| 115 | typedef struct xfs_log_iovec { | 107 | typedef struct xfs_log_iovec { | 
| 116 | xfs_caddr_t i_addr; /* beginning address of region */ | 108 | xfs_caddr_t i_addr; /* beginning address of region */ | 
| 117 | int i_len; /* length in bytes of region */ | 109 | int i_len; /* length in bytes of region */ | 
| 118 | uint i_type; /* type of region */ | 110 | uint i_type; /* type of region */ | 
| 119 | } xfs_log_iovec_t; | 111 | } xfs_log_iovec_t; | 
| 120 | 112 | ||
| 121 | typedef void* xfs_log_ticket_t; | ||
| 122 | |||
| 123 | /* | 113 | /* | 
| 124 | * Structure used to pass callback function and the function's argument | 114 | * Structure used to pass callback function and the function's argument | 
| 125 | * to the log manager. | 115 | * to the log manager. | 
| @@ -134,18 +124,25 @@ typedef struct xfs_log_callback { | |||
| 134 | #ifdef __KERNEL__ | 124 | #ifdef __KERNEL__ | 
| 135 | /* Log manager interfaces */ | 125 | /* Log manager interfaces */ | 
| 136 | struct xfs_mount; | 126 | struct xfs_mount; | 
| 127 | struct xlog_in_core; | ||
| 137 | struct xlog_ticket; | 128 | struct xlog_ticket; | 
| 129 | |||
| 138 | xfs_lsn_t xfs_log_done(struct xfs_mount *mp, | 130 | xfs_lsn_t xfs_log_done(struct xfs_mount *mp, | 
| 139 | xfs_log_ticket_t ticket, | 131 | struct xlog_ticket *ticket, | 
| 140 | void **iclog, | 132 | struct xlog_in_core **iclog, | 
| 141 | uint flags); | 133 | uint flags); | 
| 142 | int _xfs_log_force(struct xfs_mount *mp, | 134 | int _xfs_log_force(struct xfs_mount *mp, | 
| 143 | xfs_lsn_t lsn, | ||
| 144 | uint flags, | 135 | uint flags, | 
| 145 | int *log_forced); | 136 | int *log_forced); | 
| 146 | void xfs_log_force(struct xfs_mount *mp, | 137 | void xfs_log_force(struct xfs_mount *mp, | 
| 147 | xfs_lsn_t lsn, | ||
| 148 | uint flags); | 138 | uint flags); | 
| 139 | int _xfs_log_force_lsn(struct xfs_mount *mp, | ||
| 140 | xfs_lsn_t lsn, | ||
| 141 | uint flags, | ||
| 142 | int *log_forced); | ||
| 143 | void xfs_log_force_lsn(struct xfs_mount *mp, | ||
| 144 | xfs_lsn_t lsn, | ||
| 145 | uint flags); | ||
| 149 | int xfs_log_mount(struct xfs_mount *mp, | 146 | int xfs_log_mount(struct xfs_mount *mp, | 
| 150 | struct xfs_buftarg *log_target, | 147 | struct xfs_buftarg *log_target, | 
| 151 | xfs_daddr_t start_block, | 148 | xfs_daddr_t start_block, | 
| @@ -154,21 +151,21 @@ int xfs_log_mount_finish(struct xfs_mount *mp); | |||
| 154 | void xfs_log_move_tail(struct xfs_mount *mp, | 151 | void xfs_log_move_tail(struct xfs_mount *mp, | 
| 155 | xfs_lsn_t tail_lsn); | 152 | xfs_lsn_t tail_lsn); | 
| 156 | int xfs_log_notify(struct xfs_mount *mp, | 153 | int xfs_log_notify(struct xfs_mount *mp, | 
| 157 | void *iclog, | 154 | struct xlog_in_core *iclog, | 
| 158 | xfs_log_callback_t *callback_entry); | 155 | xfs_log_callback_t *callback_entry); | 
| 159 | int xfs_log_release_iclog(struct xfs_mount *mp, | 156 | int xfs_log_release_iclog(struct xfs_mount *mp, | 
| 160 | void *iclog_hndl); | 157 | struct xlog_in_core *iclog); | 
| 161 | int xfs_log_reserve(struct xfs_mount *mp, | 158 | int xfs_log_reserve(struct xfs_mount *mp, | 
| 162 | int length, | 159 | int length, | 
| 163 | int count, | 160 | int count, | 
| 164 | xfs_log_ticket_t *ticket, | 161 | struct xlog_ticket **ticket, | 
| 165 | __uint8_t clientid, | 162 | __uint8_t clientid, | 
| 166 | uint flags, | 163 | uint flags, | 
| 167 | uint t_type); | 164 | uint t_type); | 
| 168 | int xfs_log_write(struct xfs_mount *mp, | 165 | int xfs_log_write(struct xfs_mount *mp, | 
| 169 | xfs_log_iovec_t region[], | 166 | xfs_log_iovec_t region[], | 
| 170 | int nentries, | 167 | int nentries, | 
| 171 | xfs_log_ticket_t ticket, | 168 | struct xlog_ticket *ticket, | 
| 172 | xfs_lsn_t *start_lsn); | 169 | xfs_lsn_t *start_lsn); | 
| 173 | int xfs_log_unmount_write(struct xfs_mount *mp); | 170 | int xfs_log_unmount_write(struct xfs_mount *mp); | 
| 174 | void xfs_log_unmount(struct xfs_mount *mp); | 171 | void xfs_log_unmount(struct xfs_mount *mp); | 
diff --git a/fs/xfs/xfs_log_priv.h b/fs/xfs/xfs_log_priv.h index d55662db7077..fd02a18facd5 100644 --- a/fs/xfs/xfs_log_priv.h +++ b/fs/xfs/xfs_log_priv.h  | |||
| @@ -443,14 +443,9 @@ typedef struct log { | |||
| 443 | 443 | ||
| 444 | /* common routines */ | 444 | /* common routines */ | 
| 445 | extern xfs_lsn_t xlog_assign_tail_lsn(struct xfs_mount *mp); | 445 | extern xfs_lsn_t xlog_assign_tail_lsn(struct xfs_mount *mp); | 
| 446 | extern int xlog_find_tail(xlog_t *log, | ||
| 447 | xfs_daddr_t *head_blk, | ||
| 448 | xfs_daddr_t *tail_blk); | ||
| 449 | extern int xlog_recover(xlog_t *log); | 446 | extern int xlog_recover(xlog_t *log); | 
| 450 | extern int xlog_recover_finish(xlog_t *log); | 447 | extern int xlog_recover_finish(xlog_t *log); | 
| 451 | extern void xlog_pack_data(xlog_t *log, xlog_in_core_t *iclog, int); | 448 | extern void xlog_pack_data(xlog_t *log, xlog_in_core_t *iclog, int); | 
| 452 | extern struct xfs_buf *xlog_get_bp(xlog_t *, int); | ||
| 453 | extern void xlog_put_bp(struct xfs_buf *); | ||
| 454 | 449 | ||
| 455 | extern kmem_zone_t *xfs_log_ticket_zone; | 450 | extern kmem_zone_t *xfs_log_ticket_zone; | 
| 456 | 451 | ||
diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c index 69ac2e5ef20c..22e6efdc17ea 100644 --- a/fs/xfs/xfs_log_recover.c +++ b/fs/xfs/xfs_log_recover.c  | |||
| @@ -50,8 +50,6 @@ | |||
| 50 | 50 | ||
| 51 | STATIC int xlog_find_zeroed(xlog_t *, xfs_daddr_t *); | 51 | STATIC int xlog_find_zeroed(xlog_t *, xfs_daddr_t *); | 
| 52 | STATIC int xlog_clear_stale_blocks(xlog_t *, xfs_lsn_t); | 52 | STATIC int xlog_clear_stale_blocks(xlog_t *, xfs_lsn_t); | 
| 53 | STATIC void xlog_recover_insert_item_backq(xlog_recover_item_t **q, | ||
| 54 | xlog_recover_item_t *item); | ||
| 55 | #if defined(DEBUG) | 53 | #if defined(DEBUG) | 
| 56 | STATIC void xlog_recover_check_summary(xlog_t *); | 54 | STATIC void xlog_recover_check_summary(xlog_t *); | 
| 57 | #else | 55 | #else | 
| @@ -68,7 +66,7 @@ STATIC void xlog_recover_check_summary(xlog_t *); | |||
| 68 | ((bbs + (log)->l_sectbb_mask + 1) & ~(log)->l_sectbb_mask) : (bbs) ) | 66 | ((bbs + (log)->l_sectbb_mask + 1) & ~(log)->l_sectbb_mask) : (bbs) ) | 
| 69 | #define XLOG_SECTOR_ROUNDDOWN_BLKNO(log, bno) ((bno) & ~(log)->l_sectbb_mask) | 67 | #define XLOG_SECTOR_ROUNDDOWN_BLKNO(log, bno) ((bno) & ~(log)->l_sectbb_mask) | 
| 70 | 68 | ||
| 71 | xfs_buf_t * | 69 | STATIC xfs_buf_t * | 
| 72 | xlog_get_bp( | 70 | xlog_get_bp( | 
| 73 | xlog_t *log, | 71 | xlog_t *log, | 
| 74 | int nbblks) | 72 | int nbblks) | 
| @@ -88,7 +86,7 @@ xlog_get_bp( | |||
| 88 | return xfs_buf_get_noaddr(BBTOB(nbblks), log->l_mp->m_logdev_targp); | 86 | return xfs_buf_get_noaddr(BBTOB(nbblks), log->l_mp->m_logdev_targp); | 
| 89 | } | 87 | } | 
| 90 | 88 | ||
| 91 | void | 89 | STATIC void | 
| 92 | xlog_put_bp( | 90 | xlog_put_bp( | 
| 93 | xfs_buf_t *bp) | 91 | xfs_buf_t *bp) | 
| 94 | { | 92 | { | 
| @@ -805,7 +803,7 @@ xlog_find_head( | |||
| 805 | * We could speed up search by using current head_blk buffer, but it is not | 803 | * We could speed up search by using current head_blk buffer, but it is not | 
| 806 | * available. | 804 | * available. | 
| 807 | */ | 805 | */ | 
| 808 | int | 806 | STATIC int | 
| 809 | xlog_find_tail( | 807 | xlog_find_tail( | 
| 810 | xlog_t *log, | 808 | xlog_t *log, | 
| 811 | xfs_daddr_t *head_blk, | 809 | xfs_daddr_t *head_blk, | 
| @@ -1367,36 +1365,45 @@ xlog_clear_stale_blocks( | |||
| 1367 | 1365 | ||
| 1368 | STATIC xlog_recover_t * | 1366 | STATIC xlog_recover_t * | 
| 1369 | xlog_recover_find_tid( | 1367 | xlog_recover_find_tid( | 
| 1370 | xlog_recover_t *q, | 1368 | struct hlist_head *head, | 
| 1371 | xlog_tid_t tid) | 1369 | xlog_tid_t tid) | 
| 1372 | { | 1370 | { | 
| 1373 | xlog_recover_t *p = q; | 1371 | xlog_recover_t *trans; | 
| 1372 | struct hlist_node *n; | ||
| 1374 | 1373 | ||
| 1375 | while (p != NULL) { | 1374 | hlist_for_each_entry(trans, n, head, r_list) { | 
| 1376 | if (p->r_log_tid == tid) | 1375 | if (trans->r_log_tid == tid) | 
| 1377 | break; | 1376 | return trans; | 
| 1378 | p = p->r_next; | ||
| 1379 | } | 1377 | } | 
| 1380 | return p; | 1378 | return NULL; | 
| 1381 | } | 1379 | } | 
| 1382 | 1380 | ||
| 1383 | STATIC void | 1381 | STATIC void | 
| 1384 | xlog_recover_put_hashq( | 1382 | xlog_recover_new_tid( | 
| 1385 | xlog_recover_t **q, | 1383 | struct hlist_head *head, | 
| 1386 | xlog_recover_t *trans) | 1384 | xlog_tid_t tid, | 
| 1385 | xfs_lsn_t lsn) | ||
| 1387 | { | 1386 | { | 
| 1388 | trans->r_next = *q; | 1387 | xlog_recover_t *trans; | 
| 1389 | *q = trans; | 1388 | |
| 1389 | trans = kmem_zalloc(sizeof(xlog_recover_t), KM_SLEEP); | ||
| 1390 | trans->r_log_tid = tid; | ||
| 1391 | trans->r_lsn = lsn; | ||
| 1392 | INIT_LIST_HEAD(&trans->r_itemq); | ||
| 1393 | |||
| 1394 | INIT_HLIST_NODE(&trans->r_list); | ||
| 1395 | hlist_add_head(&trans->r_list, head); | ||
| 1390 | } | 1396 | } | 
| 1391 | 1397 | ||
| 1392 | STATIC void | 1398 | STATIC void | 
| 1393 | xlog_recover_add_item( | 1399 | xlog_recover_add_item( | 
| 1394 | xlog_recover_item_t **itemq) | 1400 | struct list_head *head) | 
| 1395 | { | 1401 | { | 
| 1396 | xlog_recover_item_t *item; | 1402 | xlog_recover_item_t *item; | 
| 1397 | 1403 | ||
| 1398 | item = kmem_zalloc(sizeof(xlog_recover_item_t), KM_SLEEP); | 1404 | item = kmem_zalloc(sizeof(xlog_recover_item_t), KM_SLEEP); | 
| 1399 | xlog_recover_insert_item_backq(itemq, item); | 1405 | INIT_LIST_HEAD(&item->ri_list); | 
| 1406 | list_add_tail(&item->ri_list, head); | ||
| 1400 | } | 1407 | } | 
| 1401 | 1408 | ||
| 1402 | STATIC int | 1409 | STATIC int | 
| @@ -1409,8 +1416,7 @@ xlog_recover_add_to_cont_trans( | |||
| 1409 | xfs_caddr_t ptr, old_ptr; | 1416 | xfs_caddr_t ptr, old_ptr; | 
| 1410 | int old_len; | 1417 | int old_len; | 
| 1411 | 1418 | ||
| 1412 | item = trans->r_itemq; | 1419 | if (list_empty(&trans->r_itemq)) { | 
| 1413 | if (item == NULL) { | ||
| 1414 | /* finish copying rest of trans header */ | 1420 | /* finish copying rest of trans header */ | 
| 1415 | xlog_recover_add_item(&trans->r_itemq); | 1421 | xlog_recover_add_item(&trans->r_itemq); | 
| 1416 | ptr = (xfs_caddr_t) &trans->r_theader + | 1422 | ptr = (xfs_caddr_t) &trans->r_theader + | 
| @@ -1418,7 +1424,8 @@ xlog_recover_add_to_cont_trans( | |||
| 1418 | memcpy(ptr, dp, len); /* d, s, l */ | 1424 | memcpy(ptr, dp, len); /* d, s, l */ | 
| 1419 | return 0; | 1425 | return 0; | 
| 1420 | } | 1426 | } | 
| 1421 | item = item->ri_prev; | 1427 | /* take the tail entry */ | 
| 1428 | item = list_entry(trans->r_itemq.prev, xlog_recover_item_t, ri_list); | ||
| 1422 | 1429 | ||
| 1423 | old_ptr = item->ri_buf[item->ri_cnt-1].i_addr; | 1430 | old_ptr = item->ri_buf[item->ri_cnt-1].i_addr; | 
| 1424 | old_len = item->ri_buf[item->ri_cnt-1].i_len; | 1431 | old_len = item->ri_buf[item->ri_cnt-1].i_len; | 
| @@ -1455,8 +1462,7 @@ xlog_recover_add_to_trans( | |||
| 1455 | 1462 | ||
| 1456 | if (!len) | 1463 | if (!len) | 
| 1457 | return 0; | 1464 | return 0; | 
| 1458 | item = trans->r_itemq; | 1465 | if (list_empty(&trans->r_itemq)) { | 
| 1459 | if (item == NULL) { | ||
| 1460 | /* we need to catch log corruptions here */ | 1466 | /* we need to catch log corruptions here */ | 
| 1461 | if (*(uint *)dp != XFS_TRANS_HEADER_MAGIC) { | 1467 | if (*(uint *)dp != XFS_TRANS_HEADER_MAGIC) { | 
| 1462 | xlog_warn("XFS: xlog_recover_add_to_trans: " | 1468 | xlog_warn("XFS: xlog_recover_add_to_trans: " | 
| @@ -1474,12 +1480,15 @@ xlog_recover_add_to_trans( | |||
| 1474 | memcpy(ptr, dp, len); | 1480 | memcpy(ptr, dp, len); | 
| 1475 | in_f = (xfs_inode_log_format_t *)ptr; | 1481 | in_f = (xfs_inode_log_format_t *)ptr; | 
| 1476 | 1482 | ||
| 1477 | if (item->ri_prev->ri_total != 0 && | 1483 | /* take the tail entry */ | 
| 1478 | item->ri_prev->ri_total == item->ri_prev->ri_cnt) { | 1484 | item = list_entry(trans->r_itemq.prev, xlog_recover_item_t, ri_list); | 
| 1485 | if (item->ri_total != 0 && | ||
| 1486 | item->ri_total == item->ri_cnt) { | ||
| 1487 | /* tail item is in use, get a new one */ | ||
| 1479 | xlog_recover_add_item(&trans->r_itemq); | 1488 | xlog_recover_add_item(&trans->r_itemq); | 
| 1489 | item = list_entry(trans->r_itemq.prev, | ||
| 1490 | xlog_recover_item_t, ri_list); | ||
| 1480 | } | 1491 | } | 
| 1481 | item = trans->r_itemq; | ||
| 1482 | item = item->ri_prev; | ||
| 1483 | 1492 | ||
| 1484 | if (item->ri_total == 0) { /* first region to be added */ | 1493 | if (item->ri_total == 0) { /* first region to be added */ | 
| 1485 | if (in_f->ilf_size == 0 || | 1494 | if (in_f->ilf_size == 0 || | 
| @@ -1504,96 +1513,29 @@ xlog_recover_add_to_trans( | |||
| 1504 | return 0; | 1513 | return 0; | 
| 1505 | } | 1514 | } | 
| 1506 | 1515 | ||
| 1507 | STATIC void | 1516 | /* | 
| 1508 | xlog_recover_new_tid( | 1517 | * Sort the log items in the transaction. Cancelled buffers need | 
| 1509 | xlog_recover_t **q, | 1518 | * to be put first so they are processed before any items that might | 
| 1510 | xlog_tid_t tid, | 1519 | * modify the buffers. If they are cancelled, then the modifications | 
| 1511 | xfs_lsn_t lsn) | 1520 | * don't need to be replayed. | 
| 1512 | { | 1521 | */ | 
| 1513 | xlog_recover_t *trans; | ||
| 1514 | |||
| 1515 | trans = kmem_zalloc(sizeof(xlog_recover_t), KM_SLEEP); | ||
| 1516 | trans->r_log_tid = tid; | ||
| 1517 | trans->r_lsn = lsn; | ||
| 1518 | xlog_recover_put_hashq(q, trans); | ||
| 1519 | } | ||
| 1520 | |||
| 1521 | STATIC int | ||
| 1522 | xlog_recover_unlink_tid( | ||
| 1523 | xlog_recover_t **q, | ||
| 1524 | xlog_recover_t *trans) | ||
| 1525 | { | ||
| 1526 | xlog_recover_t *tp; | ||
| 1527 | int found = 0; | ||
| 1528 | |||
| 1529 | ASSERT(trans != NULL); | ||
| 1530 | if (trans == *q) { | ||
| 1531 | *q = (*q)->r_next; | ||
| 1532 | } else { | ||
| 1533 | tp = *q; | ||
| 1534 | while (tp) { | ||
| 1535 | if (tp->r_next == trans) { | ||
| 1536 | found = 1; | ||
| 1537 | break; | ||
| 1538 | } | ||
| 1539 | tp = tp->r_next; | ||
| 1540 | } | ||
| 1541 | if (!found) { | ||
| 1542 | xlog_warn( | ||
| 1543 | "XFS: xlog_recover_unlink_tid: trans not found"); | ||
| 1544 | ASSERT(0); | ||
| 1545 | return XFS_ERROR(EIO); | ||
| 1546 | } | ||
| 1547 | tp->r_next = tp->r_next->r_next; | ||
| 1548 | } | ||
| 1549 | return 0; | ||
| 1550 | } | ||
| 1551 | |||
| 1552 | STATIC void | ||
| 1553 | xlog_recover_insert_item_backq( | ||
| 1554 | xlog_recover_item_t **q, | ||
| 1555 | xlog_recover_item_t *item) | ||
| 1556 | { | ||
| 1557 | if (*q == NULL) { | ||
| 1558 | item->ri_prev = item->ri_next = item; | ||
| 1559 | *q = item; | ||
| 1560 | } else { | ||
| 1561 | item->ri_next = *q; | ||
| 1562 | item->ri_prev = (*q)->ri_prev; | ||
| 1563 | (*q)->ri_prev = item; | ||
| 1564 | item->ri_prev->ri_next = item; | ||
| 1565 | } | ||
| 1566 | } | ||
| 1567 | |||
| 1568 | STATIC void | ||
| 1569 | xlog_recover_insert_item_frontq( | ||
| 1570 | xlog_recover_item_t **q, | ||
| 1571 | xlog_recover_item_t *item) | ||
| 1572 | { | ||
| 1573 | xlog_recover_insert_item_backq(q, item); | ||
| 1574 | *q = item; | ||
| 1575 | } | ||
| 1576 | |||
| 1577 | STATIC int | 1522 | STATIC int | 
| 1578 | xlog_recover_reorder_trans( | 1523 | xlog_recover_reorder_trans( | 
| 1579 | xlog_recover_t *trans) | 1524 | xlog_recover_t *trans) | 
| 1580 | { | 1525 | { | 
| 1581 | xlog_recover_item_t *first_item, *itemq, *itemq_next; | 1526 | xlog_recover_item_t *item, *n; | 
| 1582 | xfs_buf_log_format_t *buf_f; | 1527 | LIST_HEAD(sort_list); | 
| 1583 | ushort flags = 0; | ||
| 1584 | 1528 | ||
| 1585 | first_item = itemq = trans->r_itemq; | 1529 | list_splice_init(&trans->r_itemq, &sort_list); | 
| 1586 | trans->r_itemq = NULL; | 1530 | list_for_each_entry_safe(item, n, &sort_list, ri_list) { | 
| 1587 | do { | 1531 | xfs_buf_log_format_t *buf_f; | 
| 1588 | itemq_next = itemq->ri_next; | ||
| 1589 | buf_f = (xfs_buf_log_format_t *)itemq->ri_buf[0].i_addr; | ||
| 1590 | 1532 | ||
| 1591 | switch (ITEM_TYPE(itemq)) { | 1533 | buf_f = (xfs_buf_log_format_t *)item->ri_buf[0].i_addr; | 
| 1534 | |||
| 1535 | switch (ITEM_TYPE(item)) { | ||
| 1592 | case XFS_LI_BUF: | 1536 | case XFS_LI_BUF: | 
| 1593 | flags = buf_f->blf_flags; | 1537 | if (!(buf_f->blf_flags & XFS_BLI_CANCEL)) { | 
| 1594 | if (!(flags & XFS_BLI_CANCEL)) { | 1538 | list_move(&item->ri_list, &trans->r_itemq); | 
| 1595 | xlog_recover_insert_item_frontq(&trans->r_itemq, | ||
| 1596 | itemq); | ||
| 1597 | break; | 1539 | break; | 
| 1598 | } | 1540 | } | 
| 1599 | case XFS_LI_INODE: | 1541 | case XFS_LI_INODE: | 
| @@ -1601,7 +1543,7 @@ xlog_recover_reorder_trans( | |||
| 1601 | case XFS_LI_QUOTAOFF: | 1543 | case XFS_LI_QUOTAOFF: | 
| 1602 | case XFS_LI_EFD: | 1544 | case XFS_LI_EFD: | 
| 1603 | case XFS_LI_EFI: | 1545 | case XFS_LI_EFI: | 
| 1604 | xlog_recover_insert_item_backq(&trans->r_itemq, itemq); | 1546 | list_move_tail(&item->ri_list, &trans->r_itemq); | 
| 1605 | break; | 1547 | break; | 
| 1606 | default: | 1548 | default: | 
| 1607 | xlog_warn( | 1549 | xlog_warn( | 
| @@ -1609,8 +1551,8 @@ xlog_recover_reorder_trans( | |||
| 1609 | ASSERT(0); | 1551 | ASSERT(0); | 
| 1610 | return XFS_ERROR(EIO); | 1552 | return XFS_ERROR(EIO); | 
| 1611 | } | 1553 | } | 
| 1612 | itemq = itemq_next; | 1554 | } | 
| 1613 | } while (first_item != itemq); | 1555 | ASSERT(list_empty(&sort_list)); | 
| 1614 | return 0; | 1556 | return 0; | 
| 1615 | } | 1557 | } | 
| 1616 | 1558 | ||
| @@ -2242,9 +2184,9 @@ xlog_recover_do_buffer_trans( | |||
| 2242 | } | 2184 | } | 
| 2243 | 2185 | ||
| 2244 | mp = log->l_mp; | 2186 | mp = log->l_mp; | 
| 2245 | buf_flags = XFS_BUF_LOCK; | 2187 | buf_flags = XBF_LOCK; | 
| 2246 | if (!(flags & XFS_BLI_INODE_BUF)) | 2188 | if (!(flags & XFS_BLI_INODE_BUF)) | 
| 2247 | buf_flags |= XFS_BUF_MAPPED; | 2189 | buf_flags |= XBF_MAPPED; | 
| 2248 | 2190 | ||
| 2249 | bp = xfs_buf_read(mp->m_ddev_targp, blkno, len, buf_flags); | 2191 | bp = xfs_buf_read(mp->m_ddev_targp, blkno, len, buf_flags); | 
| 2250 | if (XFS_BUF_ISERROR(bp)) { | 2192 | if (XFS_BUF_ISERROR(bp)) { | 
| @@ -2346,7 +2288,7 @@ xlog_recover_do_inode_trans( | |||
| 2346 | } | 2288 | } | 
| 2347 | 2289 | ||
| 2348 | bp = xfs_buf_read(mp->m_ddev_targp, in_f->ilf_blkno, in_f->ilf_len, | 2290 | bp = xfs_buf_read(mp->m_ddev_targp, in_f->ilf_blkno, in_f->ilf_len, | 
| 2349 | XFS_BUF_LOCK); | 2291 | XBF_LOCK); | 
| 2350 | if (XFS_BUF_ISERROR(bp)) { | 2292 | if (XFS_BUF_ISERROR(bp)) { | 
| 2351 | xfs_ioerror_alert("xlog_recover_do..(read#2)", mp, | 2293 | xfs_ioerror_alert("xlog_recover_do..(read#2)", mp, | 
| 2352 | bp, in_f->ilf_blkno); | 2294 | bp, in_f->ilf_blkno); | 
| @@ -2814,14 +2756,13 @@ xlog_recover_do_trans( | |||
| 2814 | int pass) | 2756 | int pass) | 
| 2815 | { | 2757 | { | 
| 2816 | int error = 0; | 2758 | int error = 0; | 
| 2817 | xlog_recover_item_t *item, *first_item; | 2759 | xlog_recover_item_t *item; | 
| 2818 | 2760 | ||
| 2819 | error = xlog_recover_reorder_trans(trans); | 2761 | error = xlog_recover_reorder_trans(trans); | 
| 2820 | if (error) | 2762 | if (error) | 
| 2821 | return error; | 2763 | return error; | 
| 2822 | 2764 | ||
| 2823 | first_item = item = trans->r_itemq; | 2765 | list_for_each_entry(item, &trans->r_itemq, ri_list) { | 
| 2824 | do { | ||
| 2825 | switch (ITEM_TYPE(item)) { | 2766 | switch (ITEM_TYPE(item)) { | 
| 2826 | case XFS_LI_BUF: | 2767 | case XFS_LI_BUF: | 
| 2827 | error = xlog_recover_do_buffer_trans(log, item, pass); | 2768 | error = xlog_recover_do_buffer_trans(log, item, pass); | 
| @@ -2854,8 +2795,7 @@ xlog_recover_do_trans( | |||
| 2854 | 2795 | ||
| 2855 | if (error) | 2796 | if (error) | 
| 2856 | return error; | 2797 | return error; | 
| 2857 | item = item->ri_next; | 2798 | } | 
| 2858 | } while (first_item != item); | ||
| 2859 | 2799 | ||
| 2860 | return 0; | 2800 | return 0; | 
| 2861 | } | 2801 | } | 
| @@ -2869,21 +2809,18 @@ STATIC void | |||
| 2869 | xlog_recover_free_trans( | 2809 | xlog_recover_free_trans( | 
| 2870 | xlog_recover_t *trans) | 2810 | xlog_recover_t *trans) | 
| 2871 | { | 2811 | { | 
| 2872 | xlog_recover_item_t *first_item, *item, *free_item; | 2812 | xlog_recover_item_t *item, *n; | 
| 2873 | int i; | 2813 | int i; | 
| 2874 | 2814 | ||
| 2875 | item = first_item = trans->r_itemq; | 2815 | list_for_each_entry_safe(item, n, &trans->r_itemq, ri_list) { | 
| 2876 | do { | 2816 | /* Free the regions in the item. */ | 
| 2877 | free_item = item; | 2817 | list_del(&item->ri_list); | 
| 2878 | item = item->ri_next; | 2818 | for (i = 0; i < item->ri_cnt; i++) | 
| 2879 | /* Free the regions in the item. */ | 2819 | kmem_free(item->ri_buf[i].i_addr); | 
| 2880 | for (i = 0; i < free_item->ri_cnt; i++) { | ||
| 2881 | kmem_free(free_item->ri_buf[i].i_addr); | ||
| 2882 | } | ||
| 2883 | /* Free the item itself */ | 2820 | /* Free the item itself */ | 
| 2884 | kmem_free(free_item->ri_buf); | 2821 | kmem_free(item->ri_buf); | 
| 2885 | kmem_free(free_item); | 2822 | kmem_free(item); | 
| 2886 | } while (first_item != item); | 2823 | } | 
| 2887 | /* Free the transaction recover structure */ | 2824 | /* Free the transaction recover structure */ | 
| 2888 | kmem_free(trans); | 2825 | kmem_free(trans); | 
| 2889 | } | 2826 | } | 
| @@ -2891,14 +2828,12 @@ xlog_recover_free_trans( | |||
| 2891 | STATIC int | 2828 | STATIC int | 
| 2892 | xlog_recover_commit_trans( | 2829 | xlog_recover_commit_trans( | 
| 2893 | xlog_t *log, | 2830 | xlog_t *log, | 
| 2894 | xlog_recover_t **q, | ||
| 2895 | xlog_recover_t *trans, | 2831 | xlog_recover_t *trans, | 
| 2896 | int pass) | 2832 | int pass) | 
| 2897 | { | 2833 | { | 
| 2898 | int error; | 2834 | int error; | 
| 2899 | 2835 | ||
| 2900 | if ((error = xlog_recover_unlink_tid(q, trans))) | 2836 | hlist_del(&trans->r_list); | 
| 2901 | return error; | ||
| 2902 | if ((error = xlog_recover_do_trans(log, trans, pass))) | 2837 | if ((error = xlog_recover_do_trans(log, trans, pass))) | 
| 2903 | return error; | 2838 | return error; | 
| 2904 | xlog_recover_free_trans(trans); /* no error */ | 2839 | xlog_recover_free_trans(trans); /* no error */ | 
| @@ -2926,7 +2861,7 @@ xlog_recover_unmount_trans( | |||
| 2926 | STATIC int | 2861 | STATIC int | 
| 2927 | xlog_recover_process_data( | 2862 | xlog_recover_process_data( | 
| 2928 | xlog_t *log, | 2863 | xlog_t *log, | 
| 2929 | xlog_recover_t *rhash[], | 2864 | struct hlist_head rhash[], | 
| 2930 | xlog_rec_header_t *rhead, | 2865 | xlog_rec_header_t *rhead, | 
| 2931 | xfs_caddr_t dp, | 2866 | xfs_caddr_t dp, | 
| 2932 | int pass) | 2867 | int pass) | 
| @@ -2960,7 +2895,7 @@ xlog_recover_process_data( | |||
| 2960 | } | 2895 | } | 
| 2961 | tid = be32_to_cpu(ohead->oh_tid); | 2896 | tid = be32_to_cpu(ohead->oh_tid); | 
| 2962 | hash = XLOG_RHASH(tid); | 2897 | hash = XLOG_RHASH(tid); | 
| 2963 | trans = xlog_recover_find_tid(rhash[hash], tid); | 2898 | trans = xlog_recover_find_tid(&rhash[hash], tid); | 
| 2964 | if (trans == NULL) { /* not found; add new tid */ | 2899 | if (trans == NULL) { /* not found; add new tid */ | 
| 2965 | if (ohead->oh_flags & XLOG_START_TRANS) | 2900 | if (ohead->oh_flags & XLOG_START_TRANS) | 
| 2966 | xlog_recover_new_tid(&rhash[hash], tid, | 2901 | xlog_recover_new_tid(&rhash[hash], tid, | 
| @@ -2978,7 +2913,7 @@ xlog_recover_process_data( | |||
| 2978 | switch (flags) { | 2913 | switch (flags) { | 
| 2979 | case XLOG_COMMIT_TRANS: | 2914 | case XLOG_COMMIT_TRANS: | 
| 2980 | error = xlog_recover_commit_trans(log, | 2915 | error = xlog_recover_commit_trans(log, | 
| 2981 | &rhash[hash], trans, pass); | 2916 | trans, pass); | 
| 2982 | break; | 2917 | break; | 
| 2983 | case XLOG_UNMOUNT_TRANS: | 2918 | case XLOG_UNMOUNT_TRANS: | 
| 2984 | error = xlog_recover_unmount_trans(trans); | 2919 | error = xlog_recover_unmount_trans(trans); | 
| @@ -3211,7 +3146,7 @@ xlog_recover_process_one_iunlink( | |||
| 3211 | /* | 3146 | /* | 
| 3212 | * Get the on disk inode to find the next inode in the bucket. | 3147 | * Get the on disk inode to find the next inode in the bucket. | 
| 3213 | */ | 3148 | */ | 
| 3214 | error = xfs_itobp(mp, NULL, ip, &dip, &ibp, XFS_BUF_LOCK); | 3149 | error = xfs_itobp(mp, NULL, ip, &dip, &ibp, XBF_LOCK); | 
| 3215 | if (error) | 3150 | if (error) | 
| 3216 | goto fail_iput; | 3151 | goto fail_iput; | 
| 3217 | 3152 | ||
| @@ -3517,7 +3452,7 @@ xlog_do_recovery_pass( | |||
| 3517 | int error = 0, h_size; | 3452 | int error = 0, h_size; | 
| 3518 | int bblks, split_bblks; | 3453 | int bblks, split_bblks; | 
| 3519 | int hblks, split_hblks, wrapped_hblks; | 3454 | int hblks, split_hblks, wrapped_hblks; | 
| 3520 | xlog_recover_t *rhash[XLOG_RHASH_SIZE]; | 3455 | struct hlist_head rhash[XLOG_RHASH_SIZE]; | 
| 3521 | 3456 | ||
| 3522 | ASSERT(head_blk != tail_blk); | 3457 | ASSERT(head_blk != tail_blk); | 
| 3523 | 3458 | ||
| @@ -3978,8 +3913,7 @@ xlog_recover_finish( | |||
| 3978 | * case the unlink transactions would have problems | 3913 | * case the unlink transactions would have problems | 
| 3979 | * pushing the EFIs out of the way. | 3914 | * pushing the EFIs out of the way. | 
| 3980 | */ | 3915 | */ | 
| 3981 | xfs_log_force(log->l_mp, (xfs_lsn_t)0, | 3916 | xfs_log_force(log->l_mp, XFS_LOG_SYNC); | 
| 3982 | (XFS_LOG_FORCE | XFS_LOG_SYNC)); | ||
| 3983 | 3917 | ||
| 3984 | xlog_recover_process_iunlinks(log); | 3918 | xlog_recover_process_iunlinks(log); | 
| 3985 | 3919 | ||
diff --git a/fs/xfs/xfs_log_recover.h b/fs/xfs/xfs_log_recover.h index b22545555301..75d749207258 100644 --- a/fs/xfs/xfs_log_recover.h +++ b/fs/xfs/xfs_log_recover.h  | |||
| @@ -35,22 +35,21 @@ | |||
| 35 | * item headers are in ri_buf[0]. Additional buffers follow. | 35 | * item headers are in ri_buf[0]. Additional buffers follow. | 
| 36 | */ | 36 | */ | 
| 37 | typedef struct xlog_recover_item { | 37 | typedef struct xlog_recover_item { | 
| 38 | struct xlog_recover_item *ri_next; | 38 | struct list_head ri_list; | 
| 39 | struct xlog_recover_item *ri_prev; | 39 | int ri_type; | 
| 40 | int ri_type; | 40 | int ri_cnt; /* count of regions found */ | 
| 41 | int ri_cnt; /* count of regions found */ | 41 | int ri_total; /* total regions */ | 
| 42 | int ri_total; /* total regions */ | 42 | xfs_log_iovec_t *ri_buf; /* ptr to regions buffer */ | 
| 43 | xfs_log_iovec_t *ri_buf; /* ptr to regions buffer */ | ||
| 44 | } xlog_recover_item_t; | 43 | } xlog_recover_item_t; | 
| 45 | 44 | ||
| 46 | struct xlog_tid; | 45 | struct xlog_tid; | 
| 47 | typedef struct xlog_recover { | 46 | typedef struct xlog_recover { | 
| 48 | struct xlog_recover *r_next; | 47 | struct hlist_node r_list; | 
| 49 | xlog_tid_t r_log_tid; /* log's transaction id */ | 48 | xlog_tid_t r_log_tid; /* log's transaction id */ | 
| 50 | xfs_trans_header_t r_theader; /* trans header for partial */ | 49 | xfs_trans_header_t r_theader; /* trans header for partial */ | 
| 51 | int r_state; /* not needed */ | 50 | int r_state; /* not needed */ | 
| 52 | xfs_lsn_t r_lsn; /* xact lsn */ | 51 | xfs_lsn_t r_lsn; /* xact lsn */ | 
| 53 | xlog_recover_item_t *r_itemq; /* q for items */ | 52 | struct list_head r_itemq; /* q for items */ | 
| 54 | } xlog_recover_t; | 53 | } xlog_recover_t; | 
| 55 | 54 | ||
| 56 | #define ITEM_TYPE(i) (*(ushort *)(i)->ri_buf[0].i_addr) | 55 | #define ITEM_TYPE(i) (*(ushort *)(i)->ri_buf[0].i_addr) | 
diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c index eb403b40e120..e79b56b4bca6 100644 --- a/fs/xfs/xfs_mount.c +++ b/fs/xfs/xfs_mount.c  | |||
| @@ -201,6 +201,38 @@ xfs_uuid_unmount( | |||
| 201 | 201 | ||
| 202 | 202 | ||
| 203 | /* | 203 | /* | 
| 204 | * Reference counting access wrappers to the perag structures. | ||
| 205 | */ | ||
| 206 | struct xfs_perag * | ||
| 207 | xfs_perag_get(struct xfs_mount *mp, xfs_agnumber_t agno) | ||
| 208 | { | ||
| 209 | struct xfs_perag *pag; | ||
| 210 | int ref = 0; | ||
| 211 | |||
| 212 | spin_lock(&mp->m_perag_lock); | ||
| 213 | pag = radix_tree_lookup(&mp->m_perag_tree, agno); | ||
| 214 | if (pag) { | ||
| 215 | ASSERT(atomic_read(&pag->pag_ref) >= 0); | ||
| 216 | /* catch leaks in the positive direction during testing */ | ||
| 217 | ASSERT(atomic_read(&pag->pag_ref) < 1000); | ||
| 218 | ref = atomic_inc_return(&pag->pag_ref); | ||
| 219 | } | ||
| 220 | spin_unlock(&mp->m_perag_lock); | ||
| 221 | trace_xfs_perag_get(mp, agno, ref, _RET_IP_); | ||
| 222 | return pag; | ||
| 223 | } | ||
| 224 | |||
| 225 | void | ||
| 226 | xfs_perag_put(struct xfs_perag *pag) | ||
| 227 | { | ||
| 228 | int ref; | ||
| 229 | |||
| 230 | ASSERT(atomic_read(&pag->pag_ref) > 0); | ||
| 231 | ref = atomic_dec_return(&pag->pag_ref); | ||
| 232 | trace_xfs_perag_put(pag->pag_mount, pag->pag_agno, ref, _RET_IP_); | ||
| 233 | } | ||
| 234 | |||
| 235 | /* | ||
| 204 | * Free up the resources associated with a mount structure. Assume that | 236 | * Free up the resources associated with a mount structure. Assume that | 
| 205 | * the structure was initially zeroed, so we can tell which fields got | 237 | * the structure was initially zeroed, so we can tell which fields got | 
| 206 | * initialized. | 238 | * initialized. | 
| @@ -209,13 +241,16 @@ STATIC void | |||
| 209 | xfs_free_perag( | 241 | xfs_free_perag( | 
| 210 | xfs_mount_t *mp) | 242 | xfs_mount_t *mp) | 
| 211 | { | 243 | { | 
| 212 | if (mp->m_perag) { | 244 | xfs_agnumber_t agno; | 
| 213 | int agno; | 245 | struct xfs_perag *pag; | 
| 214 | 246 | ||
| 215 | for (agno = 0; agno < mp->m_maxagi; agno++) | 247 | for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) { | 
| 216 | if (mp->m_perag[agno].pagb_list) | 248 | spin_lock(&mp->m_perag_lock); | 
| 217 | kmem_free(mp->m_perag[agno].pagb_list); | 249 | pag = radix_tree_delete(&mp->m_perag_tree, agno); | 
| 218 | kmem_free(mp->m_perag); | 250 | ASSERT(pag); | 
| 251 | ASSERT(atomic_read(&pag->pag_ref) == 0); | ||
| 252 | spin_unlock(&mp->m_perag_lock); | ||
| 253 | kmem_free(pag); | ||
| 219 | } | 254 | } | 
| 220 | } | 255 | } | 
| 221 | 256 | ||
| @@ -389,22 +424,57 @@ xfs_initialize_perag_icache( | |||
| 389 | } | 424 | } | 
| 390 | } | 425 | } | 
| 391 | 426 | ||
| 392 | xfs_agnumber_t | 427 | int | 
| 393 | xfs_initialize_perag( | 428 | xfs_initialize_perag( | 
| 394 | xfs_mount_t *mp, | 429 | xfs_mount_t *mp, | 
| 395 | xfs_agnumber_t agcount) | 430 | xfs_agnumber_t agcount, | 
| 431 | xfs_agnumber_t *maxagi) | ||
| 396 | { | 432 | { | 
| 397 | xfs_agnumber_t index, max_metadata; | 433 | xfs_agnumber_t index, max_metadata; | 
| 434 | xfs_agnumber_t first_initialised = 0; | ||
| 398 | xfs_perag_t *pag; | 435 | xfs_perag_t *pag; | 
| 399 | xfs_agino_t agino; | 436 | xfs_agino_t agino; | 
| 400 | xfs_ino_t ino; | 437 | xfs_ino_t ino; | 
| 401 | xfs_sb_t *sbp = &mp->m_sb; | 438 | xfs_sb_t *sbp = &mp->m_sb; | 
| 402 | xfs_ino_t max_inum = XFS_MAXINUMBER_32; | 439 | xfs_ino_t max_inum = XFS_MAXINUMBER_32; | 
| 440 | int error = -ENOMEM; | ||
| 403 | 441 | ||
| 404 | /* Check to see if the filesystem can overflow 32 bit inodes */ | 442 | /* Check to see if the filesystem can overflow 32 bit inodes */ | 
| 405 | agino = XFS_OFFBNO_TO_AGINO(mp, sbp->sb_agblocks - 1, 0); | 443 | agino = XFS_OFFBNO_TO_AGINO(mp, sbp->sb_agblocks - 1, 0); | 
| 406 | ino = XFS_AGINO_TO_INO(mp, agcount - 1, agino); | 444 | ino = XFS_AGINO_TO_INO(mp, agcount - 1, agino); | 
| 407 | 445 | ||
| 446 | /* | ||
| 447 | * Walk the current per-ag tree so we don't try to initialise AGs | ||
| 448 | * that already exist (growfs case). Allocate and insert all the | ||
| 449 | * AGs we don't find ready for initialisation. | ||
| 450 | */ | ||
| 451 | for (index = 0; index < agcount; index++) { | ||
| 452 | pag = xfs_perag_get(mp, index); | ||
| 453 | if (pag) { | ||
| 454 | xfs_perag_put(pag); | ||
| 455 | continue; | ||
| 456 | } | ||
| 457 | if (!first_initialised) | ||
| 458 | first_initialised = index; | ||
| 459 | pag = kmem_zalloc(sizeof(*pag), KM_MAYFAIL); | ||
| 460 | if (!pag) | ||
| 461 | goto out_unwind; | ||
| 462 | if (radix_tree_preload(GFP_NOFS)) | ||
| 463 | goto out_unwind; | ||
| 464 | spin_lock(&mp->m_perag_lock); | ||
| 465 | if (radix_tree_insert(&mp->m_perag_tree, index, pag)) { | ||
| 466 | BUG(); | ||
| 467 | spin_unlock(&mp->m_perag_lock); | ||
| 468 | radix_tree_preload_end(); | ||
| 469 | error = -EEXIST; | ||
| 470 | goto out_unwind; | ||
| 471 | } | ||
| 472 | pag->pag_agno = index; | ||
| 473 | pag->pag_mount = mp; | ||
| 474 | spin_unlock(&mp->m_perag_lock); | ||
| 475 | radix_tree_preload_end(); | ||
| 476 | } | ||
| 477 | |||
| 408 | /* Clear the mount flag if no inode can overflow 32 bits | 478 | /* Clear the mount flag if no inode can overflow 32 bits | 
| 409 | * on this filesystem, or if specifically requested.. | 479 | * on this filesystem, or if specifically requested.. | 
| 410 | */ | 480 | */ | 
| @@ -438,21 +508,33 @@ xfs_initialize_perag( | |||
| 438 | } | 508 | } | 
| 439 | 509 | ||
| 440 | /* This ag is preferred for inodes */ | 510 | /* This ag is preferred for inodes */ | 
| 441 | pag = &mp->m_perag[index]; | 511 | pag = xfs_perag_get(mp, index); | 
| 442 | pag->pagi_inodeok = 1; | 512 | pag->pagi_inodeok = 1; | 
| 443 | if (index < max_metadata) | 513 | if (index < max_metadata) | 
| 444 | pag->pagf_metadata = 1; | 514 | pag->pagf_metadata = 1; | 
| 445 | xfs_initialize_perag_icache(pag); | 515 | xfs_initialize_perag_icache(pag); | 
| 516 | xfs_perag_put(pag); | ||
| 446 | } | 517 | } | 
| 447 | } else { | 518 | } else { | 
| 448 | /* Setup default behavior for smaller filesystems */ | 519 | /* Setup default behavior for smaller filesystems */ | 
| 449 | for (index = 0; index < agcount; index++) { | 520 | for (index = 0; index < agcount; index++) { | 
| 450 | pag = &mp->m_perag[index]; | 521 | pag = xfs_perag_get(mp, index); | 
| 451 | pag->pagi_inodeok = 1; | 522 | pag->pagi_inodeok = 1; | 
| 452 | xfs_initialize_perag_icache(pag); | 523 | xfs_initialize_perag_icache(pag); | 
| 524 | xfs_perag_put(pag); | ||
| 453 | } | 525 | } | 
| 454 | } | 526 | } | 
| 455 | return index; | 527 | if (maxagi) | 
| 528 | *maxagi = index; | ||
| 529 | return 0; | ||
| 530 | |||
| 531 | out_unwind: | ||
| 532 | kmem_free(pag); | ||
| 533 | for (; index > first_initialised; index--) { | ||
| 534 | pag = radix_tree_delete(&mp->m_perag_tree, index); | ||
| 535 | kmem_free(pag); | ||
| 536 | } | ||
| 537 | return error; | ||
| 456 | } | 538 | } | 
| 457 | 539 | ||
| 458 | void | 540 | void | 
| @@ -583,7 +665,7 @@ xfs_readsb(xfs_mount_t *mp, int flags) | |||
| 583 | * access to the superblock. | 665 | * access to the superblock. | 
| 584 | */ | 666 | */ | 
| 585 | sector_size = xfs_getsize_buftarg(mp->m_ddev_targp); | 667 | sector_size = xfs_getsize_buftarg(mp->m_ddev_targp); | 
| 586 | extra_flags = XFS_BUF_LOCK | XFS_BUF_MANAGE | XFS_BUF_MAPPED; | 668 | extra_flags = XBF_LOCK | XBF_FS_MANAGED | XBF_MAPPED; | 
| 587 | 669 | ||
| 588 | bp = xfs_buf_read(mp->m_ddev_targp, XFS_SB_DADDR, BTOBB(sector_size), | 670 | bp = xfs_buf_read(mp->m_ddev_targp, XFS_SB_DADDR, BTOBB(sector_size), | 
| 589 | extra_flags); | 671 | extra_flags); | 
| @@ -731,12 +813,13 @@ xfs_initialize_perag_data(xfs_mount_t *mp, xfs_agnumber_t agcount) | |||
| 731 | error = xfs_ialloc_pagi_init(mp, NULL, index); | 813 | error = xfs_ialloc_pagi_init(mp, NULL, index); | 
| 732 | if (error) | 814 | if (error) | 
| 733 | return error; | 815 | return error; | 
| 734 | pag = &mp->m_perag[index]; | 816 | pag = xfs_perag_get(mp, index); | 
| 735 | ifree += pag->pagi_freecount; | 817 | ifree += pag->pagi_freecount; | 
| 736 | ialloc += pag->pagi_count; | 818 | ialloc += pag->pagi_count; | 
| 737 | bfree += pag->pagf_freeblks; | 819 | bfree += pag->pagf_freeblks; | 
| 738 | bfreelst += pag->pagf_flcount; | 820 | bfreelst += pag->pagf_flcount; | 
| 739 | btree += pag->pagf_btreeblks; | 821 | btree += pag->pagf_btreeblks; | 
| 822 | xfs_perag_put(pag); | ||
| 740 | } | 823 | } | 
| 741 | /* | 824 | /* | 
| 742 | * Overwrite incore superblock counters with just-read data | 825 | * Overwrite incore superblock counters with just-read data | 
| @@ -1008,6 +1091,24 @@ xfs_mount_reset_sbqflags( | |||
| 1008 | return xfs_trans_commit(tp, 0); | 1091 | return xfs_trans_commit(tp, 0); | 
| 1009 | } | 1092 | } | 
| 1010 | 1093 | ||
| 1094 | __uint64_t | ||
| 1095 | xfs_default_resblks(xfs_mount_t *mp) | ||
| 1096 | { | ||
| 1097 | __uint64_t resblks; | ||
| 1098 | |||
| 1099 | /* | ||
| 1100 | * We default to 5% or 8192 fsbs of space reserved, whichever is | ||
| 1101 | * smaller. This is intended to cover concurrent allocation | ||
| 1102 | * transactions when we initially hit enospc. These each require a 4 | ||
| 1103 | * block reservation. Hence by default we cover roughly 2000 concurrent | ||
| 1104 | * allocation reservations. | ||
| 1105 | */ | ||
| 1106 | resblks = mp->m_sb.sb_dblocks; | ||
| 1107 | do_div(resblks, 20); | ||
| 1108 | resblks = min_t(__uint64_t, resblks, 8192); | ||
| 1109 | return resblks; | ||
| 1110 | } | ||
| 1111 | |||
| 1011 | /* | 1112 | /* | 
| 1012 | * This function does the following on an initial mount of a file system: | 1113 | * This function does the following on an initial mount of a file system: | 
| 1013 | * - reads the superblock from disk and init the mount struct | 1114 | * - reads the superblock from disk and init the mount struct | 
| @@ -1152,13 +1253,13 @@ xfs_mountfs( | |||
| 1152 | /* | 1253 | /* | 
| 1153 | * Allocate and initialize the per-ag data. | 1254 | * Allocate and initialize the per-ag data. | 
| 1154 | */ | 1255 | */ | 
| 1155 | init_rwsem(&mp->m_peraglock); | 1256 | spin_lock_init(&mp->m_perag_lock); | 
| 1156 | mp->m_perag = kmem_zalloc(sbp->sb_agcount * sizeof(xfs_perag_t), | 1257 | INIT_RADIX_TREE(&mp->m_perag_tree, GFP_NOFS); | 
| 1157 | KM_MAYFAIL); | 1258 | error = xfs_initialize_perag(mp, sbp->sb_agcount, &mp->m_maxagi); | 
| 1158 | if (!mp->m_perag) | 1259 | if (error) { | 
| 1260 | cmn_err(CE_WARN, "XFS: Failed per-ag init: %d", error); | ||
| 1159 | goto out_remove_uuid; | 1261 | goto out_remove_uuid; | 
| 1160 | 1262 | } | |
| 1161 | mp->m_maxagi = xfs_initialize_perag(mp, sbp->sb_agcount); | ||
| 1162 | 1263 | ||
| 1163 | if (!sbp->sb_logblocks) { | 1264 | if (!sbp->sb_logblocks) { | 
| 1164 | cmn_err(CE_WARN, "XFS: no log defined"); | 1265 | cmn_err(CE_WARN, "XFS: no log defined"); | 
| @@ -1319,17 +1420,16 @@ xfs_mountfs( | |||
| 1319 | * attr, unwritten extent conversion at ENOSPC, etc. Data allocations | 1420 | * attr, unwritten extent conversion at ENOSPC, etc. Data allocations | 
| 1320 | * are not allowed to use this reserved space. | 1421 | * are not allowed to use this reserved space. | 
| 1321 | * | 1422 | * | 
| 1322 | * We default to 5% or 1024 fsbs of space reserved, whichever is smaller. | ||
| 1323 | * This may drive us straight to ENOSPC on mount, but that implies | 1423 | * This may drive us straight to ENOSPC on mount, but that implies | 
| 1324 | * we were already there on the last unmount. Warn if this occurs. | 1424 | * we were already there on the last unmount. Warn if this occurs. | 
| 1325 | */ | 1425 | */ | 
| 1326 | resblks = mp->m_sb.sb_dblocks; | 1426 | if (!(mp->m_flags & XFS_MOUNT_RDONLY)) { | 
| 1327 | do_div(resblks, 20); | 1427 | resblks = xfs_default_resblks(mp); | 
| 1328 | resblks = min_t(__uint64_t, resblks, 1024); | 1428 | error = xfs_reserve_blocks(mp, &resblks, NULL); | 
| 1329 | error = xfs_reserve_blocks(mp, &resblks, NULL); | 1429 | if (error) | 
| 1330 | if (error) | 1430 | cmn_err(CE_WARN, "XFS: Unable to allocate reserve " | 
| 1331 | cmn_err(CE_WARN, "XFS: Unable to allocate reserve blocks. " | 1431 | "blocks. Continuing without a reserve pool."); | 
| 1332 | "Continuing without a reserve pool."); | 1432 | } | 
| 1333 | 1433 | ||
| 1334 | return 0; | 1434 | return 0; | 
| 1335 | 1435 | ||
| @@ -1372,8 +1472,19 @@ xfs_unmountfs( | |||
| 1372 | * push out the iclog we will never get that unlocked. hence we | 1472 | * push out the iclog we will never get that unlocked. hence we | 
| 1373 | * need to force the log first. | 1473 | * need to force the log first. | 
| 1374 | */ | 1474 | */ | 
| 1375 | xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE | XFS_LOG_SYNC); | 1475 | xfs_log_force(mp, XFS_LOG_SYNC); | 
| 1376 | xfs_reclaim_inodes(mp, XFS_IFLUSH_ASYNC); | 1476 | |
| 1477 | /* | ||
| 1478 | * Do a delwri reclaim pass first so that as many dirty inodes are | ||
| 1479 | * queued up for IO as possible. Then flush the buffers before making | ||
| 1480 | * a synchronous path to catch all the remaining inodes are reclaimed. | ||
| 1481 | * This makes the reclaim process as quick as possible by avoiding | ||
| 1482 | * synchronous writeout and blocking on inodes already in the delwri | ||
| 1483 | * state as much as possible. | ||
| 1484 | */ | ||
| 1485 | xfs_reclaim_inodes(mp, 0); | ||
| 1486 | XFS_bflush(mp->m_ddev_targp); | ||
| 1487 | xfs_reclaim_inodes(mp, SYNC_WAIT); | ||
| 1377 | 1488 | ||
| 1378 | xfs_qm_unmount(mp); | 1489 | xfs_qm_unmount(mp); | 
| 1379 | 1490 | ||
| @@ -1382,7 +1493,7 @@ xfs_unmountfs( | |||
| 1382 | * that nothing is pinned. This is important because bflush() | 1493 | * that nothing is pinned. This is important because bflush() | 
| 1383 | * will skip pinned buffers. | 1494 | * will skip pinned buffers. | 
| 1384 | */ | 1495 | */ | 
| 1385 | xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE | XFS_LOG_SYNC); | 1496 | xfs_log_force(mp, XFS_LOG_SYNC); | 
| 1386 | 1497 | ||
| 1387 | xfs_binval(mp->m_ddev_targp); | 1498 | xfs_binval(mp->m_ddev_targp); | 
| 1388 | if (mp->m_rtdev_targp) { | 1499 | if (mp->m_rtdev_targp) { | 
| @@ -1548,15 +1659,14 @@ xfs_mod_sb(xfs_trans_t *tp, __int64_t fields) | |||
| 1548 | xfs_sb_to_disk(XFS_BUF_TO_SBP(bp), &mp->m_sb, fields); | 1659 | xfs_sb_to_disk(XFS_BUF_TO_SBP(bp), &mp->m_sb, fields); | 
| 1549 | 1660 | ||
| 1550 | /* find modified range */ | 1661 | /* find modified range */ | 
| 1662 | f = (xfs_sb_field_t)xfs_highbit64((__uint64_t)fields); | ||
| 1663 | ASSERT((1LL << f) & XFS_SB_MOD_BITS); | ||
| 1664 | last = xfs_sb_info[f + 1].offset - 1; | ||
| 1551 | 1665 | ||
| 1552 | f = (xfs_sb_field_t)xfs_lowbit64((__uint64_t)fields); | 1666 | f = (xfs_sb_field_t)xfs_lowbit64((__uint64_t)fields); | 
| 1553 | ASSERT((1LL << f) & XFS_SB_MOD_BITS); | 1667 | ASSERT((1LL << f) & XFS_SB_MOD_BITS); | 
| 1554 | first = xfs_sb_info[f].offset; | 1668 | first = xfs_sb_info[f].offset; | 
| 1555 | 1669 | ||
| 1556 | f = (xfs_sb_field_t)xfs_highbit64((__uint64_t)fields); | ||
| 1557 | ASSERT((1LL << f) & XFS_SB_MOD_BITS); | ||
| 1558 | last = xfs_sb_info[f + 1].offset - 1; | ||
| 1559 | |||
| 1560 | xfs_trans_log_buf(tp, bp, first, last); | 1670 | xfs_trans_log_buf(tp, bp, first, last); | 
| 1561 | } | 1671 | } | 
| 1562 | 1672 | ||
| @@ -1620,26 +1730,30 @@ xfs_mod_incore_sb_unlocked( | |||
| 1620 | lcounter += rem; | 1730 | lcounter += rem; | 
| 1621 | } | 1731 | } | 
| 1622 | } else { /* Taking blocks away */ | 1732 | } else { /* Taking blocks away */ | 
| 1623 | |||
| 1624 | lcounter += delta; | 1733 | lcounter += delta; | 
| 1734 | if (lcounter >= 0) { | ||
| 1735 | mp->m_sb.sb_fdblocks = lcounter + | ||
| 1736 | XFS_ALLOC_SET_ASIDE(mp); | ||
| 1737 | return 0; | ||
| 1738 | } | ||
| 1625 | 1739 | ||
| 1626 | /* | 1740 | /* | 
| 1627 | * If were out of blocks, use any available reserved blocks if | 1741 | * We are out of blocks, use any available reserved | 
| 1628 | * were allowed to. | 1742 | * blocks if were allowed to. | 
| 1629 | */ | 1743 | */ | 
| 1744 | if (!rsvd) | ||
| 1745 | return XFS_ERROR(ENOSPC); | ||
| 1630 | 1746 | ||
| 1631 | if (lcounter < 0) { | 1747 | lcounter = (long long)mp->m_resblks_avail + delta; | 
| 1632 | if (rsvd) { | 1748 | if (lcounter >= 0) { | 
| 1633 | lcounter = (long long)mp->m_resblks_avail + delta; | 1749 | mp->m_resblks_avail = lcounter; | 
| 1634 | if (lcounter < 0) { | 1750 | return 0; | 
| 1635 | return XFS_ERROR(ENOSPC); | ||
| 1636 | } | ||
| 1637 | mp->m_resblks_avail = lcounter; | ||
| 1638 | return 0; | ||
| 1639 | } else { /* not reserved */ | ||
| 1640 | return XFS_ERROR(ENOSPC); | ||
| 1641 | } | ||
| 1642 | } | 1751 | } | 
| 1752 | printk_once(KERN_WARNING | ||
| 1753 | "Filesystem \"%s\": reserve blocks depleted! " | ||
| 1754 | "Consider increasing reserve pool size.", | ||
| 1755 | mp->m_fsname); | ||
| 1756 | return XFS_ERROR(ENOSPC); | ||
| 1643 | } | 1757 | } | 
| 1644 | 1758 | ||
| 1645 | mp->m_sb.sb_fdblocks = lcounter + XFS_ALLOC_SET_ASIDE(mp); | 1759 | mp->m_sb.sb_fdblocks = lcounter + XFS_ALLOC_SET_ASIDE(mp); | 
| @@ -1887,7 +2001,7 @@ xfs_getsb( | |||
| 1887 | 2001 | ||
| 1888 | ASSERT(mp->m_sb_bp != NULL); | 2002 | ASSERT(mp->m_sb_bp != NULL); | 
| 1889 | bp = mp->m_sb_bp; | 2003 | bp = mp->m_sb_bp; | 
| 1890 | if (flags & XFS_BUF_TRYLOCK) { | 2004 | if (flags & XBF_TRYLOCK) { | 
| 1891 | if (!XFS_BUF_CPSEMA(bp)) { | 2005 | if (!XFS_BUF_CPSEMA(bp)) { | 
| 1892 | return NULL; | 2006 | return NULL; | 
| 1893 | } | 2007 | } | 
| @@ -1947,6 +2061,26 @@ xfs_mount_log_sb( | |||
| 1947 | return error; | 2061 | return error; | 
| 1948 | } | 2062 | } | 
| 1949 | 2063 | ||
| 2064 | /* | ||
| 2065 | * If the underlying (data/log/rt) device is readonly, there are some | ||
| 2066 | * operations that cannot proceed. | ||
| 2067 | */ | ||
| 2068 | int | ||
| 2069 | xfs_dev_is_read_only( | ||
| 2070 | struct xfs_mount *mp, | ||
| 2071 | char *message) | ||
| 2072 | { | ||
| 2073 | if (xfs_readonly_buftarg(mp->m_ddev_targp) || | ||
| 2074 | xfs_readonly_buftarg(mp->m_logdev_targp) || | ||
| 2075 | (mp->m_rtdev_targp && xfs_readonly_buftarg(mp->m_rtdev_targp))) { | ||
| 2076 | cmn_err(CE_NOTE, | ||
| 2077 | "XFS: %s required on read-only device.", message); | ||
| 2078 | cmn_err(CE_NOTE, | ||
| 2079 | "XFS: write access unavailable, cannot proceed."); | ||
| 2080 | return EROFS; | ||
| 2081 | } | ||
| 2082 | return 0; | ||
| 2083 | } | ||
| 1950 | 2084 | ||
| 1951 | #ifdef HAVE_PERCPU_SB | 2085 | #ifdef HAVE_PERCPU_SB | 
| 1952 | /* | 2086 | /* | 
diff --git a/fs/xfs/xfs_mount.h b/fs/xfs/xfs_mount.h index 1df7e4502967..4fa0bc7b983e 100644 --- a/fs/xfs/xfs_mount.h +++ b/fs/xfs/xfs_mount.h  | |||
| @@ -78,7 +78,8 @@ typedef int (*xfs_send_destroy_t)(struct xfs_inode *, dm_right_t); | |||
| 78 | typedef int (*xfs_send_namesp_t)(dm_eventtype_t, struct xfs_mount *, | 78 | typedef int (*xfs_send_namesp_t)(dm_eventtype_t, struct xfs_mount *, | 
| 79 | struct xfs_inode *, dm_right_t, | 79 | struct xfs_inode *, dm_right_t, | 
| 80 | struct xfs_inode *, dm_right_t, | 80 | struct xfs_inode *, dm_right_t, | 
| 81 | const char *, const char *, mode_t, int, int); | 81 | const unsigned char *, const unsigned char *, | 
| 82 | mode_t, int, int); | ||
| 82 | typedef int (*xfs_send_mount_t)(struct xfs_mount *, dm_right_t, | 83 | typedef int (*xfs_send_mount_t)(struct xfs_mount *, dm_right_t, | 
| 83 | char *, char *); | 84 | char *, char *); | 
| 84 | typedef void (*xfs_send_unmount_t)(struct xfs_mount *, struct xfs_inode *, | 85 | typedef void (*xfs_send_unmount_t)(struct xfs_mount *, struct xfs_inode *, | 
| @@ -207,8 +208,8 @@ typedef struct xfs_mount { | |||
| 207 | uint m_ag_maxlevels; /* XFS_AG_MAXLEVELS */ | 208 | uint m_ag_maxlevels; /* XFS_AG_MAXLEVELS */ | 
| 208 | uint m_bm_maxlevels[2]; /* XFS_BM_MAXLEVELS */ | 209 | uint m_bm_maxlevels[2]; /* XFS_BM_MAXLEVELS */ | 
| 209 | uint m_in_maxlevels; /* max inobt btree levels. */ | 210 | uint m_in_maxlevels; /* max inobt btree levels. */ | 
| 210 | struct xfs_perag *m_perag; /* per-ag accounting info */ | 211 | struct radix_tree_root m_perag_tree; /* per-ag accounting info */ | 
| 211 | struct rw_semaphore m_peraglock; /* lock for m_perag (pointer) */ | 212 | spinlock_t m_perag_lock; /* lock for m_perag_tree */ | 
| 212 | struct mutex m_growlock; /* growfs mutex */ | 213 | struct mutex m_growlock; /* growfs mutex */ | 
| 213 | int m_fixedfsid[2]; /* unchanged for life of FS */ | 214 | int m_fixedfsid[2]; /* unchanged for life of FS */ | 
| 214 | uint m_dmevmask; /* DMI events for this FS */ | 215 | uint m_dmevmask; /* DMI events for this FS */ | 
| @@ -224,6 +225,7 @@ typedef struct xfs_mount { | |||
| 224 | __uint64_t m_maxioffset; /* maximum inode offset */ | 225 | __uint64_t m_maxioffset; /* maximum inode offset */ | 
| 225 | __uint64_t m_resblks; /* total reserved blocks */ | 226 | __uint64_t m_resblks; /* total reserved blocks */ | 
| 226 | __uint64_t m_resblks_avail;/* available reserved blocks */ | 227 | __uint64_t m_resblks_avail;/* available reserved blocks */ | 
| 228 | __uint64_t m_resblks_save; /* reserved blks @ remount,ro */ | ||
| 227 | int m_dalign; /* stripe unit */ | 229 | int m_dalign; /* stripe unit */ | 
| 228 | int m_swidth; /* stripe width */ | 230 | int m_swidth; /* stripe width */ | 
| 229 | int m_sinoalign; /* stripe unit inode alignment */ | 231 | int m_sinoalign; /* stripe unit inode alignment */ | 
| @@ -243,7 +245,7 @@ typedef struct xfs_mount { | |||
| 243 | struct xfs_qmops *m_qm_ops; /* vector of XQM ops */ | 245 | struct xfs_qmops *m_qm_ops; /* vector of XQM ops */ | 
| 244 | atomic_t m_active_trans; /* number trans frozen */ | 246 | atomic_t m_active_trans; /* number trans frozen */ | 
| 245 | #ifdef HAVE_PERCPU_SB | 247 | #ifdef HAVE_PERCPU_SB | 
| 246 | xfs_icsb_cnts_t *m_sb_cnts; /* per-cpu superblock counters */ | 248 | xfs_icsb_cnts_t __percpu *m_sb_cnts; /* per-cpu superblock counters */ | 
| 247 | unsigned long m_icsb_counters; /* disabled per-cpu counters */ | 249 | unsigned long m_icsb_counters; /* disabled per-cpu counters */ | 
| 248 | struct notifier_block m_icsb_notifier; /* hotplug cpu notifier */ | 250 | struct notifier_block m_icsb_notifier; /* hotplug cpu notifier */ | 
| 249 | struct mutex m_icsb_mutex; /* balancer sync lock */ | 251 | struct mutex m_icsb_mutex; /* balancer sync lock */ | 
| @@ -384,19 +386,10 @@ xfs_daddr_to_agbno(struct xfs_mount *mp, xfs_daddr_t d) | |||
| 384 | } | 386 | } | 
| 385 | 387 | ||
| 386 | /* | 388 | /* | 
| 387 | * perag get/put wrappers for eventual ref counting | 389 | * perag get/put wrappers for ref counting | 
| 388 | */ | 390 | */ | 
| 389 | static inline xfs_perag_t * | 391 | struct xfs_perag *xfs_perag_get(struct xfs_mount *mp, xfs_agnumber_t agno); | 
| 390 | xfs_get_perag(struct xfs_mount *mp, xfs_ino_t ino) | 392 | void xfs_perag_put(struct xfs_perag *pag); | 
| 391 | { | ||
| 392 | return &mp->m_perag[XFS_INO_TO_AGNO(mp, ino)]; | ||
| 393 | } | ||
| 394 | |||
| 395 | static inline void | ||
| 396 | xfs_put_perag(struct xfs_mount *mp, xfs_perag_t *pag) | ||
| 397 | { | ||
| 398 | /* nothing to see here, move along */ | ||
| 399 | } | ||
| 400 | 393 | ||
| 401 | /* | 394 | /* | 
| 402 | * Per-cpu superblock locking functions | 395 | * Per-cpu superblock locking functions | 
| @@ -428,6 +421,7 @@ typedef struct xfs_mod_sb { | |||
| 428 | } xfs_mod_sb_t; | 421 | } xfs_mod_sb_t; | 
| 429 | 422 | ||
| 430 | extern int xfs_log_sbcount(xfs_mount_t *, uint); | 423 | extern int xfs_log_sbcount(xfs_mount_t *, uint); | 
| 424 | extern __uint64_t xfs_default_resblks(xfs_mount_t *mp); | ||
| 431 | extern int xfs_mountfs(xfs_mount_t *mp); | 425 | extern int xfs_mountfs(xfs_mount_t *mp); | 
| 432 | 426 | ||
| 433 | extern void xfs_unmountfs(xfs_mount_t *); | 427 | extern void xfs_unmountfs(xfs_mount_t *); | 
| @@ -442,6 +436,8 @@ extern void xfs_freesb(xfs_mount_t *); | |||
| 442 | extern int xfs_fs_writable(xfs_mount_t *); | 436 | extern int xfs_fs_writable(xfs_mount_t *); | 
| 443 | extern int xfs_sb_validate_fsb_count(struct xfs_sb *, __uint64_t); | 437 | extern int xfs_sb_validate_fsb_count(struct xfs_sb *, __uint64_t); | 
| 444 | 438 | ||
| 439 | extern int xfs_dev_is_read_only(struct xfs_mount *, char *); | ||
| 440 | |||
| 445 | extern int xfs_dmops_get(struct xfs_mount *); | 441 | extern int xfs_dmops_get(struct xfs_mount *); | 
| 446 | extern void xfs_dmops_put(struct xfs_mount *); | 442 | extern void xfs_dmops_put(struct xfs_mount *); | 
| 447 | 443 | ||
| @@ -450,7 +446,8 @@ extern struct xfs_dmops xfs_dmcore_xfs; | |||
| 450 | #endif /* __KERNEL__ */ | 446 | #endif /* __KERNEL__ */ | 
| 451 | 447 | ||
| 452 | extern void xfs_mod_sb(struct xfs_trans *, __int64_t); | 448 | extern void xfs_mod_sb(struct xfs_trans *, __int64_t); | 
| 453 | extern xfs_agnumber_t xfs_initialize_perag(struct xfs_mount *, xfs_agnumber_t); | 449 | extern int xfs_initialize_perag(struct xfs_mount *, xfs_agnumber_t, | 
| 450 | xfs_agnumber_t *); | ||
| 454 | extern void xfs_sb_from_disk(struct xfs_sb *, struct xfs_dsb *); | 451 | extern void xfs_sb_from_disk(struct xfs_sb *, struct xfs_dsb *); | 
| 455 | extern void xfs_sb_to_disk(struct xfs_dsb *, struct xfs_sb *, __int64_t); | 452 | extern void xfs_sb_to_disk(struct xfs_dsb *, struct xfs_sb *, __int64_t); | 
| 456 | 453 | ||
diff --git a/fs/xfs/xfs_mru_cache.c b/fs/xfs/xfs_mru_cache.c index 4b0613d99faa..45ce15dc5b2b 100644 --- a/fs/xfs/xfs_mru_cache.c +++ b/fs/xfs/xfs_mru_cache.c  | |||
| @@ -398,7 +398,7 @@ exit: | |||
| 398 | * guaranteed that all the free functions for all the elements have finished | 398 | * guaranteed that all the free functions for all the elements have finished | 
| 399 | * executing and the reaper is not running. | 399 | * executing and the reaper is not running. | 
| 400 | */ | 400 | */ | 
| 401 | void | 401 | static void | 
| 402 | xfs_mru_cache_flush( | 402 | xfs_mru_cache_flush( | 
| 403 | xfs_mru_cache_t *mru) | 403 | xfs_mru_cache_t *mru) | 
| 404 | { | 404 | { | 
diff --git a/fs/xfs/xfs_mru_cache.h b/fs/xfs/xfs_mru_cache.h index 5d439f34b0c9..36dd3ec8b4eb 100644 --- a/fs/xfs/xfs_mru_cache.h +++ b/fs/xfs/xfs_mru_cache.h  | |||
| @@ -42,7 +42,6 @@ void xfs_mru_cache_uninit(void); | |||
| 42 | int xfs_mru_cache_create(struct xfs_mru_cache **mrup, unsigned int lifetime_ms, | 42 | int xfs_mru_cache_create(struct xfs_mru_cache **mrup, unsigned int lifetime_ms, | 
| 43 | unsigned int grp_count, | 43 | unsigned int grp_count, | 
| 44 | xfs_mru_cache_free_func_t free_func); | 44 | xfs_mru_cache_free_func_t free_func); | 
| 45 | void xfs_mru_cache_flush(xfs_mru_cache_t *mru); | ||
| 46 | void xfs_mru_cache_destroy(struct xfs_mru_cache *mru); | 45 | void xfs_mru_cache_destroy(struct xfs_mru_cache *mru); | 
| 47 | int xfs_mru_cache_insert(struct xfs_mru_cache *mru, unsigned long key, | 46 | int xfs_mru_cache_insert(struct xfs_mru_cache *mru, unsigned long key, | 
| 48 | void *value); | 47 | void *value); | 
diff --git a/fs/xfs/xfs_quota.h b/fs/xfs/xfs_quota.h index 91bfd60f4c74..fdcab3f81dde 100644 --- a/fs/xfs/xfs_quota.h +++ b/fs/xfs/xfs_quota.h  | |||
| @@ -223,16 +223,9 @@ typedef struct xfs_qoff_logformat { | |||
| 223 | #define XFS_QMOPT_RES_INOS 0x0800000 | 223 | #define XFS_QMOPT_RES_INOS 0x0800000 | 
| 224 | 224 | ||
| 225 | /* | 225 | /* | 
| 226 | * flags for dqflush and dqflush_all. | ||
| 227 | */ | ||
| 228 | #define XFS_QMOPT_SYNC 0x1000000 | ||
| 229 | #define XFS_QMOPT_ASYNC 0x2000000 | ||
| 230 | #define XFS_QMOPT_DELWRI 0x4000000 | ||
| 231 | |||
| 232 | /* | ||
| 233 | * flags for dqalloc. | 226 | * flags for dqalloc. | 
| 234 | */ | 227 | */ | 
| 235 | #define XFS_QMOPT_INHERIT 0x8000000 | 228 | #define XFS_QMOPT_INHERIT 0x1000000 | 
| 236 | 229 | ||
| 237 | /* | 230 | /* | 
| 238 | * flags to xfs_trans_mod_dquot. | 231 | * flags to xfs_trans_mod_dquot. | 
diff --git a/fs/xfs/xfs_rw.c b/fs/xfs/xfs_rw.c index 5aa07caea5f1..e336742a58a4 100644 --- a/fs/xfs/xfs_rw.c +++ b/fs/xfs/xfs_rw.c  | |||
| @@ -47,48 +47,6 @@ | |||
| 47 | #include "xfs_trace.h" | 47 | #include "xfs_trace.h" | 
| 48 | 48 | ||
| 49 | /* | 49 | /* | 
| 50 | * This is a subroutine for xfs_write() and other writers (xfs_ioctl) | ||
| 51 | * which clears the setuid and setgid bits when a file is written. | ||
| 52 | */ | ||
| 53 | int | ||
| 54 | xfs_write_clear_setuid( | ||
| 55 | xfs_inode_t *ip) | ||
| 56 | { | ||
| 57 | xfs_mount_t *mp; | ||
| 58 | xfs_trans_t *tp; | ||
| 59 | int error; | ||
| 60 | |||
| 61 | mp = ip->i_mount; | ||
| 62 | tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID); | ||
| 63 | if ((error = xfs_trans_reserve(tp, 0, | ||
| 64 | XFS_WRITEID_LOG_RES(mp), | ||
| 65 | 0, 0, 0))) { | ||
| 66 | xfs_trans_cancel(tp, 0); | ||
| 67 | return error; | ||
| 68 | } | ||
| 69 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 70 | xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL); | ||
| 71 | xfs_trans_ihold(tp, ip); | ||
| 72 | ip->i_d.di_mode &= ~S_ISUID; | ||
| 73 | |||
| 74 | /* | ||
| 75 | * Note that we don't have to worry about mandatory | ||
| 76 | * file locking being disabled here because we only | ||
| 77 | * clear the S_ISGID bit if the Group execute bit is | ||
| 78 | * on, but if it was on then mandatory locking wouldn't | ||
| 79 | * have been enabled. | ||
| 80 | */ | ||
| 81 | if (ip->i_d.di_mode & S_IXGRP) { | ||
| 82 | ip->i_d.di_mode &= ~S_ISGID; | ||
| 83 | } | ||
| 84 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); | ||
| 85 | xfs_trans_set_sync(tp); | ||
| 86 | error = xfs_trans_commit(tp, 0); | ||
| 87 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 88 | return 0; | ||
| 89 | } | ||
| 90 | |||
| 91 | /* | ||
| 92 | * Force a shutdown of the filesystem instantly while keeping | 50 | * Force a shutdown of the filesystem instantly while keeping | 
| 93 | * the filesystem consistent. We don't do an unmount here; just shutdown | 51 | * the filesystem consistent. We don't do an unmount here; just shutdown | 
| 94 | * the shop, make sure that absolutely nothing persistent happens to | 52 | * the shop, make sure that absolutely nothing persistent happens to | 
| @@ -153,88 +111,6 @@ xfs_do_force_shutdown( | |||
| 153 | } | 111 | } | 
| 154 | } | 112 | } | 
| 155 | 113 | ||
| 156 | |||
| 157 | /* | ||
| 158 | * Called when we want to stop a buffer from getting written or read. | ||
| 159 | * We attach the EIO error, muck with its flags, and call biodone | ||
| 160 | * so that the proper iodone callbacks get called. | ||
| 161 | */ | ||
| 162 | int | ||
| 163 | xfs_bioerror( | ||
| 164 | xfs_buf_t *bp) | ||
| 165 | { | ||
| 166 | |||
| 167 | #ifdef XFSERRORDEBUG | ||
| 168 | ASSERT(XFS_BUF_ISREAD(bp) || bp->b_iodone); | ||
| 169 | #endif | ||
| 170 | |||
| 171 | /* | ||
| 172 | * No need to wait until the buffer is unpinned. | ||
| 173 | * We aren't flushing it. | ||
| 174 | */ | ||
| 175 | XFS_BUF_ERROR(bp, EIO); | ||
| 176 | /* | ||
| 177 | * We're calling biodone, so delete B_DONE flag. Either way | ||
| 178 | * we have to call the iodone callback, and calling biodone | ||
| 179 | * probably is the best way since it takes care of | ||
| 180 | * GRIO as well. | ||
| 181 | */ | ||
| 182 | XFS_BUF_UNREAD(bp); | ||
| 183 | XFS_BUF_UNDELAYWRITE(bp); | ||
| 184 | XFS_BUF_UNDONE(bp); | ||
| 185 | XFS_BUF_STALE(bp); | ||
| 186 | |||
| 187 | XFS_BUF_CLR_BDSTRAT_FUNC(bp); | ||
| 188 | xfs_biodone(bp); | ||
| 189 | |||
| 190 | return (EIO); | ||
| 191 | } | ||
| 192 | |||
| 193 | /* | ||
| 194 | * Same as xfs_bioerror, except that we are releasing the buffer | ||
| 195 | * here ourselves, and avoiding the biodone call. | ||
| 196 | * This is meant for userdata errors; metadata bufs come with | ||
| 197 | * iodone functions attached, so that we can track down errors. | ||
| 198 | */ | ||
| 199 | int | ||
| 200 | xfs_bioerror_relse( | ||
| 201 | xfs_buf_t *bp) | ||
| 202 | { | ||
| 203 | int64_t fl; | ||
| 204 | |||
| 205 | ASSERT(XFS_BUF_IODONE_FUNC(bp) != xfs_buf_iodone_callbacks); | ||
| 206 | ASSERT(XFS_BUF_IODONE_FUNC(bp) != xlog_iodone); | ||
| 207 | |||
| 208 | fl = XFS_BUF_BFLAGS(bp); | ||
| 209 | /* | ||
| 210 | * No need to wait until the buffer is unpinned. | ||
| 211 | * We aren't flushing it. | ||
| 212 | * | ||
| 213 | * chunkhold expects B_DONE to be set, whether | ||
| 214 | * we actually finish the I/O or not. We don't want to | ||
| 215 | * change that interface. | ||
| 216 | */ | ||
| 217 | XFS_BUF_UNREAD(bp); | ||
| 218 | XFS_BUF_UNDELAYWRITE(bp); | ||
| 219 | XFS_BUF_DONE(bp); | ||
| 220 | XFS_BUF_STALE(bp); | ||
| 221 | XFS_BUF_CLR_IODONE_FUNC(bp); | ||
| 222 | XFS_BUF_CLR_BDSTRAT_FUNC(bp); | ||
| 223 | if (!(fl & XFS_B_ASYNC)) { | ||
| 224 | /* | ||
| 225 | * Mark b_error and B_ERROR _both_. | ||
| 226 | * Lot's of chunkcache code assumes that. | ||
| 227 | * There's no reason to mark error for | ||
| 228 | * ASYNC buffers. | ||
| 229 | */ | ||
| 230 | XFS_BUF_ERROR(bp, EIO); | ||
| 231 | XFS_BUF_FINISH_IOWAIT(bp); | ||
| 232 | } else { | ||
| 233 | xfs_buf_relse(bp); | ||
| 234 | } | ||
| 235 | return (EIO); | ||
| 236 | } | ||
| 237 | |||
| 238 | /* | 114 | /* | 
| 239 | * Prints out an ALERT message about I/O error. | 115 | * Prints out an ALERT message about I/O error. | 
| 240 | */ | 116 | */ | 
| @@ -306,37 +182,6 @@ xfs_read_buf( | |||
| 306 | } | 182 | } | 
| 307 | 183 | ||
| 308 | /* | 184 | /* | 
| 309 | * Wrapper around bwrite() so that we can trap | ||
| 310 | * write errors, and act accordingly. | ||
| 311 | */ | ||
| 312 | int | ||
| 313 | xfs_bwrite( | ||
| 314 | struct xfs_mount *mp, | ||
| 315 | struct xfs_buf *bp) | ||
| 316 | { | ||
| 317 | int error; | ||
| 318 | |||
| 319 | /* | ||
| 320 | * XXXsup how does this work for quotas. | ||
| 321 | */ | ||
| 322 | XFS_BUF_SET_BDSTRAT_FUNC(bp, xfs_bdstrat_cb); | ||
| 323 | bp->b_mount = mp; | ||
| 324 | XFS_BUF_WRITE(bp); | ||
| 325 | |||
| 326 | if ((error = XFS_bwrite(bp))) { | ||
| 327 | ASSERT(mp); | ||
| 328 | /* | ||
| 329 | * Cannot put a buftrace here since if the buffer is not | ||
| 330 | * B_HOLD then we will brelse() the buffer before returning | ||
| 331 | * from bwrite and we could be tracing a buffer that has | ||
| 332 | * been reused. | ||
| 333 | */ | ||
| 334 | xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR); | ||
| 335 | } | ||
| 336 | return (error); | ||
| 337 | } | ||
| 338 | |||
| 339 | /* | ||
| 340 | * helper function to extract extent size hint from inode | 185 | * helper function to extract extent size hint from inode | 
| 341 | */ | 186 | */ | 
| 342 | xfs_extlen_t | 187 | xfs_extlen_t | 
diff --git a/fs/xfs/xfs_rw.h b/fs/xfs/xfs_rw.h index 571f2174435c..11c41ec6ed75 100644 --- a/fs/xfs/xfs_rw.h +++ b/fs/xfs/xfs_rw.h  | |||
| @@ -39,10 +39,6 @@ xfs_fsb_to_db(struct xfs_inode *ip, xfs_fsblock_t fsb) | |||
| 39 | /* | 39 | /* | 
| 40 | * Prototypes for functions in xfs_rw.c. | 40 | * Prototypes for functions in xfs_rw.c. | 
| 41 | */ | 41 | */ | 
| 42 | extern int xfs_write_clear_setuid(struct xfs_inode *ip); | ||
| 43 | extern int xfs_bwrite(struct xfs_mount *mp, struct xfs_buf *bp); | ||
| 44 | extern int xfs_bioerror(struct xfs_buf *bp); | ||
| 45 | extern int xfs_bioerror_relse(struct xfs_buf *bp); | ||
| 46 | extern int xfs_read_buf(struct xfs_mount *mp, xfs_buftarg_t *btp, | 42 | extern int xfs_read_buf(struct xfs_mount *mp, xfs_buftarg_t *btp, | 
| 47 | xfs_daddr_t blkno, int len, uint flags, | 43 | xfs_daddr_t blkno, int len, uint flags, | 
| 48 | struct xfs_buf **bpp); | 44 | struct xfs_buf **bpp); | 
diff --git a/fs/xfs/xfs_trans.c b/fs/xfs/xfs_trans.c index 237badcbac3b..f73e358bae8d 100644 --- a/fs/xfs/xfs_trans.c +++ b/fs/xfs/xfs_trans.c  | |||
| @@ -796,7 +796,7 @@ _xfs_trans_commit( | |||
| 796 | int sync; | 796 | int sync; | 
| 797 | #define XFS_TRANS_LOGVEC_COUNT 16 | 797 | #define XFS_TRANS_LOGVEC_COUNT 16 | 
| 798 | xfs_log_iovec_t log_vector_fast[XFS_TRANS_LOGVEC_COUNT]; | 798 | xfs_log_iovec_t log_vector_fast[XFS_TRANS_LOGVEC_COUNT]; | 
| 799 | void *commit_iclog; | 799 | struct xlog_in_core *commit_iclog; | 
| 800 | int shutdown; | 800 | int shutdown; | 
| 801 | 801 | ||
| 802 | commit_lsn = -1; | 802 | commit_lsn = -1; | 
| @@ -981,9 +981,8 @@ shut_us_down: | |||
| 981 | */ | 981 | */ | 
| 982 | if (sync) { | 982 | if (sync) { | 
| 983 | if (!error) { | 983 | if (!error) { | 
| 984 | error = _xfs_log_force(mp, commit_lsn, | 984 | error = _xfs_log_force_lsn(mp, commit_lsn, | 
| 985 | XFS_LOG_FORCE | XFS_LOG_SYNC, | 985 | XFS_LOG_SYNC, log_flushed); | 
| 986 | log_flushed); | ||
| 987 | } | 986 | } | 
| 988 | XFS_STATS_INC(xs_trans_sync); | 987 | XFS_STATS_INC(xs_trans_sync); | 
| 989 | } else { | 988 | } else { | 
| @@ -1121,7 +1120,7 @@ xfs_trans_fill_vecs( | |||
| 1121 | tp->t_header.th_num_items = nitems; | 1120 | tp->t_header.th_num_items = nitems; | 
| 1122 | log_vector->i_addr = (xfs_caddr_t)&tp->t_header; | 1121 | log_vector->i_addr = (xfs_caddr_t)&tp->t_header; | 
| 1123 | log_vector->i_len = sizeof(xfs_trans_header_t); | 1122 | log_vector->i_len = sizeof(xfs_trans_header_t); | 
| 1124 | XLOG_VEC_SET_TYPE(log_vector, XLOG_REG_TYPE_TRANSHDR); | 1123 | log_vector->i_type = XLOG_REG_TYPE_TRANSHDR; | 
| 1125 | } | 1124 | } | 
| 1126 | 1125 | ||
| 1127 | 1126 | ||
diff --git a/fs/xfs/xfs_trans.h b/fs/xfs/xfs_trans.h index ca64f33c63a3..79c8bab9dfff 100644 --- a/fs/xfs/xfs_trans.h +++ b/fs/xfs/xfs_trans.h  | |||
| @@ -861,8 +861,7 @@ typedef struct xfs_item_ops { | |||
| 861 | #define XFS_ITEM_SUCCESS 0 | 861 | #define XFS_ITEM_SUCCESS 0 | 
| 862 | #define XFS_ITEM_PINNED 1 | 862 | #define XFS_ITEM_PINNED 1 | 
| 863 | #define XFS_ITEM_LOCKED 2 | 863 | #define XFS_ITEM_LOCKED 2 | 
| 864 | #define XFS_ITEM_FLUSHING 3 | 864 | #define XFS_ITEM_PUSHBUF 3 | 
| 865 | #define XFS_ITEM_PUSHBUF 4 | ||
| 866 | 865 | ||
| 867 | /* | 866 | /* | 
| 868 | * This structure is used to maintain a list of block ranges that have been | 867 | * This structure is used to maintain a list of block ranges that have been | 
| @@ -911,7 +910,7 @@ typedef struct xfs_trans { | |||
| 911 | unsigned int t_blk_res_used; /* # of resvd blocks used */ | 910 | unsigned int t_blk_res_used; /* # of resvd blocks used */ | 
| 912 | unsigned int t_rtx_res; /* # of rt extents resvd */ | 911 | unsigned int t_rtx_res; /* # of rt extents resvd */ | 
| 913 | unsigned int t_rtx_res_used; /* # of resvd rt extents used */ | 912 | unsigned int t_rtx_res_used; /* # of resvd rt extents used */ | 
| 914 | xfs_log_ticket_t t_ticket; /* log mgr ticket */ | 913 | struct xlog_ticket *t_ticket; /* log mgr ticket */ | 
| 915 | xfs_lsn_t t_lsn; /* log seq num of start of | 914 | xfs_lsn_t t_lsn; /* log seq num of start of | 
| 916 | * transaction. */ | 915 | * transaction. */ | 
| 917 | xfs_lsn_t t_commit_lsn; /* log seq num of end of | 916 | xfs_lsn_t t_commit_lsn; /* log seq num of end of | 
diff --git a/fs/xfs/xfs_trans_ail.c b/fs/xfs/xfs_trans_ail.c index 2ffc570679be..e799824f7245 100644 --- a/fs/xfs/xfs_trans_ail.c +++ b/fs/xfs/xfs_trans_ail.c  | |||
| @@ -237,14 +237,15 @@ out: | |||
| 237 | } | 237 | } | 
| 238 | 238 | ||
| 239 | /* | 239 | /* | 
| 240 | * Function that does the work of pushing on the AIL | 240 | * xfsaild_push does the work of pushing on the AIL. Returning a timeout of | 
| 241 | * zero indicates that the caller should sleep until woken. | ||
| 241 | */ | 242 | */ | 
| 242 | long | 243 | long | 
| 243 | xfsaild_push( | 244 | xfsaild_push( | 
| 244 | struct xfs_ail *ailp, | 245 | struct xfs_ail *ailp, | 
| 245 | xfs_lsn_t *last_lsn) | 246 | xfs_lsn_t *last_lsn) | 
| 246 | { | 247 | { | 
| 247 | long tout = 1000; /* milliseconds */ | 248 | long tout = 0; | 
| 248 | xfs_lsn_t last_pushed_lsn = *last_lsn; | 249 | xfs_lsn_t last_pushed_lsn = *last_lsn; | 
| 249 | xfs_lsn_t target = ailp->xa_target; | 250 | xfs_lsn_t target = ailp->xa_target; | 
| 250 | xfs_lsn_t lsn; | 251 | xfs_lsn_t lsn; | 
| @@ -252,6 +253,7 @@ xfsaild_push( | |||
| 252 | int flush_log, count, stuck; | 253 | int flush_log, count, stuck; | 
| 253 | xfs_mount_t *mp = ailp->xa_mount; | 254 | xfs_mount_t *mp = ailp->xa_mount; | 
| 254 | struct xfs_ail_cursor *cur = &ailp->xa_cursors; | 255 | struct xfs_ail_cursor *cur = &ailp->xa_cursors; | 
| 256 | int push_xfsbufd = 0; | ||
| 255 | 257 | ||
| 256 | spin_lock(&ailp->xa_lock); | 258 | spin_lock(&ailp->xa_lock); | 
| 257 | xfs_trans_ail_cursor_init(ailp, cur); | 259 | xfs_trans_ail_cursor_init(ailp, cur); | 
| @@ -262,7 +264,7 @@ xfsaild_push( | |||
| 262 | */ | 264 | */ | 
| 263 | xfs_trans_ail_cursor_done(ailp, cur); | 265 | xfs_trans_ail_cursor_done(ailp, cur); | 
| 264 | spin_unlock(&ailp->xa_lock); | 266 | spin_unlock(&ailp->xa_lock); | 
| 265 | last_pushed_lsn = 0; | 267 | *last_lsn = 0; | 
| 266 | return tout; | 268 | return tout; | 
| 267 | } | 269 | } | 
| 268 | 270 | ||
| @@ -279,7 +281,6 @@ xfsaild_push( | |||
| 279 | * prevents use from spinning when we can't do anything or there is | 281 | * prevents use from spinning when we can't do anything or there is | 
| 280 | * lots of contention on the AIL lists. | 282 | * lots of contention on the AIL lists. | 
| 281 | */ | 283 | */ | 
| 282 | tout = 10; | ||
| 283 | lsn = lip->li_lsn; | 284 | lsn = lip->li_lsn; | 
| 284 | flush_log = stuck = count = 0; | 285 | flush_log = stuck = count = 0; | 
| 285 | while ((XFS_LSN_CMP(lip->li_lsn, target) < 0)) { | 286 | while ((XFS_LSN_CMP(lip->li_lsn, target) < 0)) { | 
| @@ -308,6 +309,7 @@ xfsaild_push( | |||
| 308 | XFS_STATS_INC(xs_push_ail_pushbuf); | 309 | XFS_STATS_INC(xs_push_ail_pushbuf); | 
| 309 | IOP_PUSHBUF(lip); | 310 | IOP_PUSHBUF(lip); | 
| 310 | last_pushed_lsn = lsn; | 311 | last_pushed_lsn = lsn; | 
| 312 | push_xfsbufd = 1; | ||
| 311 | break; | 313 | break; | 
| 312 | 314 | ||
| 313 | case XFS_ITEM_PINNED: | 315 | case XFS_ITEM_PINNED: | 
| @@ -322,12 +324,6 @@ xfsaild_push( | |||
| 322 | stuck++; | 324 | stuck++; | 
| 323 | break; | 325 | break; | 
| 324 | 326 | ||
| 325 | case XFS_ITEM_FLUSHING: | ||
| 326 | XFS_STATS_INC(xs_push_ail_flushing); | ||
| 327 | last_pushed_lsn = lsn; | ||
| 328 | stuck++; | ||
| 329 | break; | ||
| 330 | |||
| 331 | default: | 327 | default: | 
| 332 | ASSERT(0); | 328 | ASSERT(0); | 
| 333 | break; | 329 | break; | 
| @@ -371,19 +367,24 @@ xfsaild_push( | |||
| 371 | * move forward in the AIL. | 367 | * move forward in the AIL. | 
| 372 | */ | 368 | */ | 
| 373 | XFS_STATS_INC(xs_push_ail_flush); | 369 | XFS_STATS_INC(xs_push_ail_flush); | 
| 374 | xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE); | 370 | xfs_log_force(mp, 0); | 
| 371 | } | ||
| 372 | |||
| 373 | if (push_xfsbufd) { | ||
| 374 | /* we've got delayed write buffers to flush */ | ||
| 375 | wake_up_process(mp->m_ddev_targp->bt_task); | ||
| 375 | } | 376 | } | 
| 376 | 377 | ||
| 377 | if (!count) { | 378 | if (!count) { | 
| 378 | /* We're past our target or empty, so idle */ | 379 | /* We're past our target or empty, so idle */ | 
| 379 | tout = 1000; | 380 | last_pushed_lsn = 0; | 
| 380 | } else if (XFS_LSN_CMP(lsn, target) >= 0) { | 381 | } else if (XFS_LSN_CMP(lsn, target) >= 0) { | 
| 381 | /* | 382 | /* | 
| 382 | * We reached the target so wait a bit longer for I/O to | 383 | * We reached the target so wait a bit longer for I/O to | 
| 383 | * complete and remove pushed items from the AIL before we | 384 | * complete and remove pushed items from the AIL before we | 
| 384 | * start the next scan from the start of the AIL. | 385 | * start the next scan from the start of the AIL. | 
| 385 | */ | 386 | */ | 
| 386 | tout += 20; | 387 | tout = 50; | 
| 387 | last_pushed_lsn = 0; | 388 | last_pushed_lsn = 0; | 
| 388 | } else if ((stuck * 100) / count > 90) { | 389 | } else if ((stuck * 100) / count > 90) { | 
| 389 | /* | 390 | /* | 
| @@ -395,11 +396,14 @@ xfsaild_push( | |||
| 395 | * Backoff a bit more to allow some I/O to complete before | 396 | * Backoff a bit more to allow some I/O to complete before | 
| 396 | * continuing from where we were. | 397 | * continuing from where we were. | 
| 397 | */ | 398 | */ | 
| 398 | tout += 10; | 399 | tout = 20; | 
| 400 | } else { | ||
| 401 | /* more to do, but wait a short while before continuing */ | ||
| 402 | tout = 10; | ||
| 399 | } | 403 | } | 
| 400 | *last_lsn = last_pushed_lsn; | 404 | *last_lsn = last_pushed_lsn; | 
| 401 | return tout; | 405 | return tout; | 
| 402 | } /* xfsaild_push */ | 406 | } | 
| 403 | 407 | ||
| 404 | 408 | ||
| 405 | /* | 409 | /* | 
diff --git a/fs/xfs/xfs_trans_buf.c b/fs/xfs/xfs_trans_buf.c index 49130628d5ef..fb586360d1c9 100644 --- a/fs/xfs/xfs_trans_buf.c +++ b/fs/xfs/xfs_trans_buf.c  | |||
| @@ -46,6 +46,65 @@ STATIC xfs_buf_t *xfs_trans_buf_item_match(xfs_trans_t *, xfs_buftarg_t *, | |||
| 46 | STATIC xfs_buf_t *xfs_trans_buf_item_match_all(xfs_trans_t *, xfs_buftarg_t *, | 46 | STATIC xfs_buf_t *xfs_trans_buf_item_match_all(xfs_trans_t *, xfs_buftarg_t *, | 
| 47 | xfs_daddr_t, int); | 47 | xfs_daddr_t, int); | 
| 48 | 48 | ||
| 49 | /* | ||
| 50 | * Add the locked buffer to the transaction. | ||
| 51 | * | ||
| 52 | * The buffer must be locked, and it cannot be associated with any | ||
| 53 | * transaction. | ||
| 54 | * | ||
| 55 | * If the buffer does not yet have a buf log item associated with it, | ||
| 56 | * then allocate one for it. Then add the buf item to the transaction. | ||
| 57 | */ | ||
| 58 | STATIC void | ||
| 59 | _xfs_trans_bjoin( | ||
| 60 | struct xfs_trans *tp, | ||
| 61 | struct xfs_buf *bp, | ||
| 62 | int reset_recur) | ||
| 63 | { | ||
| 64 | struct xfs_buf_log_item *bip; | ||
| 65 | |||
| 66 | ASSERT(XFS_BUF_ISBUSY(bp)); | ||
| 67 | ASSERT(XFS_BUF_FSPRIVATE2(bp, void *) == NULL); | ||
| 68 | |||
| 69 | /* | ||
| 70 | * The xfs_buf_log_item pointer is stored in b_fsprivate. If | ||
| 71 | * it doesn't have one yet, then allocate one and initialize it. | ||
| 72 | * The checks to see if one is there are in xfs_buf_item_init(). | ||
| 73 | */ | ||
| 74 | xfs_buf_item_init(bp, tp->t_mountp); | ||
| 75 | bip = XFS_BUF_FSPRIVATE(bp, xfs_buf_log_item_t *); | ||
| 76 | ASSERT(!(bip->bli_flags & XFS_BLI_STALE)); | ||
| 77 | ASSERT(!(bip->bli_format.blf_flags & XFS_BLI_CANCEL)); | ||
| 78 | ASSERT(!(bip->bli_flags & XFS_BLI_LOGGED)); | ||
| 79 | if (reset_recur) | ||
| 80 | bip->bli_recur = 0; | ||
| 81 | |||
| 82 | /* | ||
| 83 | * Take a reference for this transaction on the buf item. | ||
| 84 | */ | ||
| 85 | atomic_inc(&bip->bli_refcount); | ||
| 86 | |||
| 87 | /* | ||
| 88 | * Get a log_item_desc to point at the new item. | ||
| 89 | */ | ||
| 90 | (void) xfs_trans_add_item(tp, (xfs_log_item_t *)bip); | ||
| 91 | |||
| 92 | /* | ||
| 93 | * Initialize b_fsprivate2 so we can find it with incore_match() | ||
| 94 | * in xfs_trans_get_buf() and friends above. | ||
| 95 | */ | ||
| 96 | XFS_BUF_SET_FSPRIVATE2(bp, tp); | ||
| 97 | |||
| 98 | } | ||
| 99 | |||
| 100 | void | ||
| 101 | xfs_trans_bjoin( | ||
| 102 | struct xfs_trans *tp, | ||
| 103 | struct xfs_buf *bp) | ||
| 104 | { | ||
| 105 | _xfs_trans_bjoin(tp, bp, 0); | ||
| 106 | trace_xfs_trans_bjoin(bp->b_fspriv); | ||
| 107 | } | ||
| 49 | 108 | ||
| 50 | /* | 109 | /* | 
| 51 | * Get and lock the buffer for the caller if it is not already | 110 | * Get and lock the buffer for the caller if it is not already | 
| @@ -75,13 +134,14 @@ xfs_trans_get_buf(xfs_trans_t *tp, | |||
| 75 | xfs_buf_log_item_t *bip; | 134 | xfs_buf_log_item_t *bip; | 
| 76 | 135 | ||
| 77 | if (flags == 0) | 136 | if (flags == 0) | 
| 78 | flags = XFS_BUF_LOCK | XFS_BUF_MAPPED; | 137 | flags = XBF_LOCK | XBF_MAPPED; | 
| 79 | 138 | ||
| 80 | /* | 139 | /* | 
| 81 | * Default to a normal get_buf() call if the tp is NULL. | 140 | * Default to a normal get_buf() call if the tp is NULL. | 
| 82 | */ | 141 | */ | 
| 83 | if (tp == NULL) | 142 | if (tp == NULL) | 
| 84 | return xfs_buf_get(target_dev, blkno, len, flags | BUF_BUSY); | 143 | return xfs_buf_get(target_dev, blkno, len, | 
| 144 | flags | XBF_DONT_BLOCK); | ||
| 85 | 145 | ||
| 86 | /* | 146 | /* | 
| 87 | * If we find the buffer in the cache with this transaction | 147 | * If we find the buffer in the cache with this transaction | 
| @@ -117,54 +177,22 @@ xfs_trans_get_buf(xfs_trans_t *tp, | |||
| 117 | } | 177 | } | 
| 118 | 178 | ||
| 119 | /* | 179 | /* | 
| 120 | * We always specify the BUF_BUSY flag within a transaction so | 180 | * We always specify the XBF_DONT_BLOCK flag within a transaction | 
| 121 | * that get_buf does not try to push out a delayed write buffer | 181 | * so that get_buf does not try to push out a delayed write buffer | 
| 122 | * which might cause another transaction to take place (if the | 182 | * which might cause another transaction to take place (if the | 
| 123 | * buffer was delayed alloc). Such recursive transactions can | 183 | * buffer was delayed alloc). Such recursive transactions can | 
| 124 | * easily deadlock with our current transaction as well as cause | 184 | * easily deadlock with our current transaction as well as cause | 
| 125 | * us to run out of stack space. | 185 | * us to run out of stack space. | 
| 126 | */ | 186 | */ | 
| 127 | bp = xfs_buf_get(target_dev, blkno, len, flags | BUF_BUSY); | 187 | bp = xfs_buf_get(target_dev, blkno, len, flags | XBF_DONT_BLOCK); | 
| 128 | if (bp == NULL) { | 188 | if (bp == NULL) { | 
| 129 | return NULL; | 189 | return NULL; | 
| 130 | } | 190 | } | 
| 131 | 191 | ||
| 132 | ASSERT(!XFS_BUF_GETERROR(bp)); | 192 | ASSERT(!XFS_BUF_GETERROR(bp)); | 
| 133 | 193 | ||
| 134 | /* | 194 | _xfs_trans_bjoin(tp, bp, 1); | 
| 135 | * The xfs_buf_log_item pointer is stored in b_fsprivate. If | 195 | trace_xfs_trans_get_buf(bp->b_fspriv); | 
| 136 | * it doesn't have one yet, then allocate one and initialize it. | ||
| 137 | * The checks to see if one is there are in xfs_buf_item_init(). | ||
| 138 | */ | ||
| 139 | xfs_buf_item_init(bp, tp->t_mountp); | ||
| 140 | |||
| 141 | /* | ||
| 142 | * Set the recursion count for the buffer within this transaction | ||
| 143 | * to 0. | ||
| 144 | */ | ||
| 145 | bip = XFS_BUF_FSPRIVATE(bp, xfs_buf_log_item_t*); | ||
| 146 | ASSERT(!(bip->bli_flags & XFS_BLI_STALE)); | ||
| 147 | ASSERT(!(bip->bli_format.blf_flags & XFS_BLI_CANCEL)); | ||
| 148 | ASSERT(!(bip->bli_flags & XFS_BLI_LOGGED)); | ||
| 149 | bip->bli_recur = 0; | ||
| 150 | |||
| 151 | /* | ||
| 152 | * Take a reference for this transaction on the buf item. | ||
| 153 | */ | ||
| 154 | atomic_inc(&bip->bli_refcount); | ||
| 155 | |||
| 156 | /* | ||
| 157 | * Get a log_item_desc to point at the new item. | ||
| 158 | */ | ||
| 159 | (void) xfs_trans_add_item(tp, (xfs_log_item_t*)bip); | ||
| 160 | |||
| 161 | /* | ||
| 162 | * Initialize b_fsprivate2 so we can find it with incore_match() | ||
| 163 | * above. | ||
| 164 | */ | ||
| 165 | XFS_BUF_SET_FSPRIVATE2(bp, tp); | ||
| 166 | |||
| 167 | trace_xfs_trans_get_buf(bip); | ||
| 168 | return (bp); | 196 | return (bp); | 
| 169 | } | 197 | } | 
| 170 | 198 | ||
| @@ -209,44 +237,11 @@ xfs_trans_getsb(xfs_trans_t *tp, | |||
| 209 | } | 237 | } | 
| 210 | 238 | ||
| 211 | bp = xfs_getsb(mp, flags); | 239 | bp = xfs_getsb(mp, flags); | 
| 212 | if (bp == NULL) { | 240 | if (bp == NULL) | 
| 213 | return NULL; | 241 | return NULL; | 
| 214 | } | ||
| 215 | |||
| 216 | /* | ||
| 217 | * The xfs_buf_log_item pointer is stored in b_fsprivate. If | ||
| 218 | * it doesn't have one yet, then allocate one and initialize it. | ||
| 219 | * The checks to see if one is there are in xfs_buf_item_init(). | ||
| 220 | */ | ||
| 221 | xfs_buf_item_init(bp, mp); | ||
| 222 | |||
| 223 | /* | ||
| 224 | * Set the recursion count for the buffer within this transaction | ||
| 225 | * to 0. | ||
| 226 | */ | ||
| 227 | bip = XFS_BUF_FSPRIVATE(bp, xfs_buf_log_item_t*); | ||
| 228 | ASSERT(!(bip->bli_flags & XFS_BLI_STALE)); | ||
| 229 | ASSERT(!(bip->bli_format.blf_flags & XFS_BLI_CANCEL)); | ||
| 230 | ASSERT(!(bip->bli_flags & XFS_BLI_LOGGED)); | ||
| 231 | bip->bli_recur = 0; | ||
| 232 | |||
| 233 | /* | ||
| 234 | * Take a reference for this transaction on the buf item. | ||
| 235 | */ | ||
| 236 | atomic_inc(&bip->bli_refcount); | ||
| 237 | |||
| 238 | /* | ||
| 239 | * Get a log_item_desc to point at the new item. | ||
| 240 | */ | ||
| 241 | (void) xfs_trans_add_item(tp, (xfs_log_item_t*)bip); | ||
| 242 | |||
| 243 | /* | ||
| 244 | * Initialize b_fsprivate2 so we can find it with incore_match() | ||
| 245 | * above. | ||
| 246 | */ | ||
| 247 | XFS_BUF_SET_FSPRIVATE2(bp, tp); | ||
| 248 | 242 | ||
| 249 | trace_xfs_trans_getsb(bip); | 243 | _xfs_trans_bjoin(tp, bp, 1); | 
| 244 | trace_xfs_trans_getsb(bp->b_fspriv); | ||
| 250 | return (bp); | 245 | return (bp); | 
| 251 | } | 246 | } | 
| 252 | 247 | ||
| @@ -290,15 +285,15 @@ xfs_trans_read_buf( | |||
| 290 | int error; | 285 | int error; | 
| 291 | 286 | ||
| 292 | if (flags == 0) | 287 | if (flags == 0) | 
| 293 | flags = XFS_BUF_LOCK | XFS_BUF_MAPPED; | 288 | flags = XBF_LOCK | XBF_MAPPED; | 
| 294 | 289 | ||
| 295 | /* | 290 | /* | 
| 296 | * Default to a normal get_buf() call if the tp is NULL. | 291 | * Default to a normal get_buf() call if the tp is NULL. | 
| 297 | */ | 292 | */ | 
| 298 | if (tp == NULL) { | 293 | if (tp == NULL) { | 
| 299 | bp = xfs_buf_read(target, blkno, len, flags | BUF_BUSY); | 294 | bp = xfs_buf_read(target, blkno, len, flags | XBF_DONT_BLOCK); | 
| 300 | if (!bp) | 295 | if (!bp) | 
| 301 | return (flags & XFS_BUF_TRYLOCK) ? | 296 | return (flags & XBF_TRYLOCK) ? | 
| 302 | EAGAIN : XFS_ERROR(ENOMEM); | 297 | EAGAIN : XFS_ERROR(ENOMEM); | 
| 303 | 298 | ||
| 304 | if (XFS_BUF_GETERROR(bp) != 0) { | 299 | if (XFS_BUF_GETERROR(bp) != 0) { | 
| @@ -385,14 +380,14 @@ xfs_trans_read_buf( | |||
| 385 | } | 380 | } | 
| 386 | 381 | ||
| 387 | /* | 382 | /* | 
| 388 | * We always specify the BUF_BUSY flag within a transaction so | 383 | * We always specify the XBF_DONT_BLOCK flag within a transaction | 
| 389 | * that get_buf does not try to push out a delayed write buffer | 384 | * so that get_buf does not try to push out a delayed write buffer | 
| 390 | * which might cause another transaction to take place (if the | 385 | * which might cause another transaction to take place (if the | 
| 391 | * buffer was delayed alloc). Such recursive transactions can | 386 | * buffer was delayed alloc). Such recursive transactions can | 
| 392 | * easily deadlock with our current transaction as well as cause | 387 | * easily deadlock with our current transaction as well as cause | 
| 393 | * us to run out of stack space. | 388 | * us to run out of stack space. | 
| 394 | */ | 389 | */ | 
| 395 | bp = xfs_buf_read(target, blkno, len, flags | BUF_BUSY); | 390 | bp = xfs_buf_read(target, blkno, len, flags | XBF_DONT_BLOCK); | 
| 396 | if (bp == NULL) { | 391 | if (bp == NULL) { | 
| 397 | *bpp = NULL; | 392 | *bpp = NULL; | 
| 398 | return 0; | 393 | return 0; | 
| @@ -424,40 +419,9 @@ xfs_trans_read_buf( | |||
| 424 | if (XFS_FORCED_SHUTDOWN(mp)) | 419 | if (XFS_FORCED_SHUTDOWN(mp)) | 
| 425 | goto shutdown_abort; | 420 | goto shutdown_abort; | 
| 426 | 421 | ||
| 427 | /* | 422 | _xfs_trans_bjoin(tp, bp, 1); | 
| 428 | * The xfs_buf_log_item pointer is stored in b_fsprivate. If | 423 | trace_xfs_trans_read_buf(bp->b_fspriv); | 
| 429 | * it doesn't have one yet, then allocate one and initialize it. | ||
| 430 | * The checks to see if one is there are in xfs_buf_item_init(). | ||
| 431 | */ | ||
| 432 | xfs_buf_item_init(bp, tp->t_mountp); | ||
| 433 | 424 | ||
| 434 | /* | ||
| 435 | * Set the recursion count for the buffer within this transaction | ||
| 436 | * to 0. | ||
| 437 | */ | ||
| 438 | bip = XFS_BUF_FSPRIVATE(bp, xfs_buf_log_item_t*); | ||
| 439 | ASSERT(!(bip->bli_flags & XFS_BLI_STALE)); | ||
| 440 | ASSERT(!(bip->bli_format.blf_flags & XFS_BLI_CANCEL)); | ||
| 441 | ASSERT(!(bip->bli_flags & XFS_BLI_LOGGED)); | ||
| 442 | bip->bli_recur = 0; | ||
| 443 | |||
| 444 | /* | ||
| 445 | * Take a reference for this transaction on the buf item. | ||
| 446 | */ | ||
| 447 | atomic_inc(&bip->bli_refcount); | ||
| 448 | |||
| 449 | /* | ||
| 450 | * Get a log_item_desc to point at the new item. | ||
| 451 | */ | ||
| 452 | (void) xfs_trans_add_item(tp, (xfs_log_item_t*)bip); | ||
| 453 | |||
| 454 | /* | ||
| 455 | * Initialize b_fsprivate2 so we can find it with incore_match() | ||
| 456 | * above. | ||
| 457 | */ | ||
| 458 | XFS_BUF_SET_FSPRIVATE2(bp, tp); | ||
| 459 | |||
| 460 | trace_xfs_trans_read_buf(bip); | ||
| 461 | *bpp = bp; | 425 | *bpp = bp; | 
| 462 | return 0; | 426 | return 0; | 
| 463 | 427 | ||
| @@ -472,8 +436,8 @@ shutdown_abort: | |||
| 472 | if (XFS_BUF_ISSTALE(bp) && XFS_BUF_ISDELAYWRITE(bp)) | 436 | if (XFS_BUF_ISSTALE(bp) && XFS_BUF_ISDELAYWRITE(bp)) | 
| 473 | cmn_err(CE_NOTE, "about to pop assert, bp == 0x%p", bp); | 437 | cmn_err(CE_NOTE, "about to pop assert, bp == 0x%p", bp); | 
| 474 | #endif | 438 | #endif | 
| 475 | ASSERT((XFS_BUF_BFLAGS(bp) & (XFS_B_STALE|XFS_B_DELWRI)) != | 439 | ASSERT((XFS_BUF_BFLAGS(bp) & (XBF_STALE|XBF_DELWRI)) != | 
| 476 | (XFS_B_STALE|XFS_B_DELWRI)); | 440 | (XBF_STALE|XBF_DELWRI)); | 
| 477 | 441 | ||
| 478 | trace_xfs_trans_read_buf_shut(bp, _RET_IP_); | 442 | trace_xfs_trans_read_buf_shut(bp, _RET_IP_); | 
| 479 | xfs_buf_relse(bp); | 443 | xfs_buf_relse(bp); | 
| @@ -622,53 +586,6 @@ xfs_trans_brelse(xfs_trans_t *tp, | |||
| 622 | } | 586 | } | 
| 623 | 587 | ||
| 624 | /* | 588 | /* | 
| 625 | * Add the locked buffer to the transaction. | ||
| 626 | * The buffer must be locked, and it cannot be associated with any | ||
| 627 | * transaction. | ||
| 628 | * | ||
| 629 | * If the buffer does not yet have a buf log item associated with it, | ||
| 630 | * then allocate one for it. Then add the buf item to the transaction. | ||
| 631 | */ | ||
| 632 | void | ||
| 633 | xfs_trans_bjoin(xfs_trans_t *tp, | ||
| 634 | xfs_buf_t *bp) | ||
| 635 | { | ||
| 636 | xfs_buf_log_item_t *bip; | ||
| 637 | |||
| 638 | ASSERT(XFS_BUF_ISBUSY(bp)); | ||
| 639 | ASSERT(XFS_BUF_FSPRIVATE2(bp, void *) == NULL); | ||
| 640 | |||
| 641 | /* | ||
| 642 | * The xfs_buf_log_item pointer is stored in b_fsprivate. If | ||
| 643 | * it doesn't have one yet, then allocate one and initialize it. | ||
| 644 | * The checks to see if one is there are in xfs_buf_item_init(). | ||
| 645 | */ | ||
| 646 | xfs_buf_item_init(bp, tp->t_mountp); | ||
| 647 | bip = XFS_BUF_FSPRIVATE(bp, xfs_buf_log_item_t *); | ||
| 648 | ASSERT(!(bip->bli_flags & XFS_BLI_STALE)); | ||
| 649 | ASSERT(!(bip->bli_format.blf_flags & XFS_BLI_CANCEL)); | ||
| 650 | ASSERT(!(bip->bli_flags & XFS_BLI_LOGGED)); | ||
| 651 | |||
| 652 | /* | ||
| 653 | * Take a reference for this transaction on the buf item. | ||
| 654 | */ | ||
| 655 | atomic_inc(&bip->bli_refcount); | ||
| 656 | |||
| 657 | /* | ||
| 658 | * Get a log_item_desc to point at the new item. | ||
| 659 | */ | ||
| 660 | (void) xfs_trans_add_item(tp, (xfs_log_item_t *)bip); | ||
| 661 | |||
| 662 | /* | ||
| 663 | * Initialize b_fsprivate2 so we can find it with incore_match() | ||
| 664 | * in xfs_trans_get_buf() and friends above. | ||
| 665 | */ | ||
| 666 | XFS_BUF_SET_FSPRIVATE2(bp, tp); | ||
| 667 | |||
| 668 | trace_xfs_trans_bjoin(bip); | ||
| 669 | } | ||
| 670 | |||
| 671 | /* | ||
| 672 | * Mark the buffer as not needing to be unlocked when the buf item's | 589 | * Mark the buffer as not needing to be unlocked when the buf item's | 
| 673 | * IOP_UNLOCK() routine is called. The buffer must already be locked | 590 | * IOP_UNLOCK() routine is called. The buffer must already be locked | 
| 674 | * and associated with the given transaction. | 591 | * and associated with the given transaction. | 
diff --git a/fs/xfs/xfs_types.h b/fs/xfs/xfs_types.h index d725428c9df6..b09904555d07 100644 --- a/fs/xfs/xfs_types.h +++ b/fs/xfs/xfs_types.h  | |||
| @@ -151,8 +151,8 @@ typedef enum { | |||
| 151 | } xfs_btnum_t; | 151 | } xfs_btnum_t; | 
| 152 | 152 | ||
| 153 | struct xfs_name { | 153 | struct xfs_name { | 
| 154 | const char *name; | 154 | const unsigned char *name; | 
| 155 | int len; | 155 | int len; | 
| 156 | }; | 156 | }; | 
| 157 | 157 | ||
| 158 | #endif /* __XFS_TYPES_H__ */ | 158 | #endif /* __XFS_TYPES_H__ */ | 
diff --git a/fs/xfs/xfs_vnodeops.c b/fs/xfs/xfs_vnodeops.c index 6f268756bf36..9d376be0ea38 100644 --- a/fs/xfs/xfs_vnodeops.c +++ b/fs/xfs/xfs_vnodeops.c  | |||
| @@ -256,7 +256,7 @@ xfs_setattr( | |||
| 256 | iattr->ia_size > ip->i_d.di_size) { | 256 | iattr->ia_size > ip->i_d.di_size) { | 
| 257 | code = xfs_flush_pages(ip, | 257 | code = xfs_flush_pages(ip, | 
| 258 | ip->i_d.di_size, iattr->ia_size, | 258 | ip->i_d.di_size, iattr->ia_size, | 
| 259 | XFS_B_ASYNC, FI_NONE); | 259 | XBF_ASYNC, FI_NONE); | 
| 260 | } | 260 | } | 
| 261 | 261 | ||
| 262 | /* wait for all I/O to complete */ | 262 | /* wait for all I/O to complete */ | 
| @@ -584,116 +584,6 @@ xfs_readlink( | |||
| 584 | } | 584 | } | 
| 585 | 585 | ||
| 586 | /* | 586 | /* | 
| 587 | * xfs_fsync | ||
| 588 | * | ||
| 589 | * This is called to sync the inode and its data out to disk. We need to hold | ||
| 590 | * the I/O lock while flushing the data, and the inode lock while flushing the | ||
| 591 | * inode. The inode lock CANNOT be held while flushing the data, so acquire | ||
| 592 | * after we're done with that. | ||
| 593 | */ | ||
| 594 | int | ||
| 595 | xfs_fsync( | ||
| 596 | xfs_inode_t *ip) | ||
| 597 | { | ||
| 598 | xfs_trans_t *tp; | ||
| 599 | int error = 0; | ||
| 600 | int log_flushed = 0, changed = 1; | ||
| 601 | |||
| 602 | xfs_itrace_entry(ip); | ||
| 603 | |||
| 604 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) | ||
| 605 | return XFS_ERROR(EIO); | ||
| 606 | |||
| 607 | /* | ||
| 608 | * We always need to make sure that the required inode state is safe on | ||
| 609 | * disk. The inode might be clean but we still might need to force the | ||
| 610 | * log because of committed transactions that haven't hit the disk yet. | ||
| 611 | * Likewise, there could be unflushed non-transactional changes to the | ||
| 612 | * inode core that have to go to disk and this requires us to issue | ||
| 613 | * a synchronous transaction to capture these changes correctly. | ||
| 614 | * | ||
| 615 | * This code relies on the assumption that if the update_* fields | ||
| 616 | * of the inode are clear and the inode is unpinned then it is clean | ||
| 617 | * and no action is required. | ||
| 618 | */ | ||
| 619 | xfs_ilock(ip, XFS_ILOCK_SHARED); | ||
| 620 | |||
| 621 | if (!ip->i_update_core) { | ||
| 622 | /* | ||
| 623 | * Timestamps/size haven't changed since last inode flush or | ||
| 624 | * inode transaction commit. That means either nothing got | ||
| 625 | * written or a transaction committed which caught the updates. | ||
| 626 | * If the latter happened and the transaction hasn't hit the | ||
| 627 | * disk yet, the inode will be still be pinned. If it is, | ||
| 628 | * force the log. | ||
| 629 | */ | ||
| 630 | |||
| 631 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | ||
| 632 | |||
| 633 | if (xfs_ipincount(ip)) { | ||
| 634 | error = _xfs_log_force(ip->i_mount, (xfs_lsn_t)0, | ||
| 635 | XFS_LOG_FORCE | XFS_LOG_SYNC, | ||
| 636 | &log_flushed); | ||
| 637 | } else { | ||
| 638 | /* | ||
| 639 | * If the inode is not pinned and nothing has changed | ||
| 640 | * we don't need to flush the cache. | ||
| 641 | */ | ||
| 642 | changed = 0; | ||
| 643 | } | ||
| 644 | } else { | ||
| 645 | /* | ||
| 646 | * Kick off a transaction to log the inode core to get the | ||
| 647 | * updates. The sync transaction will also force the log. | ||
| 648 | */ | ||
| 649 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | ||
| 650 | tp = xfs_trans_alloc(ip->i_mount, XFS_TRANS_FSYNC_TS); | ||
| 651 | error = xfs_trans_reserve(tp, 0, | ||
| 652 | XFS_FSYNC_TS_LOG_RES(ip->i_mount), 0, 0, 0); | ||
| 653 | if (error) { | ||
| 654 | xfs_trans_cancel(tp, 0); | ||
| 655 | return error; | ||
| 656 | } | ||
| 657 | xfs_ilock(ip, XFS_ILOCK_EXCL); | ||
| 658 | |||
| 659 | /* | ||
| 660 | * Note - it's possible that we might have pushed ourselves out | ||
| 661 | * of the way during trans_reserve which would flush the inode. | ||
| 662 | * But there's no guarantee that the inode buffer has actually | ||
| 663 | * gone out yet (it's delwri). Plus the buffer could be pinned | ||
| 664 | * anyway if it's part of an inode in another recent | ||
| 665 | * transaction. So we play it safe and fire off the | ||
| 666 | * transaction anyway. | ||
| 667 | */ | ||
| 668 | xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL); | ||
| 669 | xfs_trans_ihold(tp, ip); | ||
| 670 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); | ||
| 671 | xfs_trans_set_sync(tp); | ||
| 672 | error = _xfs_trans_commit(tp, 0, &log_flushed); | ||
| 673 | |||
| 674 | xfs_iunlock(ip, XFS_ILOCK_EXCL); | ||
| 675 | } | ||
| 676 | |||
| 677 | if ((ip->i_mount->m_flags & XFS_MOUNT_BARRIER) && changed) { | ||
| 678 | /* | ||
| 679 | * If the log write didn't issue an ordered tag we need | ||
| 680 | * to flush the disk cache for the data device now. | ||
| 681 | */ | ||
| 682 | if (!log_flushed) | ||
| 683 | xfs_blkdev_issue_flush(ip->i_mount->m_ddev_targp); | ||
| 684 | |||
| 685 | /* | ||
| 686 | * If this inode is on the RT dev we need to flush that | ||
| 687 | * cache as well. | ||
| 688 | */ | ||
| 689 | if (XFS_IS_REALTIME_INODE(ip)) | ||
| 690 | xfs_blkdev_issue_flush(ip->i_mount->m_rtdev_targp); | ||
| 691 | } | ||
| 692 | |||
| 693 | return error; | ||
| 694 | } | ||
| 695 | |||
| 696 | /* | ||
| 697 | * Flags for xfs_free_eofblocks | 587 | * Flags for xfs_free_eofblocks | 
| 698 | */ | 588 | */ | 
| 699 | #define XFS_FREE_EOF_TRYLOCK (1<<0) | 589 | #define XFS_FREE_EOF_TRYLOCK (1<<0) | 
| @@ -1096,7 +986,7 @@ xfs_release( | |||
| 1096 | */ | 986 | */ | 
| 1097 | truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED); | 987 | truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED); | 
| 1098 | if (truncated && VN_DIRTY(VFS_I(ip)) && ip->i_delayed_blks > 0) | 988 | if (truncated && VN_DIRTY(VFS_I(ip)) && ip->i_delayed_blks > 0) | 
| 1099 | xfs_flush_pages(ip, 0, -1, XFS_B_ASYNC, FI_NONE); | 989 | xfs_flush_pages(ip, 0, -1, XBF_ASYNC, FI_NONE); | 
| 1100 | } | 990 | } | 
| 1101 | 991 | ||
| 1102 | if (ip->i_d.di_nlink != 0) { | 992 | if (ip->i_d.di_nlink != 0) { | 
| @@ -2199,7 +2089,8 @@ xfs_symlink( | |||
| 2199 | if (DM_EVENT_ENABLED(dp, DM_EVENT_SYMLINK)) { | 2089 | if (DM_EVENT_ENABLED(dp, DM_EVENT_SYMLINK)) { | 
| 2200 | error = XFS_SEND_NAMESP(mp, DM_EVENT_SYMLINK, dp, | 2090 | error = XFS_SEND_NAMESP(mp, DM_EVENT_SYMLINK, dp, | 
| 2201 | DM_RIGHT_NULL, NULL, DM_RIGHT_NULL, | 2091 | DM_RIGHT_NULL, NULL, DM_RIGHT_NULL, | 
| 2202 | link_name->name, target_path, 0, 0, 0); | 2092 | link_name->name, | 
| 2093 | (unsigned char *)target_path, 0, 0, 0); | ||
| 2203 | if (error) | 2094 | if (error) | 
| 2204 | return error; | 2095 | return error; | 
| 2205 | } | 2096 | } | 
| @@ -2395,7 +2286,8 @@ std_return: | |||
| 2395 | dp, DM_RIGHT_NULL, | 2286 | dp, DM_RIGHT_NULL, | 
| 2396 | error ? NULL : ip, | 2287 | error ? NULL : ip, | 
| 2397 | DM_RIGHT_NULL, link_name->name, | 2288 | DM_RIGHT_NULL, link_name->name, | 
| 2398 | target_path, 0, error, 0); | 2289 | (unsigned char *)target_path, | 
| 2290 | 0, error, 0); | ||
| 2399 | } | 2291 | } | 
| 2400 | 2292 | ||
| 2401 | if (!error) | 2293 | if (!error) | 
diff --git a/fs/xfs/xfs_vnodeops.h b/fs/xfs/xfs_vnodeops.h index 167a467403a5..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, | 
| @@ -43,25 +42,13 @@ int xfs_change_file_space(struct xfs_inode *ip, int cmd, | |||
| 43 | int xfs_rename(struct xfs_inode *src_dp, struct xfs_name *src_name, | 42 | int xfs_rename(struct xfs_inode *src_dp, struct xfs_name *src_name, | 
| 44 | struct xfs_inode *src_ip, struct xfs_inode *target_dp, | 43 | struct xfs_inode *src_ip, struct xfs_inode *target_dp, | 
| 45 | struct xfs_name *target_name, struct xfs_inode *target_ip); | 44 | struct xfs_name *target_name, struct xfs_inode *target_ip); | 
| 46 | int xfs_attr_get(struct xfs_inode *ip, const char *name, char *value, | 45 | int xfs_attr_get(struct xfs_inode *ip, const unsigned char *name, | 
| 47 | int *valuelenp, int flags); | 46 | unsigned char *value, int *valuelenp, int flags); | 
| 48 | int xfs_attr_set(struct xfs_inode *dp, const char *name, char *value, | 47 | int xfs_attr_set(struct xfs_inode *dp, const unsigned char *name, | 
| 49 | int valuelen, int flags); | 48 | unsigned char *value, int valuelen, int flags); | 
| 50 | int xfs_attr_remove(struct xfs_inode *dp, const 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 */ | 
