| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Nathan Scott | f07c225 | 2006-09-28 10:52:15 +1000 | [diff] [blame] | 2 | * Copyright (c) 2000-2006 Silicon Graphics, Inc. | 
| Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 3 | * All Rights Reserved. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * | 
| Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. | 
|  | 8 | * | 
| Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * | 
| Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ | 
| Vlad Apostolov | 93c189c | 2006-11-11 18:03:49 +1100 | [diff] [blame] | 18 | #include "xfs.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/stddef.h> | 
|  | 20 | #include <linux/errno.h> | 
|  | 21 | #include <linux/slab.h> | 
|  | 22 | #include <linux/pagemap.h> | 
|  | 23 | #include <linux/init.h> | 
|  | 24 | #include <linux/vmalloc.h> | 
|  | 25 | #include <linux/bio.h> | 
|  | 26 | #include <linux/sysctl.h> | 
|  | 27 | #include <linux/proc_fs.h> | 
|  | 28 | #include <linux/workqueue.h> | 
|  | 29 | #include <linux/percpu.h> | 
|  | 30 | #include <linux/blkdev.h> | 
|  | 31 | #include <linux/hash.h> | 
| Christoph Hellwig | 4df08c5 | 2005-09-05 08:34:18 +1000 | [diff] [blame] | 32 | #include <linux/kthread.h> | 
| Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 33 | #include <linux/migrate.h> | 
| Andrew Morton | 3fcfab1 | 2006-10-19 23:28:16 -0700 | [diff] [blame] | 34 | #include <linux/backing-dev.h> | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 35 | #include <linux/freezer.h> | 
| Dave Chinner | 089716a | 2010-01-26 15:13:25 +1100 | [diff] [blame] | 36 | #include <linux/list_sort.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 |  | 
| Christoph Hellwig | b796313 | 2009-03-03 14:48:37 -0500 | [diff] [blame] | 38 | #include "xfs_sb.h" | 
|  | 39 | #include "xfs_inum.h" | 
|  | 40 | #include "xfs_ag.h" | 
|  | 41 | #include "xfs_dmapi.h" | 
|  | 42 | #include "xfs_mount.h" | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 43 | #include "xfs_trace.h" | 
| Christoph Hellwig | b796313 | 2009-03-03 14:48:37 -0500 | [diff] [blame] | 44 |  | 
| David Chinner | 7989cb8 | 2007-02-10 18:34:56 +1100 | [diff] [blame] | 45 | static kmem_zone_t *xfs_buf_zone; | 
| David Chinner | a6867a6 | 2006-01-11 15:37:58 +1100 | [diff] [blame] | 46 | STATIC int xfsbufd(void *); | 
| Al Viro | 27496a8 | 2005-10-21 03:20:48 -0400 | [diff] [blame] | 47 | STATIC int xfsbufd_wakeup(int, gfp_t); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 48 | STATIC void xfs_buf_delwri_queue(xfs_buf_t *, int); | 
| Rusty Russell | 8e1f936 | 2007-07-17 04:03:17 -0700 | [diff] [blame] | 49 | static struct shrinker xfs_buf_shake = { | 
|  | 50 | .shrink = xfsbufd_wakeup, | 
|  | 51 | .seeks = DEFAULT_SEEKS, | 
|  | 52 | }; | 
| Christoph Hellwig | 23ea403 | 2005-06-21 15:14:01 +1000 | [diff] [blame] | 53 |  | 
| David Chinner | 7989cb8 | 2007-02-10 18:34:56 +1100 | [diff] [blame] | 54 | static struct workqueue_struct *xfslogd_workqueue; | 
| Christoph Hellwig | 0829c36 | 2005-09-02 16:58:49 +1000 | [diff] [blame] | 55 | struct workqueue_struct *xfsdatad_workqueue; | 
| Dave Chinner | c626d17 | 2009-04-06 18:42:11 +0200 | [diff] [blame] | 56 | struct workqueue_struct *xfsconvertd_workqueue; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 58 | #ifdef XFS_BUF_LOCK_TRACKING | 
|  | 59 | # define XB_SET_OWNER(bp)	((bp)->b_last_holder = current->pid) | 
|  | 60 | # define XB_CLEAR_OWNER(bp)	((bp)->b_last_holder = -1) | 
|  | 61 | # define XB_GET_OWNER(bp)	((bp)->b_last_holder) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #else | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 63 | # define XB_SET_OWNER(bp)	do { } while (0) | 
|  | 64 | # define XB_CLEAR_OWNER(bp)	do { } while (0) | 
|  | 65 | # define XB_GET_OWNER(bp)	do { } while (0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | #endif | 
|  | 67 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 68 | #define xb_to_gfp(flags) \ | 
|  | 69 | ((((flags) & XBF_READ_AHEAD) ? __GFP_NORETRY : \ | 
|  | 70 | ((flags) & XBF_DONT_BLOCK) ? GFP_NOFS : GFP_KERNEL) | __GFP_NOWARN) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 72 | #define xb_to_km(flags) \ | 
|  | 73 | (((flags) & XBF_DONT_BLOCK) ? KM_NOFS : KM_SLEEP) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 75 | #define xfs_buf_allocate(flags) \ | 
|  | 76 | kmem_zone_alloc(xfs_buf_zone, xb_to_km(flags)) | 
|  | 77 | #define xfs_buf_deallocate(bp) \ | 
|  | 78 | kmem_zone_free(xfs_buf_zone, (bp)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 |  | 
| James Bottomley | 73c77e2 | 2010-01-25 11:42:24 -0600 | [diff] [blame] | 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 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 102 | *	Page Region interfaces. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | * | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 104 | *	For pages in filesystems where the blocksize is smaller than the | 
|  | 105 | *	pagesize, we use the page->private field (long) to hold a bitmap | 
|  | 106 | * 	of uptodate regions within the page. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | * | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 108 | *	Each such region is "bytes per page / bits per long" bytes long. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | * | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 110 | *	NBPPR == number-of-bytes-per-page-region | 
|  | 111 | *	BTOPR == bytes-to-page-region (rounded up) | 
|  | 112 | *	BTOPRT == bytes-to-page-region-truncated (rounded down) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | */ | 
|  | 114 | #if (BITS_PER_LONG == 32) | 
|  | 115 | #define PRSHIFT		(PAGE_CACHE_SHIFT - 5)	/* (32 == 1<<5) */ | 
|  | 116 | #elif (BITS_PER_LONG == 64) | 
|  | 117 | #define PRSHIFT		(PAGE_CACHE_SHIFT - 6)	/* (64 == 1<<6) */ | 
|  | 118 | #else | 
|  | 119 | #error BITS_PER_LONG must be 32 or 64 | 
|  | 120 | #endif | 
|  | 121 | #define NBPPR		(PAGE_CACHE_SIZE/BITS_PER_LONG) | 
|  | 122 | #define BTOPR(b)	(((unsigned int)(b) + (NBPPR - 1)) >> PRSHIFT) | 
|  | 123 | #define BTOPRT(b)	(((unsigned int)(b) >> PRSHIFT)) | 
|  | 124 |  | 
|  | 125 | STATIC unsigned long | 
|  | 126 | page_region_mask( | 
|  | 127 | size_t		offset, | 
|  | 128 | size_t		length) | 
|  | 129 | { | 
|  | 130 | unsigned long	mask; | 
|  | 131 | int		first, final; | 
|  | 132 |  | 
|  | 133 | first = BTOPR(offset); | 
|  | 134 | final = BTOPRT(offset + length - 1); | 
|  | 135 | first = min(first, final); | 
|  | 136 |  | 
|  | 137 | mask = ~0UL; | 
|  | 138 | mask <<= BITS_PER_LONG - (final - first); | 
|  | 139 | mask >>= BITS_PER_LONG - (final); | 
|  | 140 |  | 
|  | 141 | ASSERT(offset + length <= PAGE_CACHE_SIZE); | 
|  | 142 | ASSERT((final - first) < BITS_PER_LONG && (final - first) >= 0); | 
|  | 143 |  | 
|  | 144 | return mask; | 
|  | 145 | } | 
|  | 146 |  | 
| Christoph Hellwig | b8f82a4 | 2009-11-14 16:17:22 +0000 | [diff] [blame] | 147 | STATIC void | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | set_page_region( | 
|  | 149 | struct page	*page, | 
|  | 150 | size_t		offset, | 
|  | 151 | size_t		length) | 
|  | 152 | { | 
| Hugh Dickins | 4c21e2f | 2005-10-29 18:16:40 -0700 | [diff] [blame] | 153 | set_page_private(page, | 
|  | 154 | page_private(page) | page_region_mask(offset, length)); | 
|  | 155 | if (page_private(page) == ~0UL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | SetPageUptodate(page); | 
|  | 157 | } | 
|  | 158 |  | 
| Christoph Hellwig | b8f82a4 | 2009-11-14 16:17:22 +0000 | [diff] [blame] | 159 | STATIC int | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | test_page_region( | 
|  | 161 | struct page	*page, | 
|  | 162 | size_t		offset, | 
|  | 163 | size_t		length) | 
|  | 164 | { | 
|  | 165 | unsigned long	mask = page_region_mask(offset, length); | 
|  | 166 |  | 
| Hugh Dickins | 4c21e2f | 2005-10-29 18:16:40 -0700 | [diff] [blame] | 167 | return (mask && (page_private(page) & mask) == mask); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | } | 
|  | 169 |  | 
|  | 170 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 171 | *	Internal xfs_buf_t object manipulation | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | */ | 
|  | 173 |  | 
|  | 174 | STATIC void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 175 | _xfs_buf_initialize( | 
|  | 176 | xfs_buf_t		*bp, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | xfs_buftarg_t		*target, | 
| Nathan Scott | 204ab25 | 2006-01-11 20:50:22 +1100 | [diff] [blame] | 178 | xfs_off_t		range_base, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | size_t			range_length, | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 180 | xfs_buf_flags_t		flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | { | 
|  | 182 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 183 | * We don't want certain flags to appear in b_flags. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 185 | flags &= ~(XBF_LOCK|XBF_MAPPED|XBF_DONT_BLOCK|XBF_READ_AHEAD); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 187 | memset(bp, 0, sizeof(xfs_buf_t)); | 
|  | 188 | atomic_set(&bp->b_hold, 1); | 
| David Chinner | b4dd330 | 2008-08-13 16:36:11 +1000 | [diff] [blame] | 189 | init_completion(&bp->b_iowait); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 190 | INIT_LIST_HEAD(&bp->b_list); | 
|  | 191 | INIT_LIST_HEAD(&bp->b_hash_list); | 
|  | 192 | init_MUTEX_LOCKED(&bp->b_sema); /* held, no waiters */ | 
|  | 193 | XB_SET_OWNER(bp); | 
|  | 194 | bp->b_target = target; | 
|  | 195 | bp->b_file_offset = range_base; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | /* | 
|  | 197 | * Set buffer_length and count_desired to the same value initially. | 
|  | 198 | * I/O routines should use count_desired, which will be the same in | 
|  | 199 | * most cases but may be reset (e.g. XFS recovery). | 
|  | 200 | */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 201 | bp->b_buffer_length = bp->b_count_desired = range_length; | 
|  | 202 | bp->b_flags = flags; | 
|  | 203 | bp->b_bn = XFS_BUF_DADDR_NULL; | 
|  | 204 | atomic_set(&bp->b_pin_count, 0); | 
|  | 205 | init_waitqueue_head(&bp->b_waiters); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 207 | XFS_STATS_INC(xb_create); | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 208 |  | 
|  | 209 | trace_xfs_buf_init(bp, _RET_IP_); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | } | 
|  | 211 |  | 
|  | 212 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 213 | *	Allocate a page array capable of holding a specified number | 
|  | 214 | *	of pages, and point the page buf at it. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | */ | 
|  | 216 | STATIC int | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 217 | _xfs_buf_get_pages( | 
|  | 218 | xfs_buf_t		*bp, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | int			page_count, | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 220 | xfs_buf_flags_t		flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | { | 
|  | 222 | /* Make sure that we have a page list */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 223 | if (bp->b_pages == NULL) { | 
|  | 224 | bp->b_offset = xfs_buf_poff(bp->b_file_offset); | 
|  | 225 | bp->b_page_count = page_count; | 
|  | 226 | if (page_count <= XB_PAGES) { | 
|  | 227 | bp->b_pages = bp->b_page_array; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | } else { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 229 | bp->b_pages = kmem_alloc(sizeof(struct page *) * | 
|  | 230 | page_count, xb_to_km(flags)); | 
|  | 231 | if (bp->b_pages == NULL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | return -ENOMEM; | 
|  | 233 | } | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 234 | memset(bp->b_pages, 0, sizeof(struct page *) * page_count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | } | 
|  | 236 | return 0; | 
|  | 237 | } | 
|  | 238 |  | 
|  | 239 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 240 | *	Frees b_pages if it was allocated. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | */ | 
|  | 242 | STATIC void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 243 | _xfs_buf_free_pages( | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | xfs_buf_t	*bp) | 
|  | 245 | { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 246 | if (bp->b_pages != bp->b_page_array) { | 
| Denys Vlasenko | f0e2d93 | 2008-05-19 16:31:57 +1000 | [diff] [blame] | 247 | kmem_free(bp->b_pages); | 
| Dave Chinner | 3fc98b1 | 2009-12-14 23:11:57 +0000 | [diff] [blame] | 248 | bp->b_pages = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | } | 
|  | 250 | } | 
|  | 251 |  | 
|  | 252 | /* | 
|  | 253 | *	Releases the specified buffer. | 
|  | 254 | * | 
|  | 255 | * 	The modification state of any associated pages is left unchanged. | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 256 | * 	The buffer most not be on any hash - use xfs_buf_rele instead for | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | * 	hashed and refcounted buffers | 
|  | 258 | */ | 
|  | 259 | void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 260 | xfs_buf_free( | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | xfs_buf_t		*bp) | 
|  | 262 | { | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 263 | trace_xfs_buf_free(bp, _RET_IP_); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 265 | ASSERT(list_empty(&bp->b_hash_list)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 |  | 
| Christoph Hellwig | 1fa40b0 | 2007-05-14 18:23:50 +1000 | [diff] [blame] | 267 | if (bp->b_flags & (_XBF_PAGE_CACHE|_XBF_PAGES)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | uint		i; | 
|  | 269 |  | 
| James Bottomley | 73c77e2 | 2010-01-25 11:42:24 -0600 | [diff] [blame] | 270 | if (xfs_buf_is_vmapped(bp)) | 
| Alex Elder | 8a262e5 | 2010-03-16 18:55:56 +0000 | [diff] [blame] | 271 | vm_unmap_ram(bp->b_addr - bp->b_offset, | 
|  | 272 | bp->b_page_count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 |  | 
| Nathan Scott | 948ecdb | 2006-09-28 11:03:13 +1000 | [diff] [blame] | 274 | for (i = 0; i < bp->b_page_count; i++) { | 
|  | 275 | struct page	*page = bp->b_pages[i]; | 
|  | 276 |  | 
| Christoph Hellwig | 1fa40b0 | 2007-05-14 18:23:50 +1000 | [diff] [blame] | 277 | if (bp->b_flags & _XBF_PAGE_CACHE) | 
|  | 278 | ASSERT(!PagePrivate(page)); | 
| Nathan Scott | 948ecdb | 2006-09-28 11:03:13 +1000 | [diff] [blame] | 279 | page_cache_release(page); | 
|  | 280 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | } | 
| Dave Chinner | 3fc98b1 | 2009-12-14 23:11:57 +0000 | [diff] [blame] | 282 | _xfs_buf_free_pages(bp); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 283 | xfs_buf_deallocate(bp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | } | 
|  | 285 |  | 
|  | 286 | /* | 
|  | 287 | *	Finds all pages for buffer in question and builds it's page list. | 
|  | 288 | */ | 
|  | 289 | STATIC int | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 290 | _xfs_buf_lookup_pages( | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | xfs_buf_t		*bp, | 
|  | 292 | uint			flags) | 
|  | 293 | { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 294 | struct address_space	*mapping = bp->b_target->bt_mapping; | 
|  | 295 | size_t			blocksize = bp->b_target->bt_bsize; | 
|  | 296 | size_t			size = bp->b_count_desired; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | size_t			nbytes, offset; | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 298 | gfp_t			gfp_mask = xb_to_gfp(flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | unsigned short		page_count, i; | 
|  | 300 | pgoff_t			first; | 
| Nathan Scott | 204ab25 | 2006-01-11 20:50:22 +1100 | [diff] [blame] | 301 | xfs_off_t		end; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | int			error; | 
|  | 303 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 304 | end = bp->b_file_offset + bp->b_buffer_length; | 
|  | 305 | page_count = xfs_buf_btoc(end) - xfs_buf_btoct(bp->b_file_offset); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 307 | error = _xfs_buf_get_pages(bp, page_count, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | if (unlikely(error)) | 
|  | 309 | return error; | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 310 | bp->b_flags |= _XBF_PAGE_CACHE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 312 | offset = bp->b_offset; | 
|  | 313 | first = bp->b_file_offset >> PAGE_CACHE_SHIFT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 315 | for (i = 0; i < bp->b_page_count; i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | struct page	*page; | 
|  | 317 | uint		retries = 0; | 
|  | 318 |  | 
|  | 319 | retry: | 
|  | 320 | page = find_or_create_page(mapping, first + i, gfp_mask); | 
|  | 321 | if (unlikely(page == NULL)) { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 322 | if (flags & XBF_READ_AHEAD) { | 
|  | 323 | bp->b_page_count = i; | 
| Christoph Hellwig | 6ab455e | 2008-05-19 16:34:42 +1000 | [diff] [blame] | 324 | for (i = 0; i < bp->b_page_count; i++) | 
|  | 325 | unlock_page(bp->b_pages[i]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | return -ENOMEM; | 
|  | 327 | } | 
|  | 328 |  | 
|  | 329 | /* | 
|  | 330 | * This could deadlock. | 
|  | 331 | * | 
|  | 332 | * But until all the XFS lowlevel code is revamped to | 
|  | 333 | * handle buffer allocation failures we can't do much. | 
|  | 334 | */ | 
|  | 335 | if (!(++retries % 100)) | 
|  | 336 | printk(KERN_ERR | 
|  | 337 | "XFS: possible memory allocation " | 
|  | 338 | "deadlock in %s (mode:0x%x)\n", | 
| Harvey Harrison | 34a622b | 2008-04-10 12:19:21 +1000 | [diff] [blame] | 339 | __func__, gfp_mask); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 341 | XFS_STATS_INC(xb_page_retries); | 
| Christoph Hellwig | 23ea403 | 2005-06-21 15:14:01 +1000 | [diff] [blame] | 342 | xfsbufd_wakeup(0, gfp_mask); | 
| Jens Axboe | 8aa7e84 | 2009-07-09 14:52:32 +0200 | [diff] [blame] | 343 | congestion_wait(BLK_RW_ASYNC, HZ/50); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | goto retry; | 
|  | 345 | } | 
|  | 346 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 347 | XFS_STATS_INC(xb_page_found); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 |  | 
|  | 349 | nbytes = min_t(size_t, size, PAGE_CACHE_SIZE - offset); | 
|  | 350 | size -= nbytes; | 
|  | 351 |  | 
| Nathan Scott | 948ecdb | 2006-09-28 11:03:13 +1000 | [diff] [blame] | 352 | ASSERT(!PagePrivate(page)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | if (!PageUptodate(page)) { | 
|  | 354 | page_count--; | 
| Christoph Hellwig | 6ab455e | 2008-05-19 16:34:42 +1000 | [diff] [blame] | 355 | if (blocksize >= PAGE_CACHE_SIZE) { | 
|  | 356 | if (flags & XBF_READ) | 
|  | 357 | bp->b_flags |= _XBF_PAGE_LOCKED; | 
|  | 358 | } else if (!PagePrivate(page)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | if (test_page_region(page, offset, nbytes)) | 
|  | 360 | page_count++; | 
|  | 361 | } | 
|  | 362 | } | 
|  | 363 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 364 | bp->b_pages[i] = page; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | offset = 0; | 
|  | 366 | } | 
|  | 367 |  | 
| Christoph Hellwig | 6ab455e | 2008-05-19 16:34:42 +1000 | [diff] [blame] | 368 | if (!(bp->b_flags & _XBF_PAGE_LOCKED)) { | 
|  | 369 | for (i = 0; i < bp->b_page_count; i++) | 
|  | 370 | unlock_page(bp->b_pages[i]); | 
|  | 371 | } | 
|  | 372 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 373 | if (page_count == bp->b_page_count) | 
|  | 374 | bp->b_flags |= XBF_DONE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | return error; | 
|  | 377 | } | 
|  | 378 |  | 
|  | 379 | /* | 
|  | 380 | *	Map buffer into kernel address-space if nessecary. | 
|  | 381 | */ | 
|  | 382 | STATIC int | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 383 | _xfs_buf_map_pages( | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | xfs_buf_t		*bp, | 
|  | 385 | uint			flags) | 
|  | 386 | { | 
|  | 387 | /* A single page buffer is always mappable */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 388 | if (bp->b_page_count == 1) { | 
|  | 389 | bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset; | 
|  | 390 | bp->b_flags |= XBF_MAPPED; | 
|  | 391 | } else if (flags & XBF_MAPPED) { | 
| Alex Elder | 8a262e5 | 2010-03-16 18:55:56 +0000 | [diff] [blame] | 392 | bp->b_addr = vm_map_ram(bp->b_pages, bp->b_page_count, | 
|  | 393 | -1, PAGE_KERNEL); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 394 | if (unlikely(bp->b_addr == NULL)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | return -ENOMEM; | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 396 | bp->b_addr += bp->b_offset; | 
|  | 397 | bp->b_flags |= XBF_MAPPED; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | } | 
|  | 399 |  | 
|  | 400 | return 0; | 
|  | 401 | } | 
|  | 402 |  | 
|  | 403 | /* | 
|  | 404 | *	Finding and Reading Buffers | 
|  | 405 | */ | 
|  | 406 |  | 
|  | 407 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 408 | *	Look up, and creates if absent, a lockable buffer for | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | *	a given range of an inode.  The buffer is returned | 
|  | 410 | *	locked.	 If other overlapping buffers exist, they are | 
|  | 411 | *	released before the new buffer is created and locked, | 
|  | 412 | *	which may imply that this call will block until those buffers | 
|  | 413 | *	are unlocked.  No I/O is implied by this call. | 
|  | 414 | */ | 
|  | 415 | xfs_buf_t * | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 416 | _xfs_buf_find( | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | xfs_buftarg_t		*btp,	/* block device target		*/ | 
| Nathan Scott | 204ab25 | 2006-01-11 20:50:22 +1100 | [diff] [blame] | 418 | xfs_off_t		ioff,	/* starting offset of range	*/ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | size_t			isize,	/* length of range		*/ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 420 | xfs_buf_flags_t		flags, | 
|  | 421 | xfs_buf_t		*new_bp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | { | 
| Nathan Scott | 204ab25 | 2006-01-11 20:50:22 +1100 | [diff] [blame] | 423 | xfs_off_t		range_base; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | size_t			range_length; | 
|  | 425 | xfs_bufhash_t		*hash; | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 426 | xfs_buf_t		*bp, *n; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 |  | 
|  | 428 | range_base = (ioff << BBSHIFT); | 
|  | 429 | range_length = (isize << BBSHIFT); | 
|  | 430 |  | 
|  | 431 | /* Check for IOs smaller than the sector size / not sector aligned */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 432 | ASSERT(!(range_length < (1 << btp->bt_sshift))); | 
| Nathan Scott | 204ab25 | 2006-01-11 20:50:22 +1100 | [diff] [blame] | 433 | ASSERT(!(range_base & (xfs_off_t)btp->bt_smask)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 |  | 
|  | 435 | hash = &btp->bt_hash[hash_long((unsigned long)ioff, btp->bt_hashshift)]; | 
|  | 436 |  | 
|  | 437 | spin_lock(&hash->bh_lock); | 
|  | 438 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 439 | list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) { | 
|  | 440 | ASSERT(btp == bp->b_target); | 
|  | 441 | if (bp->b_file_offset == range_base && | 
|  | 442 | bp->b_buffer_length == range_length) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 444 | * If we look at something, bring it to the | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | * front of the list for next time. | 
|  | 446 | */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 447 | atomic_inc(&bp->b_hold); | 
|  | 448 | list_move(&bp->b_hash_list, &hash->bh_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | goto found; | 
|  | 450 | } | 
|  | 451 | } | 
|  | 452 |  | 
|  | 453 | /* No match found */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 454 | if (new_bp) { | 
|  | 455 | _xfs_buf_initialize(new_bp, btp, range_base, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | range_length, flags); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 457 | new_bp->b_hash = hash; | 
|  | 458 | list_add(&new_bp->b_hash_list, &hash->bh_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | } else { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 460 | XFS_STATS_INC(xb_miss_locked); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | } | 
|  | 462 |  | 
|  | 463 | spin_unlock(&hash->bh_lock); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 464 | return new_bp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 |  | 
|  | 466 | found: | 
|  | 467 | spin_unlock(&hash->bh_lock); | 
|  | 468 |  | 
|  | 469 | /* Attempt to get the semaphore without sleeping, | 
|  | 470 | * if this does not work then we need to drop the | 
|  | 471 | * spinlock and do a hard attempt on the semaphore. | 
|  | 472 | */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 473 | if (down_trylock(&bp->b_sema)) { | 
|  | 474 | if (!(flags & XBF_TRYLOCK)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | /* wait for buffer ownership */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 476 | xfs_buf_lock(bp); | 
|  | 477 | XFS_STATS_INC(xb_get_locked_waited); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | } else { | 
|  | 479 | /* We asked for a trylock and failed, no need | 
|  | 480 | * to look at file offset and length here, we | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 481 | * know that this buffer at least overlaps our | 
|  | 482 | * buffer and is locked, therefore our buffer | 
|  | 483 | * either does not exist, or is this buffer. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 485 | xfs_buf_rele(bp); | 
|  | 486 | XFS_STATS_INC(xb_busy_locked); | 
|  | 487 | return NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | } | 
|  | 489 | } else { | 
|  | 490 | /* trylock worked */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 491 | XB_SET_OWNER(bp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | } | 
|  | 493 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 494 | if (bp->b_flags & XBF_STALE) { | 
|  | 495 | ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0); | 
|  | 496 | bp->b_flags &= XBF_MAPPED; | 
| David Chinner | 2f92658 | 2005-09-05 08:33:35 +1000 | [diff] [blame] | 497 | } | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 498 |  | 
|  | 499 | trace_xfs_buf_find(bp, flags, _RET_IP_); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 500 | XFS_STATS_INC(xb_get_locked); | 
|  | 501 | return bp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | } | 
|  | 503 |  | 
|  | 504 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 505 | *	Assembles a buffer covering the specified range. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | *	Storage in memory for all portions of the buffer will be allocated, | 
|  | 507 | *	although backing storage may not be. | 
|  | 508 | */ | 
|  | 509 | xfs_buf_t * | 
| Christoph Hellwig | 6ad112b | 2009-11-24 18:02:23 +0000 | [diff] [blame] | 510 | xfs_buf_get( | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | xfs_buftarg_t		*target,/* target for buffer		*/ | 
| Nathan Scott | 204ab25 | 2006-01-11 20:50:22 +1100 | [diff] [blame] | 512 | xfs_off_t		ioff,	/* starting offset of range	*/ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | size_t			isize,	/* length of range		*/ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 514 | xfs_buf_flags_t		flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 516 | xfs_buf_t		*bp, *new_bp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | int			error = 0, i; | 
|  | 518 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 519 | new_bp = xfs_buf_allocate(flags); | 
|  | 520 | if (unlikely(!new_bp)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | return NULL; | 
|  | 522 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 523 | bp = _xfs_buf_find(target, ioff, isize, flags, new_bp); | 
|  | 524 | if (bp == new_bp) { | 
|  | 525 | error = _xfs_buf_lookup_pages(bp, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | if (error) | 
|  | 527 | goto no_buffer; | 
|  | 528 | } else { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 529 | xfs_buf_deallocate(new_bp); | 
|  | 530 | if (unlikely(bp == NULL)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | return NULL; | 
|  | 532 | } | 
|  | 533 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 534 | for (i = 0; i < bp->b_page_count; i++) | 
|  | 535 | mark_page_accessed(bp->b_pages[i]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 537 | if (!(bp->b_flags & XBF_MAPPED)) { | 
|  | 538 | error = _xfs_buf_map_pages(bp, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | if (unlikely(error)) { | 
|  | 540 | printk(KERN_WARNING "%s: failed to map pages\n", | 
| Harvey Harrison | 34a622b | 2008-04-10 12:19:21 +1000 | [diff] [blame] | 541 | __func__); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | goto no_buffer; | 
|  | 543 | } | 
|  | 544 | } | 
|  | 545 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 546 | XFS_STATS_INC(xb_get); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 |  | 
|  | 548 | /* | 
|  | 549 | * Always fill in the block number now, the mapped cases can do | 
|  | 550 | * their own overlay of this later. | 
|  | 551 | */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 552 | bp->b_bn = ioff; | 
|  | 553 | bp->b_count_desired = bp->b_buffer_length; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 |  | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 555 | trace_xfs_buf_get(bp, flags, _RET_IP_); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 556 | return bp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 |  | 
|  | 558 | no_buffer: | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 559 | if (flags & (XBF_LOCK | XBF_TRYLOCK)) | 
|  | 560 | xfs_buf_unlock(bp); | 
|  | 561 | xfs_buf_rele(bp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | return NULL; | 
|  | 563 | } | 
|  | 564 |  | 
| Christoph Hellwig | 5d765b9 | 2008-12-03 12:20:26 +0100 | [diff] [blame] | 565 | STATIC int | 
|  | 566 | _xfs_buf_read( | 
|  | 567 | xfs_buf_t		*bp, | 
|  | 568 | xfs_buf_flags_t		flags) | 
|  | 569 | { | 
|  | 570 | int			status; | 
|  | 571 |  | 
| Christoph Hellwig | 5d765b9 | 2008-12-03 12:20:26 +0100 | [diff] [blame] | 572 | ASSERT(!(flags & (XBF_DELWRI|XBF_WRITE))); | 
|  | 573 | ASSERT(bp->b_bn != XFS_BUF_DADDR_NULL); | 
|  | 574 |  | 
|  | 575 | bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_DELWRI | \ | 
|  | 576 | XBF_READ_AHEAD | _XBF_RUN_QUEUES); | 
|  | 577 | bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | \ | 
|  | 578 | XBF_READ_AHEAD | _XBF_RUN_QUEUES); | 
|  | 579 |  | 
|  | 580 | status = xfs_buf_iorequest(bp); | 
|  | 581 | if (!status && !(flags & XBF_ASYNC)) | 
|  | 582 | status = xfs_buf_iowait(bp); | 
|  | 583 | return status; | 
|  | 584 | } | 
|  | 585 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | xfs_buf_t * | 
| Christoph Hellwig | 6ad112b | 2009-11-24 18:02:23 +0000 | [diff] [blame] | 587 | xfs_buf_read( | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | xfs_buftarg_t		*target, | 
| Nathan Scott | 204ab25 | 2006-01-11 20:50:22 +1100 | [diff] [blame] | 589 | xfs_off_t		ioff, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | size_t			isize, | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 591 | xfs_buf_flags_t		flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 593 | xfs_buf_t		*bp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 595 | flags |= XBF_READ; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 |  | 
| Christoph Hellwig | 6ad112b | 2009-11-24 18:02:23 +0000 | [diff] [blame] | 597 | bp = xfs_buf_get(target, ioff, isize, flags); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 598 | if (bp) { | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 599 | trace_xfs_buf_read(bp, flags, _RET_IP_); | 
|  | 600 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 601 | if (!XFS_BUF_ISDONE(bp)) { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 602 | XFS_STATS_INC(xb_get_read); | 
| Christoph Hellwig | 5d765b9 | 2008-12-03 12:20:26 +0100 | [diff] [blame] | 603 | _xfs_buf_read(bp, flags); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 604 | } else if (flags & XBF_ASYNC) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | /* | 
|  | 606 | * Read ahead call which is already satisfied, | 
|  | 607 | * drop the buffer | 
|  | 608 | */ | 
|  | 609 | goto no_buffer; | 
|  | 610 | } else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | /* We do not want read in the flags */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 612 | bp->b_flags &= ~XBF_READ; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | } | 
|  | 614 | } | 
|  | 615 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 616 | return bp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 |  | 
|  | 618 | no_buffer: | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 619 | if (flags & (XBF_LOCK | XBF_TRYLOCK)) | 
|  | 620 | xfs_buf_unlock(bp); | 
|  | 621 | xfs_buf_rele(bp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | return NULL; | 
|  | 623 | } | 
|  | 624 |  | 
|  | 625 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 626 | *	If we are not low on memory then do the readahead in a deadlock | 
|  | 627 | *	safe manner. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | */ | 
|  | 629 | void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 630 | xfs_buf_readahead( | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | xfs_buftarg_t		*target, | 
| Nathan Scott | 204ab25 | 2006-01-11 20:50:22 +1100 | [diff] [blame] | 632 | xfs_off_t		ioff, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | size_t			isize, | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 634 | xfs_buf_flags_t		flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | { | 
|  | 636 | struct backing_dev_info *bdi; | 
|  | 637 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 638 | bdi = target->bt_mapping->backing_dev_info; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | if (bdi_read_congested(bdi)) | 
|  | 640 | return; | 
|  | 641 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 642 | flags |= (XBF_TRYLOCK|XBF_ASYNC|XBF_READ_AHEAD); | 
| Christoph Hellwig | 6ad112b | 2009-11-24 18:02:23 +0000 | [diff] [blame] | 643 | xfs_buf_read(target, ioff, isize, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | } | 
|  | 645 |  | 
|  | 646 | xfs_buf_t * | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 647 | xfs_buf_get_empty( | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | size_t			len, | 
|  | 649 | xfs_buftarg_t		*target) | 
|  | 650 | { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 651 | xfs_buf_t		*bp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 653 | bp = xfs_buf_allocate(0); | 
|  | 654 | if (bp) | 
|  | 655 | _xfs_buf_initialize(bp, target, 0, len, 0); | 
|  | 656 | return bp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | } | 
|  | 658 |  | 
|  | 659 | static inline struct page * | 
|  | 660 | mem_to_page( | 
|  | 661 | void			*addr) | 
|  | 662 | { | 
| Christoph Lameter | 9e2779f | 2008-02-04 22:28:34 -0800 | [diff] [blame] | 663 | if ((!is_vmalloc_addr(addr))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | return virt_to_page(addr); | 
|  | 665 | } else { | 
|  | 666 | return vmalloc_to_page(addr); | 
|  | 667 | } | 
|  | 668 | } | 
|  | 669 |  | 
|  | 670 | int | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 671 | xfs_buf_associate_memory( | 
|  | 672 | xfs_buf_t		*bp, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | void			*mem, | 
|  | 674 | size_t			len) | 
|  | 675 | { | 
|  | 676 | int			rval; | 
|  | 677 | int			i = 0; | 
| Lachlan McIlroy | d1afb67 | 2007-11-27 17:01:24 +1100 | [diff] [blame] | 678 | unsigned long		pageaddr; | 
|  | 679 | unsigned long		offset; | 
|  | 680 | size_t			buflen; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | int			page_count; | 
|  | 682 |  | 
| Lachlan McIlroy | d1afb67 | 2007-11-27 17:01:24 +1100 | [diff] [blame] | 683 | pageaddr = (unsigned long)mem & PAGE_CACHE_MASK; | 
|  | 684 | offset = (unsigned long)mem - pageaddr; | 
|  | 685 | buflen = PAGE_CACHE_ALIGN(len + offset); | 
|  | 686 | page_count = buflen >> PAGE_CACHE_SHIFT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 |  | 
|  | 688 | /* Free any previous set of page pointers */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 689 | if (bp->b_pages) | 
|  | 690 | _xfs_buf_free_pages(bp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 692 | bp->b_pages = NULL; | 
|  | 693 | bp->b_addr = mem; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 |  | 
| Christoph Hellwig | 36fae17 | 2009-07-18 18:14:58 -0400 | [diff] [blame] | 695 | rval = _xfs_buf_get_pages(bp, page_count, XBF_DONT_BLOCK); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | if (rval) | 
|  | 697 | return rval; | 
|  | 698 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 699 | bp->b_offset = offset; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 |  | 
| Lachlan McIlroy | d1afb67 | 2007-11-27 17:01:24 +1100 | [diff] [blame] | 701 | for (i = 0; i < bp->b_page_count; i++) { | 
|  | 702 | bp->b_pages[i] = mem_to_page((void *)pageaddr); | 
|  | 703 | pageaddr += PAGE_CACHE_SIZE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 |  | 
| Lachlan McIlroy | d1afb67 | 2007-11-27 17:01:24 +1100 | [diff] [blame] | 706 | bp->b_count_desired = len; | 
|  | 707 | bp->b_buffer_length = buflen; | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 708 | bp->b_flags |= XBF_MAPPED; | 
| Christoph Hellwig | 6ab455e | 2008-05-19 16:34:42 +1000 | [diff] [blame] | 709 | bp->b_flags &= ~_XBF_PAGE_LOCKED; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 |  | 
|  | 711 | return 0; | 
|  | 712 | } | 
|  | 713 |  | 
|  | 714 | xfs_buf_t * | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 715 | xfs_buf_get_noaddr( | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | size_t			len, | 
|  | 717 | xfs_buftarg_t		*target) | 
|  | 718 | { | 
| Christoph Hellwig | 1fa40b0 | 2007-05-14 18:23:50 +1000 | [diff] [blame] | 719 | unsigned long		page_count = PAGE_ALIGN(len) >> PAGE_SHIFT; | 
|  | 720 | int			error, i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | xfs_buf_t		*bp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 723 | bp = xfs_buf_allocate(0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | if (unlikely(bp == NULL)) | 
|  | 725 | goto fail; | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 726 | _xfs_buf_initialize(bp, target, 0, len, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 |  | 
| Christoph Hellwig | 1fa40b0 | 2007-05-14 18:23:50 +1000 | [diff] [blame] | 728 | error = _xfs_buf_get_pages(bp, page_count, 0); | 
|  | 729 | if (error) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | goto fail_free_buf; | 
|  | 731 |  | 
| Christoph Hellwig | 1fa40b0 | 2007-05-14 18:23:50 +1000 | [diff] [blame] | 732 | for (i = 0; i < page_count; i++) { | 
|  | 733 | bp->b_pages[i] = alloc_page(GFP_KERNEL); | 
|  | 734 | if (!bp->b_pages[i]) | 
|  | 735 | goto fail_free_mem; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | } | 
| Christoph Hellwig | 1fa40b0 | 2007-05-14 18:23:50 +1000 | [diff] [blame] | 737 | bp->b_flags |= _XBF_PAGES; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 |  | 
| Christoph Hellwig | 1fa40b0 | 2007-05-14 18:23:50 +1000 | [diff] [blame] | 739 | error = _xfs_buf_map_pages(bp, XBF_MAPPED); | 
|  | 740 | if (unlikely(error)) { | 
|  | 741 | printk(KERN_WARNING "%s: failed to map pages\n", | 
| Harvey Harrison | 34a622b | 2008-04-10 12:19:21 +1000 | [diff] [blame] | 742 | __func__); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | goto fail_free_mem; | 
| Christoph Hellwig | 1fa40b0 | 2007-05-14 18:23:50 +1000 | [diff] [blame] | 744 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 746 | xfs_buf_unlock(bp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 |  | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 748 | trace_xfs_buf_get_noaddr(bp, _RET_IP_); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | return bp; | 
| Christoph Hellwig | 1fa40b0 | 2007-05-14 18:23:50 +1000 | [diff] [blame] | 750 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | fail_free_mem: | 
| Christoph Hellwig | 1fa40b0 | 2007-05-14 18:23:50 +1000 | [diff] [blame] | 752 | while (--i >= 0) | 
|  | 753 | __free_page(bp->b_pages[i]); | 
| Christoph Hellwig | ca165b8 | 2007-05-24 15:21:11 +1000 | [diff] [blame] | 754 | _xfs_buf_free_pages(bp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | fail_free_buf: | 
| Christoph Hellwig | ca165b8 | 2007-05-24 15:21:11 +1000 | [diff] [blame] | 756 | xfs_buf_deallocate(bp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | fail: | 
|  | 758 | return NULL; | 
|  | 759 | } | 
|  | 760 |  | 
|  | 761 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | *	Increment reference count on buffer, to hold the buffer concurrently | 
|  | 763 | *	with another thread which may release (free) the buffer asynchronously. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | *	Must hold the buffer already to call this function. | 
|  | 765 | */ | 
|  | 766 | void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 767 | xfs_buf_hold( | 
|  | 768 | xfs_buf_t		*bp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | { | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 770 | trace_xfs_buf_hold(bp, _RET_IP_); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 771 | atomic_inc(&bp->b_hold); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | } | 
|  | 773 |  | 
|  | 774 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 775 | *	Releases a hold on the specified buffer.  If the | 
|  | 776 | *	the hold count is 1, calls xfs_buf_free. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | */ | 
|  | 778 | void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 779 | xfs_buf_rele( | 
|  | 780 | xfs_buf_t		*bp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 782 | xfs_bufhash_t		*hash = bp->b_hash; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 |  | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 784 | trace_xfs_buf_rele(bp, _RET_IP_); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 |  | 
| Nathan Scott | fad3aa1 | 2006-02-01 12:14:52 +1100 | [diff] [blame] | 786 | if (unlikely(!hash)) { | 
|  | 787 | ASSERT(!bp->b_relse); | 
|  | 788 | if (atomic_dec_and_test(&bp->b_hold)) | 
|  | 789 | xfs_buf_free(bp); | 
|  | 790 | return; | 
|  | 791 | } | 
|  | 792 |  | 
| Lachlan McIlroy | 3790689 | 2008-08-13 15:42:10 +1000 | [diff] [blame] | 793 | ASSERT(atomic_read(&bp->b_hold) > 0); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 794 | if (atomic_dec_and_lock(&bp->b_hold, &hash->bh_lock)) { | 
|  | 795 | if (bp->b_relse) { | 
|  | 796 | atomic_inc(&bp->b_hold); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | spin_unlock(&hash->bh_lock); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 798 | (*(bp->b_relse)) (bp); | 
|  | 799 | } else if (bp->b_flags & XBF_FS_MANAGED) { | 
| Christoph Hellwig | 7f14d0a | 2005-11-02 15:09:35 +1100 | [diff] [blame] | 800 | spin_unlock(&hash->bh_lock); | 
|  | 801 | } else { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 802 | ASSERT(!(bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q))); | 
|  | 803 | list_del_init(&bp->b_hash_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | spin_unlock(&hash->bh_lock); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 805 | xfs_buf_free(bp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | } | 
|  | 807 | } | 
|  | 808 | } | 
|  | 809 |  | 
|  | 810 |  | 
|  | 811 | /* | 
|  | 812 | *	Mutual exclusion on buffers.  Locking model: | 
|  | 813 | * | 
|  | 814 | *	Buffers associated with inodes for which buffer locking | 
|  | 815 | *	is not enabled are not protected by semaphores, and are | 
|  | 816 | *	assumed to be exclusively owned by the caller.  There is a | 
|  | 817 | *	spinlock in the buffer, used by the caller when concurrent | 
|  | 818 | *	access is possible. | 
|  | 819 | */ | 
|  | 820 |  | 
|  | 821 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 822 | *	Locks a buffer object, if it is not already locked. | 
|  | 823 | *	Note that this in no way locks the underlying pages, so it is only | 
|  | 824 | *	useful for synchronizing concurrent use of buffer objects, not for | 
|  | 825 | *	synchronizing independent access to the underlying pages. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | */ | 
|  | 827 | int | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 828 | xfs_buf_cond_lock( | 
|  | 829 | xfs_buf_t		*bp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | { | 
|  | 831 | int			locked; | 
|  | 832 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 833 | locked = down_trylock(&bp->b_sema) == 0; | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 834 | if (locked) | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 835 | XB_SET_OWNER(bp); | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 836 |  | 
|  | 837 | trace_xfs_buf_cond_lock(bp, _RET_IP_); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 838 | return locked ? 0 : -EBUSY; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | } | 
|  | 840 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | int | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 842 | xfs_buf_lock_value( | 
|  | 843 | xfs_buf_t		*bp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | { | 
| Stephen Rothwell | adaa693 | 2008-04-22 15:26:13 +1000 | [diff] [blame] | 845 | return bp->b_sema.count; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 |  | 
|  | 848 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 849 | *	Locks a buffer object. | 
|  | 850 | *	Note that this in no way locks the underlying pages, so it is only | 
|  | 851 | *	useful for synchronizing concurrent use of buffer objects, not for | 
|  | 852 | *	synchronizing independent access to the underlying pages. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 854 | void | 
|  | 855 | xfs_buf_lock( | 
|  | 856 | xfs_buf_t		*bp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | { | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 858 | trace_xfs_buf_lock(bp, _RET_IP_); | 
|  | 859 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 860 | if (atomic_read(&bp->b_io_remaining)) | 
|  | 861 | blk_run_address_space(bp->b_target->bt_mapping); | 
|  | 862 | down(&bp->b_sema); | 
|  | 863 | XB_SET_OWNER(bp); | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 864 |  | 
|  | 865 | trace_xfs_buf_lock_done(bp, _RET_IP_); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | } | 
|  | 867 |  | 
|  | 868 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 869 | *	Releases the lock on the buffer object. | 
| David Chinner | 2f92658 | 2005-09-05 08:33:35 +1000 | [diff] [blame] | 870 | *	If the buffer is marked delwri but is not queued, do so before we | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 871 | *	unlock the buffer as we need to set flags correctly.  We also need to | 
| David Chinner | 2f92658 | 2005-09-05 08:33:35 +1000 | [diff] [blame] | 872 | *	take a reference for the delwri queue because the unlocker is going to | 
|  | 873 | *	drop their's and they don't know we just queued it. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | */ | 
|  | 875 | void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 876 | xfs_buf_unlock( | 
|  | 877 | xfs_buf_t		*bp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 879 | if ((bp->b_flags & (XBF_DELWRI|_XBF_DELWRI_Q)) == XBF_DELWRI) { | 
|  | 880 | atomic_inc(&bp->b_hold); | 
|  | 881 | bp->b_flags |= XBF_ASYNC; | 
|  | 882 | xfs_buf_delwri_queue(bp, 0); | 
| David Chinner | 2f92658 | 2005-09-05 08:33:35 +1000 | [diff] [blame] | 883 | } | 
|  | 884 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 885 | XB_CLEAR_OWNER(bp); | 
|  | 886 | up(&bp->b_sema); | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 887 |  | 
|  | 888 | trace_xfs_buf_unlock(bp, _RET_IP_); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | } | 
|  | 890 |  | 
|  | 891 |  | 
|  | 892 | /* | 
|  | 893 | *	Pinning Buffer Storage in Memory | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 894 | *	Ensure that no attempt to force a buffer to disk will succeed. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | */ | 
|  | 896 | void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 897 | xfs_buf_pin( | 
|  | 898 | xfs_buf_t		*bp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | { | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 900 | trace_xfs_buf_pin(bp, _RET_IP_); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 901 | atomic_inc(&bp->b_pin_count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | } | 
|  | 903 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 905 | xfs_buf_unpin( | 
|  | 906 | xfs_buf_t		*bp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | { | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 908 | trace_xfs_buf_unpin(bp, _RET_IP_); | 
|  | 909 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 910 | if (atomic_dec_and_test(&bp->b_pin_count)) | 
|  | 911 | wake_up_all(&bp->b_waiters); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | } | 
|  | 913 |  | 
|  | 914 | int | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 915 | xfs_buf_ispin( | 
|  | 916 | xfs_buf_t		*bp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 918 | return atomic_read(&bp->b_pin_count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | } | 
|  | 920 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 921 | STATIC void | 
|  | 922 | xfs_buf_wait_unpin( | 
|  | 923 | xfs_buf_t		*bp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | { | 
|  | 925 | DECLARE_WAITQUEUE	(wait, current); | 
|  | 926 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 927 | if (atomic_read(&bp->b_pin_count) == 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | return; | 
|  | 929 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 930 | add_wait_queue(&bp->b_waiters, &wait); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | for (;;) { | 
|  | 932 | set_current_state(TASK_UNINTERRUPTIBLE); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 933 | if (atomic_read(&bp->b_pin_count) == 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | break; | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 935 | if (atomic_read(&bp->b_io_remaining)) | 
|  | 936 | blk_run_address_space(bp->b_target->bt_mapping); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | schedule(); | 
|  | 938 | } | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 939 | remove_wait_queue(&bp->b_waiters, &wait); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | set_current_state(TASK_RUNNING); | 
|  | 941 | } | 
|  | 942 |  | 
|  | 943 | /* | 
|  | 944 | *	Buffer Utility Routines | 
|  | 945 | */ | 
|  | 946 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | STATIC void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 948 | xfs_buf_iodone_work( | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 949 | struct work_struct	*work) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | { | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 951 | xfs_buf_t		*bp = | 
|  | 952 | container_of(work, xfs_buf_t, b_iodone_work); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 |  | 
| David Chinner | 0bfefc4 | 2007-05-14 18:24:23 +1000 | [diff] [blame] | 954 | /* | 
|  | 955 | * We can get an EOPNOTSUPP to ordered writes.  Here we clear the | 
|  | 956 | * ordered flag and reissue them.  Because we can't tell the higher | 
|  | 957 | * layers directly that they should not issue ordered I/O anymore, they | 
| Christoph Hellwig | 73f6aa4 | 2008-10-10 17:28:29 +1100 | [diff] [blame] | 958 | * need to check if the _XFS_BARRIER_FAILED flag was set during I/O completion. | 
| David Chinner | 0bfefc4 | 2007-05-14 18:24:23 +1000 | [diff] [blame] | 959 | */ | 
|  | 960 | if ((bp->b_error == EOPNOTSUPP) && | 
|  | 961 | (bp->b_flags & (XBF_ORDERED|XBF_ASYNC)) == (XBF_ORDERED|XBF_ASYNC)) { | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 962 | trace_xfs_buf_ordered_retry(bp, _RET_IP_); | 
| David Chinner | 0bfefc4 | 2007-05-14 18:24:23 +1000 | [diff] [blame] | 963 | bp->b_flags &= ~XBF_ORDERED; | 
| Christoph Hellwig | 73f6aa4 | 2008-10-10 17:28:29 +1100 | [diff] [blame] | 964 | bp->b_flags |= _XFS_BARRIER_FAILED; | 
| David Chinner | 0bfefc4 | 2007-05-14 18:24:23 +1000 | [diff] [blame] | 965 | xfs_buf_iorequest(bp); | 
|  | 966 | } else if (bp->b_iodone) | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 967 | (*(bp->b_iodone))(bp); | 
|  | 968 | else if (bp->b_flags & XBF_ASYNC) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | xfs_buf_relse(bp); | 
|  | 970 | } | 
|  | 971 |  | 
|  | 972 | void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 973 | xfs_buf_ioend( | 
|  | 974 | xfs_buf_t		*bp, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | int			schedule) | 
|  | 976 | { | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 977 | trace_xfs_buf_iodone(bp, _RET_IP_); | 
|  | 978 |  | 
| Lachlan McIlroy | 77be55a | 2007-11-23 16:31:00 +1100 | [diff] [blame] | 979 | bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 980 | if (bp->b_error == 0) | 
|  | 981 | bp->b_flags |= XBF_DONE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 983 | if ((bp->b_iodone) || (bp->b_flags & XBF_ASYNC)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | if (schedule) { | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 985 | INIT_WORK(&bp->b_iodone_work, xfs_buf_iodone_work); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 986 | queue_work(xfslogd_workqueue, &bp->b_iodone_work); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | } else { | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 988 | xfs_buf_iodone_work(&bp->b_iodone_work); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | } | 
|  | 990 | } else { | 
| David Chinner | b4dd330 | 2008-08-13 16:36:11 +1000 | [diff] [blame] | 991 | complete(&bp->b_iowait); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | } | 
|  | 993 | } | 
|  | 994 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 996 | xfs_buf_ioerror( | 
|  | 997 | xfs_buf_t		*bp, | 
|  | 998 | int			error) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | { | 
|  | 1000 | ASSERT(error >= 0 && error <= 0xffff); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1001 | bp->b_error = (unsigned short)error; | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1002 | trace_xfs_buf_ioerror(bp, error, _RET_IP_); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | } | 
|  | 1004 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | int | 
| Christoph Hellwig | 64e0bc7 | 2010-01-13 22:17:58 +0000 | [diff] [blame] | 1006 | xfs_bwrite( | 
|  | 1007 | struct xfs_mount	*mp, | 
| Christoph Hellwig | 5d765b9 | 2008-12-03 12:20:26 +0100 | [diff] [blame] | 1008 | struct xfs_buf		*bp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | { | 
| Christoph Hellwig | 64e0bc7 | 2010-01-13 22:17:58 +0000 | [diff] [blame] | 1010 | int			iowait = (bp->b_flags & XBF_ASYNC) == 0; | 
|  | 1011 | int			error = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 |  | 
| Christoph Hellwig | 64e0bc7 | 2010-01-13 22:17:58 +0000 | [diff] [blame] | 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; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 |  | 
| Christoph Hellwig | 5d765b9 | 2008-12-03 12:20:26 +0100 | [diff] [blame] | 1019 | xfs_buf_delwri_dequeue(bp); | 
| Christoph Hellwig | 64e0bc7 | 2010-01-13 22:17:58 +0000 | [diff] [blame] | 1020 | xfs_buf_iostrategy(bp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 |  | 
| Christoph Hellwig | 64e0bc7 | 2010-01-13 22:17:58 +0000 | [diff] [blame] | 1022 | if (iowait) { | 
|  | 1023 | error = xfs_buf_iowait(bp); | 
|  | 1024 | if (error) | 
|  | 1025 | xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR); | 
|  | 1026 | xfs_buf_relse(bp); | 
|  | 1027 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 |  | 
| Christoph Hellwig | 64e0bc7 | 2010-01-13 22:17:58 +0000 | [diff] [blame] | 1029 | return error; | 
| Christoph Hellwig | 5d765b9 | 2008-12-03 12:20:26 +0100 | [diff] [blame] | 1030 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 |  | 
| Christoph Hellwig | 5d765b9 | 2008-12-03 12:20:26 +0100 | [diff] [blame] | 1032 | void | 
|  | 1033 | xfs_bdwrite( | 
|  | 1034 | void			*mp, | 
|  | 1035 | struct xfs_buf		*bp) | 
|  | 1036 | { | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1037 | trace_xfs_buf_bdwrite(bp, _RET_IP_); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 |  | 
| Christoph Hellwig | 5d765b9 | 2008-12-03 12:20:26 +0100 | [diff] [blame] | 1039 | bp->b_strat = xfs_bdstrat_cb; | 
| Christoph Hellwig | 15ac08a | 2008-12-09 04:47:30 -0500 | [diff] [blame] | 1040 | bp->b_mount = mp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 |  | 
| Christoph Hellwig | 5d765b9 | 2008-12-03 12:20:26 +0100 | [diff] [blame] | 1042 | bp->b_flags &= ~XBF_READ; | 
|  | 1043 | bp->b_flags |= (XBF_DELWRI | XBF_ASYNC); | 
|  | 1044 |  | 
|  | 1045 | xfs_buf_delwri_queue(bp, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | } | 
|  | 1047 |  | 
| Christoph Hellwig | 4e23471 | 2010-01-13 22:17:56 +0000 | [diff] [blame] | 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); | 
| Christoph Hellwig | 0cadda1 | 2010-01-19 09:56:44 +0000 | [diff] [blame] | 1105 | if (!(fl & XBF_ASYNC)) { | 
| Christoph Hellwig | 4e23471 | 2010-01-13 22:17:56 +0000 | [diff] [blame] | 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 |  | 
| Christoph Hellwig | b8f82a4 | 2009-11-14 16:17:22 +0000 | [diff] [blame] | 1168 | STATIC void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1169 | _xfs_buf_ioend( | 
|  | 1170 | xfs_buf_t		*bp, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | int			schedule) | 
|  | 1172 | { | 
| Christoph Hellwig | 6ab455e | 2008-05-19 16:34:42 +1000 | [diff] [blame] | 1173 | if (atomic_dec_and_test(&bp->b_io_remaining) == 1) { | 
|  | 1174 | bp->b_flags &= ~_XBF_PAGE_LOCKED; | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1175 | xfs_buf_ioend(bp, schedule); | 
| Christoph Hellwig | 6ab455e | 2008-05-19 16:34:42 +1000 | [diff] [blame] | 1176 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | } | 
|  | 1178 |  | 
| Al Viro | 782e3b3 | 2007-10-12 07:17:47 +0100 | [diff] [blame] | 1179 | STATIC void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1180 | xfs_buf_bio_end_io( | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | struct bio		*bio, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1182 | int			error) | 
|  | 1183 | { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1184 | xfs_buf_t		*bp = (xfs_buf_t *)bio->bi_private; | 
|  | 1185 | unsigned int		blocksize = bp->b_target->bt_bsize; | 
| Nathan Scott | eedb553 | 2005-09-02 16:39:56 +1000 | [diff] [blame] | 1186 | struct bio_vec		*bvec = bio->bi_io_vec + bio->bi_vcnt - 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 |  | 
| Lachlan McIlroy | cfbe526 | 2008-12-12 15:27:25 +1100 | [diff] [blame] | 1188 | xfs_buf_ioerror(bp, -error); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 |  | 
| James Bottomley | 73c77e2 | 2010-01-25 11:42:24 -0600 | [diff] [blame] | 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 |  | 
| Nathan Scott | eedb553 | 2005-09-02 16:39:56 +1000 | [diff] [blame] | 1193 | do { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | struct page	*page = bvec->bv_page; | 
|  | 1195 |  | 
| Nathan Scott | 948ecdb | 2006-09-28 11:03:13 +1000 | [diff] [blame] | 1196 | ASSERT(!PagePrivate(page)); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1197 | if (unlikely(bp->b_error)) { | 
|  | 1198 | if (bp->b_flags & XBF_READ) | 
| Nathan Scott | eedb553 | 2005-09-02 16:39:56 +1000 | [diff] [blame] | 1199 | ClearPageUptodate(page); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1200 | } else if (blocksize >= PAGE_CACHE_SIZE) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | SetPageUptodate(page); | 
|  | 1202 | } else if (!PagePrivate(page) && | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1203 | (bp->b_flags & _XBF_PAGE_CACHE)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | set_page_region(page, bvec->bv_offset, bvec->bv_len); | 
|  | 1205 | } | 
|  | 1206 |  | 
| Nathan Scott | eedb553 | 2005-09-02 16:39:56 +1000 | [diff] [blame] | 1207 | if (--bvec >= bio->bi_io_vec) | 
|  | 1208 | prefetchw(&bvec->bv_page->flags); | 
| Christoph Hellwig | 6ab455e | 2008-05-19 16:34:42 +1000 | [diff] [blame] | 1209 |  | 
|  | 1210 | if (bp->b_flags & _XBF_PAGE_LOCKED) | 
|  | 1211 | unlock_page(page); | 
| Nathan Scott | eedb553 | 2005-09-02 16:39:56 +1000 | [diff] [blame] | 1212 | } while (bvec >= bio->bi_io_vec); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1214 | _xfs_buf_ioend(bp, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | bio_put(bio); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | } | 
|  | 1217 |  | 
|  | 1218 | STATIC void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1219 | _xfs_buf_ioapply( | 
|  | 1220 | xfs_buf_t		*bp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | { | 
| Christoph Hellwig | a9759f2 | 2007-12-07 14:07:08 +1100 | [diff] [blame] | 1222 | int			rw, map_i, total_nr_pages, nr_pages; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1223 | struct bio		*bio; | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1224 | int			offset = bp->b_offset; | 
|  | 1225 | int			size = bp->b_count_desired; | 
|  | 1226 | sector_t		sector = bp->b_bn; | 
|  | 1227 | unsigned int		blocksize = bp->b_target->bt_bsize; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1229 | total_nr_pages = bp->b_page_count; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | map_i = 0; | 
|  | 1231 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1232 | if (bp->b_flags & XBF_ORDERED) { | 
|  | 1233 | ASSERT(!(bp->b_flags & XBF_READ)); | 
| Christoph Hellwig | f538d4d | 2005-11-02 10:26:59 +1100 | [diff] [blame] | 1234 | rw = WRITE_BARRIER; | 
| Dave Chinner | 2ee1aba | 2009-11-24 18:03:15 +0000 | [diff] [blame] | 1235 | } else if (bp->b_flags & XBF_LOG_BUFFER) { | 
| Nathan Scott | 51bdd70 | 2006-09-28 11:01:57 +1000 | [diff] [blame] | 1236 | ASSERT(!(bp->b_flags & XBF_READ_AHEAD)); | 
|  | 1237 | bp->b_flags &= ~_XBF_RUN_QUEUES; | 
|  | 1238 | rw = (bp->b_flags & XBF_WRITE) ? WRITE_SYNC : READ_SYNC; | 
| Dave Chinner | 2ee1aba | 2009-11-24 18:03:15 +0000 | [diff] [blame] | 1239 | } else if (bp->b_flags & _XBF_RUN_QUEUES) { | 
|  | 1240 | ASSERT(!(bp->b_flags & XBF_READ_AHEAD)); | 
|  | 1241 | bp->b_flags &= ~_XBF_RUN_QUEUES; | 
|  | 1242 | rw = (bp->b_flags & XBF_WRITE) ? WRITE_META : READ_META; | 
| Nathan Scott | 51bdd70 | 2006-09-28 11:01:57 +1000 | [diff] [blame] | 1243 | } else { | 
|  | 1244 | rw = (bp->b_flags & XBF_WRITE) ? WRITE : | 
|  | 1245 | (bp->b_flags & XBF_READ_AHEAD) ? READA : READ; | 
| Christoph Hellwig | f538d4d | 2005-11-02 10:26:59 +1100 | [diff] [blame] | 1246 | } | 
|  | 1247 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1248 | /* Special code path for reading a sub page size buffer in -- | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | * we populate up the whole page, and hence the other metadata | 
|  | 1250 | * in the same page.  This optimization is only valid when the | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1251 | * filesystem block size is not smaller than the page size. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1252 | */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1253 | if ((bp->b_buffer_length < PAGE_CACHE_SIZE) && | 
| Christoph Hellwig | 6ab455e | 2008-05-19 16:34:42 +1000 | [diff] [blame] | 1254 | ((bp->b_flags & (XBF_READ|_XBF_PAGE_LOCKED)) == | 
|  | 1255 | (XBF_READ|_XBF_PAGE_LOCKED)) && | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1256 | (blocksize >= PAGE_CACHE_SIZE)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | bio = bio_alloc(GFP_NOIO, 1); | 
|  | 1258 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1259 | bio->bi_bdev = bp->b_target->bt_bdev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1260 | bio->bi_sector = sector - (offset >> BBSHIFT); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1261 | bio->bi_end_io = xfs_buf_bio_end_io; | 
|  | 1262 | bio->bi_private = bp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1264 | bio_add_page(bio, bp->b_pages[0], PAGE_CACHE_SIZE, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | size = 0; | 
|  | 1266 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1267 | atomic_inc(&bp->b_io_remaining); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 |  | 
|  | 1269 | goto submit_io; | 
|  | 1270 | } | 
|  | 1271 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1272 | next_chunk: | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1273 | atomic_inc(&bp->b_io_remaining); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1274 | nr_pages = BIO_MAX_SECTORS >> (PAGE_SHIFT - BBSHIFT); | 
|  | 1275 | if (nr_pages > total_nr_pages) | 
|  | 1276 | nr_pages = total_nr_pages; | 
|  | 1277 |  | 
|  | 1278 | bio = bio_alloc(GFP_NOIO, nr_pages); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1279 | bio->bi_bdev = bp->b_target->bt_bdev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | bio->bi_sector = sector; | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1281 | bio->bi_end_io = xfs_buf_bio_end_io; | 
|  | 1282 | bio->bi_private = bp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 |  | 
|  | 1284 | for (; size && nr_pages; nr_pages--, map_i++) { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1285 | int	rbytes, nbytes = PAGE_CACHE_SIZE - offset; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 |  | 
|  | 1287 | if (nbytes > size) | 
|  | 1288 | nbytes = size; | 
|  | 1289 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1290 | rbytes = bio_add_page(bio, bp->b_pages[map_i], nbytes, offset); | 
|  | 1291 | if (rbytes < nbytes) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | break; | 
|  | 1293 |  | 
|  | 1294 | offset = 0; | 
|  | 1295 | sector += nbytes >> BBSHIFT; | 
|  | 1296 | size -= nbytes; | 
|  | 1297 | total_nr_pages--; | 
|  | 1298 | } | 
|  | 1299 |  | 
|  | 1300 | submit_io: | 
|  | 1301 | if (likely(bio->bi_size)) { | 
| James Bottomley | 73c77e2 | 2010-01-25 11:42:24 -0600 | [diff] [blame] | 1302 | if (xfs_buf_is_vmapped(bp)) { | 
|  | 1303 | flush_kernel_vmap_range(bp->b_addr, | 
|  | 1304 | xfs_buf_vmap_len(bp)); | 
|  | 1305 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | submit_bio(rw, bio); | 
|  | 1307 | if (size) | 
|  | 1308 | goto next_chunk; | 
|  | 1309 | } else { | 
|  | 1310 | bio_put(bio); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1311 | xfs_buf_ioerror(bp, EIO); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | } | 
|  | 1313 | } | 
|  | 1314 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | int | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1316 | xfs_buf_iorequest( | 
|  | 1317 | xfs_buf_t		*bp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1318 | { | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1319 | trace_xfs_buf_iorequest(bp, _RET_IP_); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1321 | if (bp->b_flags & XBF_DELWRI) { | 
|  | 1322 | xfs_buf_delwri_queue(bp, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | return 0; | 
|  | 1324 | } | 
|  | 1325 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1326 | if (bp->b_flags & XBF_WRITE) { | 
|  | 1327 | xfs_buf_wait_unpin(bp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | } | 
|  | 1329 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1330 | xfs_buf_hold(bp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 |  | 
|  | 1332 | /* Set the count to 1 initially, this will stop an I/O | 
|  | 1333 | * completion callout which happens before we have started | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1334 | * all the I/O from calling xfs_buf_ioend too early. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1336 | atomic_set(&bp->b_io_remaining, 1); | 
|  | 1337 | _xfs_buf_ioapply(bp); | 
|  | 1338 | _xfs_buf_ioend(bp, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1340 | xfs_buf_rele(bp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | return 0; | 
|  | 1342 | } | 
|  | 1343 |  | 
|  | 1344 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1345 | *	Waits for I/O to complete on the buffer supplied. | 
|  | 1346 | *	It returns immediately if no I/O is pending. | 
|  | 1347 | *	It returns the I/O error code, if any, or 0 if there was no error. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | */ | 
|  | 1349 | int | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1350 | xfs_buf_iowait( | 
|  | 1351 | xfs_buf_t		*bp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | { | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1353 | trace_xfs_buf_iowait(bp, _RET_IP_); | 
|  | 1354 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1355 | if (atomic_read(&bp->b_io_remaining)) | 
|  | 1356 | blk_run_address_space(bp->b_target->bt_mapping); | 
| David Chinner | b4dd330 | 2008-08-13 16:36:11 +1000 | [diff] [blame] | 1357 | wait_for_completion(&bp->b_iowait); | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1358 |  | 
|  | 1359 | trace_xfs_buf_iowait_done(bp, _RET_IP_); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1360 | return bp->b_error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | } | 
|  | 1362 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1363 | xfs_caddr_t | 
|  | 1364 | xfs_buf_offset( | 
|  | 1365 | xfs_buf_t		*bp, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | size_t			offset) | 
|  | 1367 | { | 
|  | 1368 | struct page		*page; | 
|  | 1369 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1370 | if (bp->b_flags & XBF_MAPPED) | 
|  | 1371 | return XFS_BUF_PTR(bp) + offset; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1373 | offset += bp->b_offset; | 
|  | 1374 | page = bp->b_pages[offset >> PAGE_CACHE_SHIFT]; | 
|  | 1375 | return (xfs_caddr_t)page_address(page) + (offset & (PAGE_CACHE_SIZE-1)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | } | 
|  | 1377 |  | 
|  | 1378 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | *	Move data into or out of a buffer. | 
|  | 1380 | */ | 
|  | 1381 | void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1382 | xfs_buf_iomove( | 
|  | 1383 | xfs_buf_t		*bp,	/* buffer to process		*/ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | size_t			boff,	/* starting buffer offset	*/ | 
|  | 1385 | size_t			bsize,	/* length to copy		*/ | 
| Dave Chinner | b9c4864 | 2010-01-20 10:47:39 +1100 | [diff] [blame] | 1386 | void			*data,	/* data address			*/ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1387 | xfs_buf_rw_t		mode)	/* read/write/zero flag		*/ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | { | 
|  | 1389 | size_t			bend, cpoff, csize; | 
|  | 1390 | struct page		*page; | 
|  | 1391 |  | 
|  | 1392 | bend = boff + bsize; | 
|  | 1393 | while (boff < bend) { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1394 | page = bp->b_pages[xfs_buf_btoct(boff + bp->b_offset)]; | 
|  | 1395 | cpoff = xfs_buf_poff(boff + bp->b_offset); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1396 | csize = min_t(size_t, | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1397 | PAGE_CACHE_SIZE-cpoff, bp->b_count_desired-boff); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 |  | 
|  | 1399 | ASSERT(((csize + cpoff) <= PAGE_CACHE_SIZE)); | 
|  | 1400 |  | 
|  | 1401 | switch (mode) { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1402 | case XBRW_ZERO: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | memset(page_address(page) + cpoff, 0, csize); | 
|  | 1404 | break; | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1405 | case XBRW_READ: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | memcpy(data, page_address(page) + cpoff, csize); | 
|  | 1407 | break; | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1408 | case XBRW_WRITE: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | memcpy(page_address(page) + cpoff, data, csize); | 
|  | 1410 | } | 
|  | 1411 |  | 
|  | 1412 | boff += csize; | 
|  | 1413 | data += csize; | 
|  | 1414 | } | 
|  | 1415 | } | 
|  | 1416 |  | 
|  | 1417 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1418 | *	Handling of buffer targets (buftargs). | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1419 | */ | 
|  | 1420 |  | 
|  | 1421 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1422 | *	Wait for any bufs with callbacks that have been submitted but | 
|  | 1423 | *	have not yet returned... walk the hash list for the target. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | */ | 
|  | 1425 | void | 
|  | 1426 | xfs_wait_buftarg( | 
|  | 1427 | xfs_buftarg_t	*btp) | 
|  | 1428 | { | 
|  | 1429 | xfs_buf_t	*bp, *n; | 
|  | 1430 | xfs_bufhash_t	*hash; | 
|  | 1431 | uint		i; | 
|  | 1432 |  | 
|  | 1433 | for (i = 0; i < (1 << btp->bt_hashshift); i++) { | 
|  | 1434 | hash = &btp->bt_hash[i]; | 
|  | 1435 | again: | 
|  | 1436 | spin_lock(&hash->bh_lock); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1437 | list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) { | 
|  | 1438 | ASSERT(btp == bp->b_target); | 
|  | 1439 | if (!(bp->b_flags & XBF_FS_MANAGED)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1440 | spin_unlock(&hash->bh_lock); | 
| David Chinner | 2f92658 | 2005-09-05 08:33:35 +1000 | [diff] [blame] | 1441 | /* | 
|  | 1442 | * Catch superblock reference count leaks | 
|  | 1443 | * immediately | 
|  | 1444 | */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1445 | BUG_ON(bp->b_bn == 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | delay(100); | 
|  | 1447 | goto again; | 
|  | 1448 | } | 
|  | 1449 | } | 
|  | 1450 | spin_unlock(&hash->bh_lock); | 
|  | 1451 | } | 
|  | 1452 | } | 
|  | 1453 |  | 
|  | 1454 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1455 | *	Allocate buffer hash table for a given target. | 
|  | 1456 | *	For devices containing metadata (i.e. not the log/realtime devices) | 
|  | 1457 | *	we need to allocate a much larger hash table. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | */ | 
|  | 1459 | STATIC void | 
|  | 1460 | xfs_alloc_bufhash( | 
|  | 1461 | xfs_buftarg_t		*btp, | 
|  | 1462 | int			external) | 
|  | 1463 | { | 
|  | 1464 | unsigned int		i; | 
|  | 1465 |  | 
|  | 1466 | btp->bt_hashshift = external ? 3 : 8;	/* 8 or 256 buckets */ | 
|  | 1467 | btp->bt_hashmask = (1 << btp->bt_hashshift) - 1; | 
| Christoph Hellwig | bdfb043 | 2010-01-20 21:55:30 +0000 | [diff] [blame] | 1468 | btp->bt_hash = kmem_zalloc_large((1 << btp->bt_hashshift) * | 
|  | 1469 | sizeof(xfs_bufhash_t)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 | for (i = 0; i < (1 << btp->bt_hashshift); i++) { | 
|  | 1471 | spin_lock_init(&btp->bt_hash[i].bh_lock); | 
|  | 1472 | INIT_LIST_HEAD(&btp->bt_hash[i].bh_list); | 
|  | 1473 | } | 
|  | 1474 | } | 
|  | 1475 |  | 
|  | 1476 | STATIC void | 
|  | 1477 | xfs_free_bufhash( | 
|  | 1478 | xfs_buftarg_t		*btp) | 
|  | 1479 | { | 
| Christoph Hellwig | bdfb043 | 2010-01-20 21:55:30 +0000 | [diff] [blame] | 1480 | kmem_free_large(btp->bt_hash); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1481 | btp->bt_hash = NULL; | 
|  | 1482 | } | 
|  | 1483 |  | 
| David Chinner | a6867a6 | 2006-01-11 15:37:58 +1100 | [diff] [blame] | 1484 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1485 | *	buftarg list for delwrite queue processing | 
| David Chinner | a6867a6 | 2006-01-11 15:37:58 +1100 | [diff] [blame] | 1486 | */ | 
| Tim Shimmin | e6a0e9c | 2007-05-08 13:49:59 +1000 | [diff] [blame] | 1487 | static LIST_HEAD(xfs_buftarg_list); | 
| David Chinner | 7989cb8 | 2007-02-10 18:34:56 +1100 | [diff] [blame] | 1488 | static DEFINE_SPINLOCK(xfs_buftarg_lock); | 
| David Chinner | a6867a6 | 2006-01-11 15:37:58 +1100 | [diff] [blame] | 1489 |  | 
|  | 1490 | STATIC void | 
|  | 1491 | xfs_register_buftarg( | 
|  | 1492 | xfs_buftarg_t           *btp) | 
|  | 1493 | { | 
|  | 1494 | spin_lock(&xfs_buftarg_lock); | 
|  | 1495 | list_add(&btp->bt_list, &xfs_buftarg_list); | 
|  | 1496 | spin_unlock(&xfs_buftarg_lock); | 
|  | 1497 | } | 
|  | 1498 |  | 
|  | 1499 | STATIC void | 
|  | 1500 | xfs_unregister_buftarg( | 
|  | 1501 | xfs_buftarg_t           *btp) | 
|  | 1502 | { | 
|  | 1503 | spin_lock(&xfs_buftarg_lock); | 
|  | 1504 | list_del(&btp->bt_list); | 
|  | 1505 | spin_unlock(&xfs_buftarg_lock); | 
|  | 1506 | } | 
|  | 1507 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | void | 
|  | 1509 | xfs_free_buftarg( | 
| Christoph Hellwig | b796313 | 2009-03-03 14:48:37 -0500 | [diff] [blame] | 1510 | struct xfs_mount	*mp, | 
|  | 1511 | struct xfs_buftarg	*btp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1512 | { | 
|  | 1513 | xfs_flush_buftarg(btp, 1); | 
| Christoph Hellwig | b796313 | 2009-03-03 14:48:37 -0500 | [diff] [blame] | 1514 | if (mp->m_flags & XFS_MOUNT_BARRIER) | 
|  | 1515 | xfs_blkdev_issue_flush(btp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1516 | xfs_free_bufhash(btp); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1517 | iput(btp->bt_mapping->host); | 
| David Chinner | a6867a6 | 2006-01-11 15:37:58 +1100 | [diff] [blame] | 1518 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1519 | /* Unregister the buftarg first so that we don't get a | 
|  | 1520 | * wakeup finding a non-existent task | 
|  | 1521 | */ | 
| David Chinner | a6867a6 | 2006-01-11 15:37:58 +1100 | [diff] [blame] | 1522 | xfs_unregister_buftarg(btp); | 
|  | 1523 | kthread_stop(btp->bt_task); | 
|  | 1524 |  | 
| Denys Vlasenko | f0e2d93 | 2008-05-19 16:31:57 +1000 | [diff] [blame] | 1525 | kmem_free(btp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | } | 
|  | 1527 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | STATIC int | 
|  | 1529 | xfs_setsize_buftarg_flags( | 
|  | 1530 | xfs_buftarg_t		*btp, | 
|  | 1531 | unsigned int		blocksize, | 
|  | 1532 | unsigned int		sectorsize, | 
|  | 1533 | int			verbose) | 
|  | 1534 | { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1535 | btp->bt_bsize = blocksize; | 
|  | 1536 | btp->bt_sshift = ffs(sectorsize) - 1; | 
|  | 1537 | btp->bt_smask = sectorsize - 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1539 | if (set_blocksize(btp->bt_bdev, sectorsize)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | printk(KERN_WARNING | 
|  | 1541 | "XFS: Cannot set_blocksize to %u on device %s\n", | 
|  | 1542 | sectorsize, XFS_BUFTARG_NAME(btp)); | 
|  | 1543 | return EINVAL; | 
|  | 1544 | } | 
|  | 1545 |  | 
|  | 1546 | if (verbose && | 
|  | 1547 | (PAGE_CACHE_SIZE / BITS_PER_LONG) > sectorsize) { | 
|  | 1548 | printk(KERN_WARNING | 
|  | 1549 | "XFS: %u byte sectors in use on device %s.  " | 
|  | 1550 | "This is suboptimal; %u or greater is ideal.\n", | 
|  | 1551 | sectorsize, XFS_BUFTARG_NAME(btp), | 
|  | 1552 | (unsigned int)PAGE_CACHE_SIZE / BITS_PER_LONG); | 
|  | 1553 | } | 
|  | 1554 |  | 
|  | 1555 | return 0; | 
|  | 1556 | } | 
|  | 1557 |  | 
|  | 1558 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1559 | *	When allocating the initial buffer target we have not yet | 
|  | 1560 | *	read in the superblock, so don't know what sized sectors | 
|  | 1561 | *	are being used is at this early stage.  Play safe. | 
|  | 1562 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1563 | STATIC int | 
|  | 1564 | xfs_setsize_buftarg_early( | 
|  | 1565 | xfs_buftarg_t		*btp, | 
|  | 1566 | struct block_device	*bdev) | 
|  | 1567 | { | 
|  | 1568 | return xfs_setsize_buftarg_flags(btp, | 
| Martin K. Petersen | e1defc4 | 2009-05-22 17:17:49 -0400 | [diff] [blame] | 1569 | PAGE_CACHE_SIZE, bdev_logical_block_size(bdev), 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1570 | } | 
|  | 1571 |  | 
|  | 1572 | int | 
|  | 1573 | xfs_setsize_buftarg( | 
|  | 1574 | xfs_buftarg_t		*btp, | 
|  | 1575 | unsigned int		blocksize, | 
|  | 1576 | unsigned int		sectorsize) | 
|  | 1577 | { | 
|  | 1578 | return xfs_setsize_buftarg_flags(btp, blocksize, sectorsize, 1); | 
|  | 1579 | } | 
|  | 1580 |  | 
|  | 1581 | STATIC int | 
|  | 1582 | xfs_mapping_buftarg( | 
|  | 1583 | xfs_buftarg_t		*btp, | 
|  | 1584 | struct block_device	*bdev) | 
|  | 1585 | { | 
|  | 1586 | struct backing_dev_info	*bdi; | 
|  | 1587 | struct inode		*inode; | 
|  | 1588 | struct address_space	*mapping; | 
| Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 1589 | static const struct address_space_operations mapping_aops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1590 | .sync_page = block_sync_page, | 
| Christoph Lameter | e965f96 | 2006-02-01 03:05:41 -0800 | [diff] [blame] | 1591 | .migratepage = fail_migrate_page, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | }; | 
|  | 1593 |  | 
|  | 1594 | inode = new_inode(bdev->bd_inode->i_sb); | 
|  | 1595 | if (!inode) { | 
|  | 1596 | printk(KERN_WARNING | 
|  | 1597 | "XFS: Cannot allocate mapping inode for device %s\n", | 
|  | 1598 | XFS_BUFTARG_NAME(btp)); | 
|  | 1599 | return ENOMEM; | 
|  | 1600 | } | 
|  | 1601 | inode->i_mode = S_IFBLK; | 
|  | 1602 | inode->i_bdev = bdev; | 
|  | 1603 | inode->i_rdev = bdev->bd_dev; | 
|  | 1604 | bdi = blk_get_backing_dev_info(bdev); | 
|  | 1605 | if (!bdi) | 
|  | 1606 | bdi = &default_backing_dev_info; | 
|  | 1607 | mapping = &inode->i_data; | 
|  | 1608 | mapping->a_ops = &mapping_aops; | 
|  | 1609 | mapping->backing_dev_info = bdi; | 
|  | 1610 | mapping_set_gfp_mask(mapping, GFP_NOFS); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1611 | btp->bt_mapping = mapping; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | return 0; | 
|  | 1613 | } | 
|  | 1614 |  | 
| David Chinner | a6867a6 | 2006-01-11 15:37:58 +1100 | [diff] [blame] | 1615 | STATIC int | 
|  | 1616 | xfs_alloc_delwrite_queue( | 
|  | 1617 | xfs_buftarg_t		*btp) | 
|  | 1618 | { | 
|  | 1619 | int	error = 0; | 
|  | 1620 |  | 
|  | 1621 | INIT_LIST_HEAD(&btp->bt_list); | 
|  | 1622 | INIT_LIST_HEAD(&btp->bt_delwrite_queue); | 
| Eric Sandeen | 007c61c | 2007-10-11 17:43:56 +1000 | [diff] [blame] | 1623 | spin_lock_init(&btp->bt_delwrite_lock); | 
| David Chinner | a6867a6 | 2006-01-11 15:37:58 +1100 | [diff] [blame] | 1624 | btp->bt_flags = 0; | 
|  | 1625 | btp->bt_task = kthread_run(xfsbufd, btp, "xfsbufd"); | 
|  | 1626 | if (IS_ERR(btp->bt_task)) { | 
|  | 1627 | error = PTR_ERR(btp->bt_task); | 
|  | 1628 | goto out_error; | 
|  | 1629 | } | 
|  | 1630 | xfs_register_buftarg(btp); | 
|  | 1631 | out_error: | 
|  | 1632 | return error; | 
|  | 1633 | } | 
|  | 1634 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | xfs_buftarg_t * | 
|  | 1636 | xfs_alloc_buftarg( | 
|  | 1637 | struct block_device	*bdev, | 
|  | 1638 | int			external) | 
|  | 1639 | { | 
|  | 1640 | xfs_buftarg_t		*btp; | 
|  | 1641 |  | 
|  | 1642 | btp = kmem_zalloc(sizeof(*btp), KM_SLEEP); | 
|  | 1643 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1644 | btp->bt_dev =  bdev->bd_dev; | 
|  | 1645 | btp->bt_bdev = bdev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1646 | if (xfs_setsize_buftarg_early(btp, bdev)) | 
|  | 1647 | goto error; | 
|  | 1648 | if (xfs_mapping_buftarg(btp, bdev)) | 
|  | 1649 | goto error; | 
| David Chinner | a6867a6 | 2006-01-11 15:37:58 +1100 | [diff] [blame] | 1650 | if (xfs_alloc_delwrite_queue(btp)) | 
|  | 1651 | goto error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | xfs_alloc_bufhash(btp, external); | 
|  | 1653 | return btp; | 
|  | 1654 |  | 
|  | 1655 | error: | 
| Denys Vlasenko | f0e2d93 | 2008-05-19 16:31:57 +1000 | [diff] [blame] | 1656 | kmem_free(btp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1657 | return NULL; | 
|  | 1658 | } | 
|  | 1659 |  | 
|  | 1660 |  | 
|  | 1661 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1662 | *	Delayed write buffer handling | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1663 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1664 | STATIC void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1665 | xfs_buf_delwri_queue( | 
|  | 1666 | xfs_buf_t		*bp, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1667 | int			unlock) | 
|  | 1668 | { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1669 | struct list_head	*dwq = &bp->b_target->bt_delwrite_queue; | 
|  | 1670 | spinlock_t		*dwlk = &bp->b_target->bt_delwrite_lock; | 
| David Chinner | a6867a6 | 2006-01-11 15:37:58 +1100 | [diff] [blame] | 1671 |  | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1672 | trace_xfs_buf_delwri_queue(bp, _RET_IP_); | 
|  | 1673 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1674 | ASSERT((bp->b_flags&(XBF_DELWRI|XBF_ASYNC)) == (XBF_DELWRI|XBF_ASYNC)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 |  | 
| David Chinner | a6867a6 | 2006-01-11 15:37:58 +1100 | [diff] [blame] | 1676 | spin_lock(dwlk); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1677 | /* If already in the queue, dequeue and place at tail */ | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1678 | if (!list_empty(&bp->b_list)) { | 
|  | 1679 | ASSERT(bp->b_flags & _XBF_DELWRI_Q); | 
|  | 1680 | if (unlock) | 
|  | 1681 | atomic_dec(&bp->b_hold); | 
|  | 1682 | list_del(&bp->b_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 | } | 
|  | 1684 |  | 
| Dave Chinner | c9c1297 | 2010-01-11 11:49:59 +0000 | [diff] [blame] | 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 |  | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1690 | bp->b_flags |= _XBF_DELWRI_Q; | 
|  | 1691 | list_add_tail(&bp->b_list, dwq); | 
|  | 1692 | bp->b_queuetime = jiffies; | 
| David Chinner | a6867a6 | 2006-01-11 15:37:58 +1100 | [diff] [blame] | 1693 | spin_unlock(dwlk); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1694 |  | 
|  | 1695 | if (unlock) | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1696 | xfs_buf_unlock(bp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 | } | 
|  | 1698 |  | 
|  | 1699 | void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1700 | xfs_buf_delwri_dequeue( | 
|  | 1701 | xfs_buf_t		*bp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1702 | { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1703 | spinlock_t		*dwlk = &bp->b_target->bt_delwrite_lock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 | int			dequeued = 0; | 
|  | 1705 |  | 
| David Chinner | a6867a6 | 2006-01-11 15:37:58 +1100 | [diff] [blame] | 1706 | spin_lock(dwlk); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1707 | if ((bp->b_flags & XBF_DELWRI) && !list_empty(&bp->b_list)) { | 
|  | 1708 | ASSERT(bp->b_flags & _XBF_DELWRI_Q); | 
|  | 1709 | list_del_init(&bp->b_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1710 | dequeued = 1; | 
|  | 1711 | } | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1712 | bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q); | 
| David Chinner | a6867a6 | 2006-01-11 15:37:58 +1100 | [diff] [blame] | 1713 | spin_unlock(dwlk); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1714 |  | 
|  | 1715 | if (dequeued) | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1716 | xfs_buf_rele(bp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1717 |  | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1718 | trace_xfs_buf_delwri_dequeue(bp, _RET_IP_); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1719 | } | 
|  | 1720 |  | 
| Dave Chinner | d808f61 | 2010-02-02 10:13:42 +1100 | [diff] [blame] | 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 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1750 | STATIC void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1751 | xfs_buf_runall_queues( | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1752 | struct workqueue_struct	*queue) | 
|  | 1753 | { | 
|  | 1754 | flush_workqueue(queue); | 
|  | 1755 | } | 
|  | 1756 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1757 | STATIC int | 
| Christoph Hellwig | 23ea403 | 2005-06-21 15:14:01 +1000 | [diff] [blame] | 1758 | xfsbufd_wakeup( | 
| Nathan Scott | 15c84a4 | 2005-11-04 10:51:01 +1100 | [diff] [blame] | 1759 | int			priority, | 
|  | 1760 | gfp_t			mask) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1761 | { | 
| Christoph Hellwig | da7f93e | 2006-01-11 20:49:57 +1100 | [diff] [blame] | 1762 | xfs_buftarg_t		*btp; | 
| David Chinner | a6867a6 | 2006-01-11 15:37:58 +1100 | [diff] [blame] | 1763 |  | 
|  | 1764 | spin_lock(&xfs_buftarg_lock); | 
| Christoph Hellwig | da7f93e | 2006-01-11 20:49:57 +1100 | [diff] [blame] | 1765 | list_for_each_entry(btp, &xfs_buftarg_list, bt_list) { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1766 | if (test_bit(XBT_FORCE_SLEEP, &btp->bt_flags)) | 
| David Chinner | a6867a6 | 2006-01-11 15:37:58 +1100 | [diff] [blame] | 1767 | continue; | 
| Dave Chinner | c9c1297 | 2010-01-11 11:49:59 +0000 | [diff] [blame] | 1768 | if (list_empty(&btp->bt_delwrite_queue)) | 
|  | 1769 | continue; | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1770 | set_bit(XBT_FORCE_FLUSH, &btp->bt_flags); | 
| David Chinner | a6867a6 | 2006-01-11 15:37:58 +1100 | [diff] [blame] | 1771 | wake_up_process(btp->bt_task); | 
|  | 1772 | } | 
|  | 1773 | spin_unlock(&xfs_buftarg_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1774 | return 0; | 
|  | 1775 | } | 
|  | 1776 |  | 
| David Chinner | 585e6d8 | 2007-02-10 18:32:29 +1100 | [diff] [blame] | 1777 | /* | 
|  | 1778 | * Move as many buffers as specified to the supplied list | 
|  | 1779 | * idicating if we skipped any buffers to prevent deadlocks. | 
|  | 1780 | */ | 
|  | 1781 | STATIC int | 
|  | 1782 | xfs_buf_delwri_split( | 
|  | 1783 | xfs_buftarg_t	*target, | 
|  | 1784 | struct list_head *list, | 
| David Chinner | 5e6a07d | 2007-02-10 18:34:49 +1100 | [diff] [blame] | 1785 | unsigned long	age) | 
| David Chinner | 585e6d8 | 2007-02-10 18:32:29 +1100 | [diff] [blame] | 1786 | { | 
|  | 1787 | xfs_buf_t	*bp, *n; | 
|  | 1788 | struct list_head *dwq = &target->bt_delwrite_queue; | 
|  | 1789 | spinlock_t	*dwlk = &target->bt_delwrite_lock; | 
|  | 1790 | int		skipped = 0; | 
| David Chinner | 5e6a07d | 2007-02-10 18:34:49 +1100 | [diff] [blame] | 1791 | int		force; | 
| David Chinner | 585e6d8 | 2007-02-10 18:32:29 +1100 | [diff] [blame] | 1792 |  | 
| David Chinner | 5e6a07d | 2007-02-10 18:34:49 +1100 | [diff] [blame] | 1793 | force = test_and_clear_bit(XBT_FORCE_FLUSH, &target->bt_flags); | 
| David Chinner | 585e6d8 | 2007-02-10 18:32:29 +1100 | [diff] [blame] | 1794 | INIT_LIST_HEAD(list); | 
|  | 1795 | spin_lock(dwlk); | 
|  | 1796 | list_for_each_entry_safe(bp, n, dwq, b_list) { | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1797 | trace_xfs_buf_delwri_split(bp, _RET_IP_); | 
| David Chinner | 585e6d8 | 2007-02-10 18:32:29 +1100 | [diff] [blame] | 1798 | ASSERT(bp->b_flags & XBF_DELWRI); | 
|  | 1799 |  | 
|  | 1800 | if (!xfs_buf_ispin(bp) && !xfs_buf_cond_lock(bp)) { | 
| David Chinner | 5e6a07d | 2007-02-10 18:34:49 +1100 | [diff] [blame] | 1801 | if (!force && | 
| David Chinner | 585e6d8 | 2007-02-10 18:32:29 +1100 | [diff] [blame] | 1802 | time_before(jiffies, bp->b_queuetime + age)) { | 
|  | 1803 | xfs_buf_unlock(bp); | 
|  | 1804 | break; | 
|  | 1805 | } | 
|  | 1806 |  | 
|  | 1807 | bp->b_flags &= ~(XBF_DELWRI|_XBF_DELWRI_Q| | 
|  | 1808 | _XBF_RUN_QUEUES); | 
|  | 1809 | bp->b_flags |= XBF_WRITE; | 
|  | 1810 | list_move_tail(&bp->b_list, list); | 
|  | 1811 | } else | 
|  | 1812 | skipped++; | 
|  | 1813 | } | 
|  | 1814 | spin_unlock(dwlk); | 
|  | 1815 |  | 
|  | 1816 | return skipped; | 
|  | 1817 |  | 
|  | 1818 | } | 
|  | 1819 |  | 
| Dave Chinner | 089716a | 2010-01-26 15:13:25 +1100 | [diff] [blame] | 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 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1851 | STATIC int | 
| Christoph Hellwig | 23ea403 | 2005-06-21 15:14:01 +1000 | [diff] [blame] | 1852 | xfsbufd( | 
| David Chinner | 585e6d8 | 2007-02-10 18:32:29 +1100 | [diff] [blame] | 1853 | void		*data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1854 | { | 
| Dave Chinner | 089716a | 2010-01-26 15:13:25 +1100 | [diff] [blame] | 1855 | xfs_buftarg_t   *target = (xfs_buftarg_t *)data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1856 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1857 | current->flags |= PF_MEMALLOC; | 
|  | 1858 |  | 
| Rafael J. Wysocki | 978c7b2 | 2007-12-07 14:09:02 +1100 | [diff] [blame] | 1859 | set_freezable(); | 
|  | 1860 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1861 | do { | 
| Dave Chinner | c9c1297 | 2010-01-11 11:49:59 +0000 | [diff] [blame] | 1862 | long	age = xfs_buf_age_centisecs * msecs_to_jiffies(10); | 
|  | 1863 | long	tout = xfs_buf_timer_centisecs * msecs_to_jiffies(10); | 
| Dave Chinner | 089716a | 2010-01-26 15:13:25 +1100 | [diff] [blame] | 1864 | int	count = 0; | 
|  | 1865 | struct list_head tmp; | 
| Dave Chinner | c9c1297 | 2010-01-11 11:49:59 +0000 | [diff] [blame] | 1866 |  | 
| Christoph Lameter | 3e1d1d2 | 2005-06-24 23:13:50 -0700 | [diff] [blame] | 1867 | if (unlikely(freezing(current))) { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1868 | set_bit(XBT_FORCE_SLEEP, &target->bt_flags); | 
| Christoph Lameter | 3e1d1d2 | 2005-06-24 23:13:50 -0700 | [diff] [blame] | 1869 | refrigerator(); | 
| Nathan Scott | abd0cf7 | 2005-05-05 13:30:13 -0700 | [diff] [blame] | 1870 | } else { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1871 | clear_bit(XBT_FORCE_SLEEP, &target->bt_flags); | 
| Nathan Scott | abd0cf7 | 2005-05-05 13:30:13 -0700 | [diff] [blame] | 1872 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1873 |  | 
| Dave Chinner | c9c1297 | 2010-01-11 11:49:59 +0000 | [diff] [blame] | 1874 | /* sleep for a long time if there is nothing to do. */ | 
|  | 1875 | if (list_empty(&target->bt_delwrite_queue)) | 
|  | 1876 | tout = MAX_SCHEDULE_TIMEOUT; | 
|  | 1877 | schedule_timeout_interruptible(tout); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1878 |  | 
| Dave Chinner | c9c1297 | 2010-01-11 11:49:59 +0000 | [diff] [blame] | 1879 | xfs_buf_delwri_split(target, &tmp, age); | 
| Dave Chinner | 089716a | 2010-01-26 15:13:25 +1100 | [diff] [blame] | 1880 | list_sort(NULL, &tmp, xfs_buf_cmp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | while (!list_empty(&tmp)) { | 
| Dave Chinner | 089716a | 2010-01-26 15:13:25 +1100 | [diff] [blame] | 1882 | struct xfs_buf *bp; | 
|  | 1883 | bp = list_first_entry(&tmp, struct xfs_buf, b_list); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1884 | list_del_init(&bp->b_list); | 
|  | 1885 | xfs_buf_iostrategy(bp); | 
| David Chinner | 585e6d8 | 2007-02-10 18:32:29 +1100 | [diff] [blame] | 1886 | count++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | } | 
| Nathan Scott | f07c225 | 2006-09-28 10:52:15 +1000 | [diff] [blame] | 1888 | if (count) | 
|  | 1889 | blk_run_address_space(target->bt_mapping); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 |  | 
| Christoph Hellwig | 4df08c5 | 2005-09-05 08:34:18 +1000 | [diff] [blame] | 1891 | } while (!kthread_should_stop()); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1892 |  | 
| Christoph Hellwig | 4df08c5 | 2005-09-05 08:34:18 +1000 | [diff] [blame] | 1893 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1894 | } | 
|  | 1895 |  | 
|  | 1896 | /* | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1897 | *	Go through all incore buffers, and release buffers if they belong to | 
|  | 1898 | *	the given device. This is used in filesystem error handling to | 
|  | 1899 | *	preserve the consistency of its metadata. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | */ | 
|  | 1901 | int | 
|  | 1902 | xfs_flush_buftarg( | 
| David Chinner | 585e6d8 | 2007-02-10 18:32:29 +1100 | [diff] [blame] | 1903 | xfs_buftarg_t	*target, | 
|  | 1904 | int		wait) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1905 | { | 
| Dave Chinner | 089716a | 2010-01-26 15:13:25 +1100 | [diff] [blame] | 1906 | xfs_buf_t	*bp; | 
| David Chinner | 585e6d8 | 2007-02-10 18:32:29 +1100 | [diff] [blame] | 1907 | int		pincount = 0; | 
| Dave Chinner | 089716a | 2010-01-26 15:13:25 +1100 | [diff] [blame] | 1908 | LIST_HEAD(tmp_list); | 
|  | 1909 | LIST_HEAD(wait_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1910 |  | 
| Dave Chinner | c626d17 | 2009-04-06 18:42:11 +0200 | [diff] [blame] | 1911 | xfs_buf_runall_queues(xfsconvertd_workqueue); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1912 | xfs_buf_runall_queues(xfsdatad_workqueue); | 
|  | 1913 | xfs_buf_runall_queues(xfslogd_workqueue); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1914 |  | 
| David Chinner | 5e6a07d | 2007-02-10 18:34:49 +1100 | [diff] [blame] | 1915 | set_bit(XBT_FORCE_FLUSH, &target->bt_flags); | 
| Dave Chinner | 089716a | 2010-01-26 15:13:25 +1100 | [diff] [blame] | 1916 | pincount = xfs_buf_delwri_split(target, &tmp_list, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1917 |  | 
|  | 1918 | /* | 
| Dave Chinner | 089716a | 2010-01-26 15:13:25 +1100 | [diff] [blame] | 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. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1922 | */ | 
| Dave Chinner | 089716a | 2010-01-26 15:13:25 +1100 | [diff] [blame] | 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); | 
| David Chinner | 585e6d8 | 2007-02-10 18:32:29 +1100 | [diff] [blame] | 1926 | ASSERT(target == bp->b_target); | 
| Dave Chinner | 089716a | 2010-01-26 15:13:25 +1100 | [diff] [blame] | 1927 | list_del_init(&bp->b_list); | 
|  | 1928 | if (wait) { | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1929 | bp->b_flags &= ~XBF_ASYNC; | 
| Dave Chinner | 089716a | 2010-01-26 15:13:25 +1100 | [diff] [blame] | 1930 | list_add(&bp->b_list, &wait_list); | 
|  | 1931 | } | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1932 | xfs_buf_iostrategy(bp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1933 | } | 
|  | 1934 |  | 
| Dave Chinner | 089716a | 2010-01-26 15:13:25 +1100 | [diff] [blame] | 1935 | if (wait) { | 
|  | 1936 | /* Expedite and wait for IO to complete. */ | 
| Nathan Scott | f07c225 | 2006-09-28 10:52:15 +1000 | [diff] [blame] | 1937 | blk_run_address_space(target->bt_mapping); | 
| Dave Chinner | 089716a | 2010-01-26 15:13:25 +1100 | [diff] [blame] | 1938 | while (!list_empty(&wait_list)) { | 
|  | 1939 | bp = list_first_entry(&wait_list, struct xfs_buf, b_list); | 
| Nathan Scott | f07c225 | 2006-09-28 10:52:15 +1000 | [diff] [blame] | 1940 |  | 
| Dave Chinner | 089716a | 2010-01-26 15:13:25 +1100 | [diff] [blame] | 1941 | list_del_init(&bp->b_list); | 
|  | 1942 | xfs_iowait(bp); | 
|  | 1943 | xfs_buf_relse(bp); | 
|  | 1944 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1945 | } | 
|  | 1946 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1947 | return pincount; | 
|  | 1948 | } | 
|  | 1949 |  | 
| Christoph Hellwig | 04d8b28 | 2005-11-02 10:15:05 +1100 | [diff] [blame] | 1950 | int __init | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1951 | xfs_buf_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1952 | { | 
| Nathan Scott | 8758280 | 2006-03-14 13:18:19 +1100 | [diff] [blame] | 1953 | xfs_buf_zone = kmem_zone_init_flags(sizeof(xfs_buf_t), "xfs_buf", | 
|  | 1954 | KM_ZONE_HWALIGN, NULL); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1955 | if (!xfs_buf_zone) | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1956 | goto out; | 
| Christoph Hellwig | 04d8b28 | 2005-11-02 10:15:05 +1100 | [diff] [blame] | 1957 |  | 
| Rafael J. Wysocki | b433769 | 2007-03-22 00:11:27 -0800 | [diff] [blame] | 1958 | xfslogd_workqueue = create_workqueue("xfslogd"); | 
| Christoph Hellwig | 23ea403 | 2005-06-21 15:14:01 +1000 | [diff] [blame] | 1959 | if (!xfslogd_workqueue) | 
| Christoph Hellwig | 04d8b28 | 2005-11-02 10:15:05 +1100 | [diff] [blame] | 1960 | goto out_free_buf_zone; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 |  | 
| Rafael J. Wysocki | b433769 | 2007-03-22 00:11:27 -0800 | [diff] [blame] | 1962 | xfsdatad_workqueue = create_workqueue("xfsdatad"); | 
| Christoph Hellwig | 23ea403 | 2005-06-21 15:14:01 +1000 | [diff] [blame] | 1963 | if (!xfsdatad_workqueue) | 
|  | 1964 | goto out_destroy_xfslogd_workqueue; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1965 |  | 
| Dave Chinner | c626d17 | 2009-04-06 18:42:11 +0200 | [diff] [blame] | 1966 | xfsconvertd_workqueue = create_workqueue("xfsconvertd"); | 
|  | 1967 | if (!xfsconvertd_workqueue) | 
|  | 1968 | goto out_destroy_xfsdatad_workqueue; | 
|  | 1969 |  | 
| Rusty Russell | 8e1f936 | 2007-07-17 04:03:17 -0700 | [diff] [blame] | 1970 | register_shrinker(&xfs_buf_shake); | 
| Christoph Hellwig | 23ea403 | 2005-06-21 15:14:01 +1000 | [diff] [blame] | 1971 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1972 |  | 
| Dave Chinner | c626d17 | 2009-04-06 18:42:11 +0200 | [diff] [blame] | 1973 | out_destroy_xfsdatad_workqueue: | 
|  | 1974 | destroy_workqueue(xfsdatad_workqueue); | 
| Christoph Hellwig | 23ea403 | 2005-06-21 15:14:01 +1000 | [diff] [blame] | 1975 | out_destroy_xfslogd_workqueue: | 
|  | 1976 | destroy_workqueue(xfslogd_workqueue); | 
| Christoph Hellwig | 23ea403 | 2005-06-21 15:14:01 +1000 | [diff] [blame] | 1977 | out_free_buf_zone: | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1978 | kmem_zone_destroy(xfs_buf_zone); | 
| Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1979 | out: | 
| Nathan Scott | 8758280 | 2006-03-14 13:18:19 +1100 | [diff] [blame] | 1980 | return -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1981 | } | 
|  | 1982 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | void | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1984 | xfs_buf_terminate(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1985 | { | 
| Rusty Russell | 8e1f936 | 2007-07-17 04:03:17 -0700 | [diff] [blame] | 1986 | unregister_shrinker(&xfs_buf_shake); | 
| Dave Chinner | c626d17 | 2009-04-06 18:42:11 +0200 | [diff] [blame] | 1987 | destroy_workqueue(xfsconvertd_workqueue); | 
| Christoph Hellwig | 04d8b28 | 2005-11-02 10:15:05 +1100 | [diff] [blame] | 1988 | destroy_workqueue(xfsdatad_workqueue); | 
|  | 1989 | destroy_workqueue(xfslogd_workqueue); | 
| Nathan Scott | ce8e922 | 2006-01-11 15:39:08 +1100 | [diff] [blame] | 1990 | kmem_zone_destroy(xfs_buf_zone); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1991 | } | 
| Tim Shimmin | e6a0e9c | 2007-05-08 13:49:59 +1000 | [diff] [blame] | 1992 |  | 
|  | 1993 | #ifdef CONFIG_KDB_MODULES | 
|  | 1994 | struct list_head * | 
|  | 1995 | xfs_get_buftarg_list(void) | 
|  | 1996 | { | 
|  | 1997 | return &xfs_buftarg_list; | 
|  | 1998 | } | 
|  | 1999 | #endif |