blob: 8ba5bf01d34120533c1efa822366ed91cef0119a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/buffer.c
3 *
4 * Copyright (C) 1991, 1992, 2002 Linus Torvalds
5 */
6
7/*
8 * Start bdflush() with kernel_thread not syscall - Paul Gortmaker, 12/95
9 *
10 * Removed a lot of unnecessary code and simplified things now that
11 * the buffer cache isn't our primary cache - Andrew Tridgell 12/96
12 *
13 * Speed up hash, lru, and free list operations. Use gfp() for allocating
14 * hash table, use SLAB cache for buffer heads. SMP threading. -DaveM
15 *
16 * Added 32k buffer block sizes - these are required older ARM systems. - RMK
17 *
18 * async buffer flushing, 1999 Andrea Arcangeli <andrea@suse.de>
19 */
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/kernel.h>
22#include <linux/syscalls.h>
23#include <linux/fs.h>
24#include <linux/mm.h>
25#include <linux/percpu.h>
26#include <linux/slab.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080027#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/blkdev.h>
29#include <linux/file.h>
30#include <linux/quotaops.h>
31#include <linux/highmem.h>
Paul Gortmaker630d9c42011-11-16 23:57:37 -050032#include <linux/export.h>
Tejun Heoeb5d0e32015-06-02 08:37:23 -060033#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/writeback.h>
35#include <linux/hash.h>
36#include <linux/suspend.h>
37#include <linux/buffer_head.h>
Andrew Morton55e829a2006-12-10 02:19:27 -080038#include <linux/task_io_accounting_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/bio.h>
40#include <linux/notifier.h>
41#include <linux/cpu.h>
42#include <linux/bitops.h>
43#include <linux/mpage.h>
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070044#include <linux/bit_spinlock.h>
Tejun Heo5305cb82013-01-11 13:06:36 -080045#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47static int fsync_buffers_list(spinlock_t *lock, struct list_head *list);
Tejun Heo9ffcc0d2015-06-02 08:39:48 -060048static int submit_bh_wbc(int rw, struct buffer_head *bh,
49 unsigned long bio_flags,
50 struct writeback_control *wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#define BH_ENTRY(list) list_entry((list), struct buffer_head, b_assoc_buffers)
53
Yan Honga3f3c292012-12-12 13:52:15 -080054void init_buffer(struct buffer_head *bh, bh_end_io_t *handler, void *private)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
56 bh->b_end_io = handler;
57 bh->b_private = private;
58}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -070059EXPORT_SYMBOL(init_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Tejun Heof0059af2013-01-11 13:06:35 -080061inline void touch_buffer(struct buffer_head *bh)
62{
Tejun Heo5305cb82013-01-11 13:06:36 -080063 trace_block_touch_buffer(bh);
Tejun Heof0059af2013-01-11 13:06:35 -080064 mark_page_accessed(bh->b_page);
65}
66EXPORT_SYMBOL(touch_buffer);
67
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -080068void __lock_buffer(struct buffer_head *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
NeilBrown74316202014-07-07 15:16:04 +100070 wait_on_bit_lock_io(&bh->b_state, BH_Lock, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
72EXPORT_SYMBOL(__lock_buffer);
73
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -080074void unlock_buffer(struct buffer_head *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Nick Piggin51b07fc2008-10-18 20:27:00 -070076 clear_bit_unlock(BH_Lock, &bh->b_state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +010077 smp_mb__after_atomic();
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 wake_up_bit(&bh->b_state, BH_Lock);
79}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -070080EXPORT_SYMBOL(unlock_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82/*
Mel Gormanb4597222013-07-03 15:02:05 -070083 * Returns if the page has dirty or writeback buffers. If all the buffers
84 * are unlocked and clean then the PageDirty information is stale. If
85 * any of the pages are locked, it is assumed they are locked for IO.
86 */
87void buffer_check_dirty_writeback(struct page *page,
88 bool *dirty, bool *writeback)
89{
90 struct buffer_head *head, *bh;
91 *dirty = false;
92 *writeback = false;
93
94 BUG_ON(!PageLocked(page));
95
96 if (!page_has_buffers(page))
97 return;
98
99 if (PageWriteback(page))
100 *writeback = true;
101
102 head = page_buffers(page);
103 bh = head;
104 do {
105 if (buffer_locked(bh))
106 *writeback = true;
107
108 if (buffer_dirty(bh))
109 *dirty = true;
110
111 bh = bh->b_this_page;
112 } while (bh != head);
113}
114EXPORT_SYMBOL(buffer_check_dirty_writeback);
115
116/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 * Block until a buffer comes unlocked. This doesn't stop it
118 * from becoming locked again - you have to lock it yourself
119 * if you want to preserve its state.
120 */
121void __wait_on_buffer(struct buffer_head * bh)
122{
NeilBrown74316202014-07-07 15:16:04 +1000123 wait_on_bit_io(&bh->b_state, BH_Lock, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -0700125EXPORT_SYMBOL(__wait_on_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127static void
128__clear_page_buffers(struct page *page)
129{
130 ClearPagePrivate(page);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700131 set_page_private(page, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 page_cache_release(page);
133}
134
Robert Elliottb744c2a2014-10-21 13:55:09 -0600135static void buffer_io_error(struct buffer_head *bh, char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137 char b[BDEVNAME_SIZE];
Robert Elliott432f16e2014-10-21 13:55:11 -0600138
139 if (!test_bit(BH_Quiet, &bh->b_state))
140 printk_ratelimited(KERN_ERR
141 "Buffer I/O error on dev %s, logical block %llu%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 bdevname(bh->b_bdev, b),
Robert Elliottb744c2a2014-10-21 13:55:09 -0600143 (unsigned long long)bh->b_blocknr, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146/*
Dmitry Monakhov68671f32007-10-16 01:24:47 -0700147 * End-of-IO handler helper function which does not touch the bh after
148 * unlocking it.
149 * Note: unlock_buffer() sort-of does touch the bh after unlocking it, but
150 * a race there is benign: unlock_buffer() only use the bh's address for
151 * hashing after unlocking the buffer, so it doesn't actually touch the bh
152 * itself.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 */
Dmitry Monakhov68671f32007-10-16 01:24:47 -0700154static void __end_buffer_read_notouch(struct buffer_head *bh, int uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 if (uptodate) {
157 set_buffer_uptodate(bh);
158 } else {
159 /* This happens, due to failed READA attempts. */
160 clear_buffer_uptodate(bh);
161 }
162 unlock_buffer(bh);
Dmitry Monakhov68671f32007-10-16 01:24:47 -0700163}
164
165/*
166 * Default synchronous end-of-IO handler.. Just mark it up-to-date and
167 * unlock the buffer. This is what ll_rw_block uses too.
168 */
169void end_buffer_read_sync(struct buffer_head *bh, int uptodate)
170{
171 __end_buffer_read_notouch(bh, uptodate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 put_bh(bh);
173}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -0700174EXPORT_SYMBOL(end_buffer_read_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176void end_buffer_write_sync(struct buffer_head *bh, int uptodate)
177{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (uptodate) {
179 set_buffer_uptodate(bh);
180 } else {
Robert Elliott432f16e2014-10-21 13:55:11 -0600181 buffer_io_error(bh, ", lost sync page write");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 set_buffer_write_io_error(bh);
183 clear_buffer_uptodate(bh);
184 }
185 unlock_buffer(bh);
186 put_bh(bh);
187}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -0700188EXPORT_SYMBOL(end_buffer_write_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 * Various filesystems appear to want __find_get_block to be non-blocking.
192 * But it's the page lock which protects the buffers. To get around this,
193 * we get exclusion from try_to_free_buffers with the blockdev mapping's
194 * private_lock.
195 *
196 * Hack idea: for the blockdev mapping, i_bufferlist_lock contention
197 * may be quite high. This code could TryLock the page, and if that
198 * succeeds, there is no need to take private_lock. (But if
199 * private_lock is contended then so is mapping->tree_lock).
200 */
201static struct buffer_head *
Coywolf Qi Hunt385fd4c2005-11-07 00:59:39 -0800202__find_get_block_slow(struct block_device *bdev, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 struct inode *bd_inode = bdev->bd_inode;
205 struct address_space *bd_mapping = bd_inode->i_mapping;
206 struct buffer_head *ret = NULL;
207 pgoff_t index;
208 struct buffer_head *bh;
209 struct buffer_head *head;
210 struct page *page;
211 int all_mapped = 1;
212
213 index = block >> (PAGE_CACHE_SHIFT - bd_inode->i_blkbits);
Mel Gorman2457aec2014-06-04 16:10:31 -0700214 page = find_get_page_flags(bd_mapping, index, FGP_ACCESSED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (!page)
216 goto out;
217
218 spin_lock(&bd_mapping->private_lock);
219 if (!page_has_buffers(page))
220 goto out_unlock;
221 head = page_buffers(page);
222 bh = head;
223 do {
Nikanth Karthikesan97f76d32009-04-02 16:56:46 -0700224 if (!buffer_mapped(bh))
225 all_mapped = 0;
226 else if (bh->b_blocknr == block) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 ret = bh;
228 get_bh(bh);
229 goto out_unlock;
230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 bh = bh->b_this_page;
232 } while (bh != head);
233
234 /* we might be here because some of the buffers on this page are
235 * not mapped. This is due to various races between
236 * file io on the block device and getblk. It gets dealt with
237 * elsewhere, don't buffer_error if we had some unmapped buffers
238 */
239 if (all_mapped) {
Tao Ma72a2ebd2011-10-31 17:09:00 -0700240 char b[BDEVNAME_SIZE];
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 printk("__find_get_block_slow() failed. "
243 "block=%llu, b_blocknr=%llu\n",
Badari Pulavarty205f87f2006-03-26 01:38:00 -0800244 (unsigned long long)block,
245 (unsigned long long)bh->b_blocknr);
246 printk("b_state=0x%08lx, b_size=%zu\n",
247 bh->b_state, bh->b_size);
Tao Ma72a2ebd2011-10-31 17:09:00 -0700248 printk("device %s blocksize: %d\n", bdevname(bdev, b),
249 1 << bd_inode->i_blkbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251out_unlock:
252 spin_unlock(&bd_mapping->private_lock);
253 page_cache_release(page);
254out:
255 return ret;
256}
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258/*
Jens Axboe5b0830c2009-09-23 19:37:09 +0200259 * Kick the writeback threads then try to free up some ZONE_NORMAL memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 */
261static void free_more_memory(void)
262{
Mel Gorman19770b32008-04-28 02:12:18 -0700263 struct zone *zone;
Mel Gorman0e884602008-04-28 02:12:14 -0700264 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Curt Wohlgemuth0e175a12011-10-07 21:54:10 -0600266 wakeup_flusher_threads(1024, WB_REASON_FREE_MORE_MEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 yield();
268
Mel Gorman0e884602008-04-28 02:12:14 -0700269 for_each_online_node(nid) {
Mel Gorman19770b32008-04-28 02:12:18 -0700270 (void)first_zones_zonelist(node_zonelist(nid, GFP_NOFS),
271 gfp_zone(GFP_NOFS), NULL,
272 &zone);
273 if (zone)
Mel Gorman54a6eb52008-04-28 02:12:16 -0700274 try_to_free_pages(node_zonelist(nid, GFP_NOFS), 0,
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -0700275 GFP_NOFS, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
277}
278
279/*
280 * I/O completion handler for block_read_full_page() - pages
281 * which come unlocked at the end of I/O.
282 */
283static void end_buffer_async_read(struct buffer_head *bh, int uptodate)
284{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 unsigned long flags;
Nick Piggina3972202005-07-07 17:56:56 -0700286 struct buffer_head *first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 struct buffer_head *tmp;
288 struct page *page;
289 int page_uptodate = 1;
290
291 BUG_ON(!buffer_async_read(bh));
292
293 page = bh->b_page;
294 if (uptodate) {
295 set_buffer_uptodate(bh);
296 } else {
297 clear_buffer_uptodate(bh);
Robert Elliott432f16e2014-10-21 13:55:11 -0600298 buffer_io_error(bh, ", async page read");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 SetPageError(page);
300 }
301
302 /*
303 * Be _very_ careful from here on. Bad things can happen if
304 * two buffer heads end IO at almost the same time and both
305 * decide that the page is now completely done.
306 */
Nick Piggina3972202005-07-07 17:56:56 -0700307 first = page_buffers(page);
Thomas Gleixner04ae51a2011-03-18 09:18:52 +0100308 flags = bh_uptodate_lock_irqsave(first);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 clear_buffer_async_read(bh);
310 unlock_buffer(bh);
311 tmp = bh;
312 do {
313 if (!buffer_uptodate(tmp))
314 page_uptodate = 0;
315 if (buffer_async_read(tmp)) {
316 BUG_ON(!buffer_locked(tmp));
317 goto still_busy;
318 }
319 tmp = tmp->b_this_page;
320 } while (tmp != bh);
Thomas Gleixner04ae51a2011-03-18 09:18:52 +0100321 bh_uptodate_unlock_irqrestore(first, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 /*
324 * If none of the buffers had errors and they are all
325 * uptodate then we can set the page uptodate.
326 */
327 if (page_uptodate && !PageError(page))
328 SetPageUptodate(page);
329 unlock_page(page);
330 return;
331
332still_busy:
Thomas Gleixner04ae51a2011-03-18 09:18:52 +0100333 bh_uptodate_unlock_irqrestore(first, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
336/*
337 * Completion handler for block_write_full_page() - pages which are unlocked
338 * during I/O, and which have PageWriteback cleared upon I/O completion.
339 */
Chris Mason35c80d52009-04-15 13:22:38 -0400340void end_buffer_async_write(struct buffer_head *bh, int uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 unsigned long flags;
Nick Piggina3972202005-07-07 17:56:56 -0700343 struct buffer_head *first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 struct buffer_head *tmp;
345 struct page *page;
346
347 BUG_ON(!buffer_async_write(bh));
348
349 page = bh->b_page;
350 if (uptodate) {
351 set_buffer_uptodate(bh);
352 } else {
Robert Elliott432f16e2014-10-21 13:55:11 -0600353 buffer_io_error(bh, ", lost async page write");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 set_bit(AS_EIO, &page->mapping->flags);
Jan Kara58ff4072006-10-17 00:10:19 -0700355 set_buffer_write_io_error(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 clear_buffer_uptodate(bh);
357 SetPageError(page);
358 }
359
Nick Piggina3972202005-07-07 17:56:56 -0700360 first = page_buffers(page);
Thomas Gleixner04ae51a2011-03-18 09:18:52 +0100361 flags = bh_uptodate_lock_irqsave(first);
Nick Piggina3972202005-07-07 17:56:56 -0700362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 clear_buffer_async_write(bh);
364 unlock_buffer(bh);
365 tmp = bh->b_this_page;
366 while (tmp != bh) {
367 if (buffer_async_write(tmp)) {
368 BUG_ON(!buffer_locked(tmp));
369 goto still_busy;
370 }
371 tmp = tmp->b_this_page;
372 }
Thomas Gleixner04ae51a2011-03-18 09:18:52 +0100373 bh_uptodate_unlock_irqrestore(first, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 end_page_writeback(page);
375 return;
376
377still_busy:
Thomas Gleixner04ae51a2011-03-18 09:18:52 +0100378 bh_uptodate_unlock_irqrestore(first, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -0700380EXPORT_SYMBOL(end_buffer_async_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382/*
383 * If a page's buffers are under async readin (end_buffer_async_read
384 * completion) then there is a possibility that another thread of
385 * control could lock one of the buffers after it has completed
386 * but while some of the other buffers have not completed. This
387 * locked buffer would confuse end_buffer_async_read() into not unlocking
388 * the page. So the absence of BH_Async_Read tells end_buffer_async_read()
389 * that this buffer is not under async I/O.
390 *
391 * The page comes unlocked when it has no locked buffer_async buffers
392 * left.
393 *
394 * PageLocked prevents anyone starting new async I/O reads any of
395 * the buffers.
396 *
397 * PageWriteback is used to prevent simultaneous writeout of the same
398 * page.
399 *
400 * PageLocked prevents anyone from starting writeback of a page which is
401 * under read I/O (PageWriteback is only ever set against a locked page).
402 */
403static void mark_buffer_async_read(struct buffer_head *bh)
404{
405 bh->b_end_io = end_buffer_async_read;
406 set_buffer_async_read(bh);
407}
408
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -0700409static void mark_buffer_async_write_endio(struct buffer_head *bh,
410 bh_end_io_t *handler)
Chris Mason35c80d52009-04-15 13:22:38 -0400411{
412 bh->b_end_io = handler;
413 set_buffer_async_write(bh);
414}
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416void mark_buffer_async_write(struct buffer_head *bh)
417{
Chris Mason35c80d52009-04-15 13:22:38 -0400418 mark_buffer_async_write_endio(bh, end_buffer_async_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420EXPORT_SYMBOL(mark_buffer_async_write);
421
422
423/*
424 * fs/buffer.c contains helper functions for buffer-backed address space's
425 * fsync functions. A common requirement for buffer-based filesystems is
426 * that certain data from the backing blockdev needs to be written out for
427 * a successful fsync(). For example, ext2 indirect blocks need to be
428 * written back and waited upon before fsync() returns.
429 *
430 * The functions mark_buffer_inode_dirty(), fsync_inode_buffers(),
431 * inode_has_buffers() and invalidate_inode_buffers() are provided for the
432 * management of a list of dependent buffers at ->i_mapping->private_list.
433 *
434 * Locking is a little subtle: try_to_free_buffers() will remove buffers
435 * from their controlling inode's queue when they are being freed. But
436 * try_to_free_buffers() will be operating against the *blockdev* mapping
437 * at the time, not against the S_ISREG file which depends on those buffers.
438 * So the locking for private_list is via the private_lock in the address_space
439 * which backs the buffers. Which is different from the address_space
440 * against which the buffers are listed. So for a particular address_space,
441 * mapping->private_lock does *not* protect mapping->private_list! In fact,
442 * mapping->private_list will always be protected by the backing blockdev's
443 * ->private_lock.
444 *
445 * Which introduces a requirement: all buffers on an address_space's
446 * ->private_list must be from the same address_space: the blockdev's.
447 *
448 * address_spaces which do not place buffers at ->private_list via these
449 * utility functions are free to use private_lock and private_list for
450 * whatever they want. The only requirement is that list_empty(private_list)
451 * be true at clear_inode() time.
452 *
453 * FIXME: clear_inode should not call invalidate_inode_buffers(). The
454 * filesystems should do that. invalidate_inode_buffers() should just go
455 * BUG_ON(!list_empty).
456 *
457 * FIXME: mark_buffer_dirty_inode() is a data-plane operation. It should
458 * take an address_space, not an inode. And it should be called
459 * mark_buffer_dirty_fsync() to clearly define why those buffers are being
460 * queued up.
461 *
462 * FIXME: mark_buffer_dirty_inode() doesn't need to add the buffer to the
463 * list if it is already on a list. Because if the buffer is on a list,
464 * it *must* already be on the right one. If not, the filesystem is being
465 * silly. This will save a ton of locking. But first we have to ensure
466 * that buffers are taken *off* the old inode's list when they are freed
467 * (presumably in truncate). That requires careful auditing of all
468 * filesystems (do it inside bforget()). It could also be done by bringing
469 * b_inode back.
470 */
471
472/*
473 * The buffer's backing address_space's private_lock must be held
474 */
Thomas Petazzonidbacefc2008-07-29 22:33:47 -0700475static void __remove_assoc_queue(struct buffer_head *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
477 list_del_init(&bh->b_assoc_buffers);
Jan Kara58ff4072006-10-17 00:10:19 -0700478 WARN_ON(!bh->b_assoc_map);
479 if (buffer_write_io_error(bh))
480 set_bit(AS_EIO, &bh->b_assoc_map->flags);
481 bh->b_assoc_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
484int inode_has_buffers(struct inode *inode)
485{
486 return !list_empty(&inode->i_data.private_list);
487}
488
489/*
490 * osync is designed to support O_SYNC io. It waits synchronously for
491 * all already-submitted IO to complete, but does not queue any new
492 * writes to the disk.
493 *
494 * To do O_SYNC writes, just queue the buffer writes with ll_rw_block as
495 * you dirty the buffers, and then use osync_inode_buffers to wait for
496 * completion. Any other dirty buffers which are not yet queued for
497 * write will not be flushed to disk by the osync.
498 */
499static int osync_buffers_list(spinlock_t *lock, struct list_head *list)
500{
501 struct buffer_head *bh;
502 struct list_head *p;
503 int err = 0;
504
505 spin_lock(lock);
506repeat:
507 list_for_each_prev(p, list) {
508 bh = BH_ENTRY(p);
509 if (buffer_locked(bh)) {
510 get_bh(bh);
511 spin_unlock(lock);
512 wait_on_buffer(bh);
513 if (!buffer_uptodate(bh))
514 err = -EIO;
515 brelse(bh);
516 spin_lock(lock);
517 goto repeat;
518 }
519 }
520 spin_unlock(lock);
521 return err;
522}
523
Al Viro01a05b32010-03-23 06:06:58 -0400524static void do_thaw_one(struct super_block *sb, void *unused)
525{
526 char b[BDEVNAME_SIZE];
527 while (sb->s_bdev && !thaw_bdev(sb->s_bdev, sb))
528 printk(KERN_WARNING "Emergency Thaw on %s\n",
529 bdevname(sb->s_bdev, b));
530}
531
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -0700532static void do_thaw_all(struct work_struct *work)
Eric Sandeenc2d75432009-03-31 15:23:46 -0700533{
Al Viro01a05b32010-03-23 06:06:58 -0400534 iterate_supers(do_thaw_one, NULL);
Jens Axboe053c5252009-04-08 13:44:08 +0200535 kfree(work);
Eric Sandeenc2d75432009-03-31 15:23:46 -0700536 printk(KERN_WARNING "Emergency Thaw complete\n");
537}
538
539/**
540 * emergency_thaw_all -- forcibly thaw every frozen filesystem
541 *
542 * Used for emergency unfreeze of all filesystems via SysRq
543 */
544void emergency_thaw_all(void)
545{
Jens Axboe053c5252009-04-08 13:44:08 +0200546 struct work_struct *work;
547
548 work = kmalloc(sizeof(*work), GFP_ATOMIC);
549 if (work) {
550 INIT_WORK(work, do_thaw_all);
551 schedule_work(work);
552 }
Eric Sandeenc2d75432009-03-31 15:23:46 -0700553}
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555/**
Randy Dunlap78a4a502008-02-29 22:02:31 -0800556 * sync_mapping_buffers - write out & wait upon a mapping's "associated" buffers
Martin Waitz67be2dd2005-05-01 08:59:26 -0700557 * @mapping: the mapping which wants those buffers written
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 *
559 * Starts I/O against the buffers at mapping->private_list, and waits upon
560 * that I/O.
561 *
Martin Waitz67be2dd2005-05-01 08:59:26 -0700562 * Basically, this is a convenience function for fsync().
563 * @mapping is a file or directory which needs those buffers to be written for
564 * a successful fsync().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 */
566int sync_mapping_buffers(struct address_space *mapping)
567{
Rafael Aquini252aa6f2012-12-11 16:02:35 -0800568 struct address_space *buffer_mapping = mapping->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 if (buffer_mapping == NULL || list_empty(&mapping->private_list))
571 return 0;
572
573 return fsync_buffers_list(&buffer_mapping->private_lock,
574 &mapping->private_list);
575}
576EXPORT_SYMBOL(sync_mapping_buffers);
577
578/*
579 * Called when we've recently written block `bblock', and it is known that
580 * `bblock' was for a buffer_boundary() buffer. This means that the block at
581 * `bblock + 1' is probably a dirty indirect block. Hunt it down and, if it's
582 * dirty, schedule it for IO. So that indirects merge nicely with their data.
583 */
584void write_boundary_block(struct block_device *bdev,
585 sector_t bblock, unsigned blocksize)
586{
587 struct buffer_head *bh = __find_get_block(bdev, bblock + 1, blocksize);
588 if (bh) {
589 if (buffer_dirty(bh))
590 ll_rw_block(WRITE, 1, &bh);
591 put_bh(bh);
592 }
593}
594
595void mark_buffer_dirty_inode(struct buffer_head *bh, struct inode *inode)
596{
597 struct address_space *mapping = inode->i_mapping;
598 struct address_space *buffer_mapping = bh->b_page->mapping;
599
600 mark_buffer_dirty(bh);
Rafael Aquini252aa6f2012-12-11 16:02:35 -0800601 if (!mapping->private_data) {
602 mapping->private_data = buffer_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 } else {
Rafael Aquini252aa6f2012-12-11 16:02:35 -0800604 BUG_ON(mapping->private_data != buffer_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
Jan Kara535ee2f2008-02-08 04:21:59 -0800606 if (!bh->b_assoc_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 spin_lock(&buffer_mapping->private_lock);
608 list_move_tail(&bh->b_assoc_buffers,
609 &mapping->private_list);
Jan Kara58ff4072006-10-17 00:10:19 -0700610 bh->b_assoc_map = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 spin_unlock(&buffer_mapping->private_lock);
612 }
613}
614EXPORT_SYMBOL(mark_buffer_dirty_inode);
615
616/*
Nick Piggin787d2212007-07-17 04:03:34 -0700617 * Mark the page dirty, and set it dirty in the radix tree, and mark the inode
618 * dirty.
619 *
620 * If warn is true, then emit a warning if the page is not uptodate and has
621 * not been truncated.
Greg Thelen7c9d3ff2015-05-22 17:13:16 -0400622 *
623 * The caller must hold mem_cgroup_begin_page_stat() lock.
Nick Piggin787d2212007-07-17 04:03:34 -0700624 */
Greg Thelen7c9d3ff2015-05-22 17:13:16 -0400625static void __set_page_dirty(struct page *page, struct address_space *mapping,
626 struct mem_cgroup *memcg, int warn)
Nick Piggin787d2212007-07-17 04:03:34 -0700627{
KOSAKI Motohiro227d53b32014-02-06 12:04:28 -0800628 unsigned long flags;
629
630 spin_lock_irqsave(&mapping->tree_lock, flags);
Nick Piggin787d2212007-07-17 04:03:34 -0700631 if (page->mapping) { /* Race with truncate? */
632 WARN_ON_ONCE(warn && !PageUptodate(page));
Greg Thelen7c9d3ff2015-05-22 17:13:16 -0400633 account_page_dirtied(page, mapping, memcg);
Nick Piggin787d2212007-07-17 04:03:34 -0700634 radix_tree_tag_set(&mapping->page_tree,
635 page_index(page), PAGECACHE_TAG_DIRTY);
636 }
KOSAKI Motohiro227d53b32014-02-06 12:04:28 -0800637 spin_unlock_irqrestore(&mapping->tree_lock, flags);
Nick Piggin787d2212007-07-17 04:03:34 -0700638}
639
640/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 * Add a page to the dirty page list.
642 *
643 * It is a sad fact of life that this function is called from several places
644 * deeply under spinlocking. It may not sleep.
645 *
646 * If the page has buffers, the uptodate buffers are set dirty, to preserve
647 * dirty-state coherency between the page and the buffers. It the page does
648 * not have buffers then when they are later attached they will all be set
649 * dirty.
650 *
651 * The buffers are dirtied before the page is dirtied. There's a small race
652 * window in which a writepage caller may see the page cleanness but not the
653 * buffer dirtiness. That's fine. If this code were to set the page dirty
654 * before the buffers, a concurrent writepage caller could clear the page dirty
655 * bit, see a bunch of clean buffers and we'd end up with dirty buffers/clean
656 * page on the dirty page list.
657 *
658 * We use private_lock to lock against try_to_free_buffers while using the
659 * page's buffer list. Also use this to protect against clean buffers being
660 * added to the page after it was set dirty.
661 *
662 * FIXME: may need to call ->reservepage here as well. That's rather up to the
663 * address_space though.
664 */
665int __set_page_dirty_buffers(struct page *page)
666{
Linus Torvaldsa8e7d492009-03-19 11:32:05 -0700667 int newly_dirty;
Greg Thelen7c9d3ff2015-05-22 17:13:16 -0400668 struct mem_cgroup *memcg;
Nick Piggin787d2212007-07-17 04:03:34 -0700669 struct address_space *mapping = page_mapping(page);
Nick Pigginebf7a222006-10-10 04:36:54 +0200670
671 if (unlikely(!mapping))
672 return !TestSetPageDirty(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 spin_lock(&mapping->private_lock);
675 if (page_has_buffers(page)) {
676 struct buffer_head *head = page_buffers(page);
677 struct buffer_head *bh = head;
678
679 do {
680 set_buffer_dirty(bh);
681 bh = bh->b_this_page;
682 } while (bh != head);
683 }
Greg Thelen7c9d3ff2015-05-22 17:13:16 -0400684 /*
685 * Use mem_group_begin_page_stat() to keep PageDirty synchronized with
686 * per-memcg dirty page counters.
687 */
688 memcg = mem_cgroup_begin_page_stat(page);
Linus Torvaldsa8e7d492009-03-19 11:32:05 -0700689 newly_dirty = !TestSetPageDirty(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 spin_unlock(&mapping->private_lock);
691
Linus Torvaldsa8e7d492009-03-19 11:32:05 -0700692 if (newly_dirty)
Greg Thelen7c9d3ff2015-05-22 17:13:16 -0400693 __set_page_dirty(page, mapping, memcg, 1);
694
695 mem_cgroup_end_page_stat(memcg);
696
697 if (newly_dirty)
698 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
699
Linus Torvaldsa8e7d492009-03-19 11:32:05 -0700700 return newly_dirty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702EXPORT_SYMBOL(__set_page_dirty_buffers);
703
704/*
705 * Write out and wait upon a list of buffers.
706 *
707 * We have conflicting pressures: we want to make sure that all
708 * initially dirty buffers get waited on, but that any subsequently
709 * dirtied buffers don't. After all, we don't want fsync to last
710 * forever if somebody is actively writing to the file.
711 *
712 * Do this in two main stages: first we copy dirty buffers to a
713 * temporary inode list, queueing the writes as we go. Then we clean
714 * up, waiting for those writes to complete.
715 *
716 * During this second stage, any subsequent updates to the file may end
717 * up refiling the buffer on the original inode's dirty list again, so
718 * there is a chance we will end up with a buffer queued for write but
719 * not yet completed on that list. So, as a final cleanup we go through
720 * the osync code to catch these locked, dirty buffers without requeuing
721 * any newly dirty buffers for write.
722 */
723static int fsync_buffers_list(spinlock_t *lock, struct list_head *list)
724{
725 struct buffer_head *bh;
726 struct list_head tmp;
Jens Axboe7eaceac2011-03-10 08:52:07 +0100727 struct address_space *mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 int err = 0, err2;
Jens Axboe4ee24912011-03-17 10:51:40 +0100729 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 INIT_LIST_HEAD(&tmp);
Jens Axboe4ee24912011-03-17 10:51:40 +0100732 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 spin_lock(lock);
735 while (!list_empty(list)) {
736 bh = BH_ENTRY(list->next);
Jan Kara535ee2f2008-02-08 04:21:59 -0800737 mapping = bh->b_assoc_map;
Jan Kara58ff4072006-10-17 00:10:19 -0700738 __remove_assoc_queue(bh);
Jan Kara535ee2f2008-02-08 04:21:59 -0800739 /* Avoid race with mark_buffer_dirty_inode() which does
740 * a lockless check and we rely on seeing the dirty bit */
741 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (buffer_dirty(bh) || buffer_locked(bh)) {
743 list_add(&bh->b_assoc_buffers, &tmp);
Jan Kara535ee2f2008-02-08 04:21:59 -0800744 bh->b_assoc_map = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 if (buffer_dirty(bh)) {
746 get_bh(bh);
747 spin_unlock(lock);
748 /*
749 * Ensure any pending I/O completes so that
Christoph Hellwig9cb569d2010-08-11 17:06:24 +0200750 * write_dirty_buffer() actually writes the
751 * current contents - it is a noop if I/O is
752 * still in flight on potentially older
753 * contents.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 */
Jens Axboe721a9602011-03-09 11:56:30 +0100755 write_dirty_buffer(bh, WRITE_SYNC);
Jens Axboe9cf6b722009-04-06 14:48:03 +0200756
757 /*
758 * Kick off IO for the previous mapping. Note
759 * that we will not run the very last mapping,
760 * wait_on_buffer() will do that for us
761 * through sync_buffer().
762 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 brelse(bh);
764 spin_lock(lock);
765 }
766 }
767 }
768
Jens Axboe4ee24912011-03-17 10:51:40 +0100769 spin_unlock(lock);
770 blk_finish_plug(&plug);
771 spin_lock(lock);
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 while (!list_empty(&tmp)) {
774 bh = BH_ENTRY(tmp.prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 get_bh(bh);
Jan Kara535ee2f2008-02-08 04:21:59 -0800776 mapping = bh->b_assoc_map;
777 __remove_assoc_queue(bh);
778 /* Avoid race with mark_buffer_dirty_inode() which does
779 * a lockless check and we rely on seeing the dirty bit */
780 smp_mb();
781 if (buffer_dirty(bh)) {
782 list_add(&bh->b_assoc_buffers,
Jan Karae3892292008-03-04 14:28:33 -0800783 &mapping->private_list);
Jan Kara535ee2f2008-02-08 04:21:59 -0800784 bh->b_assoc_map = mapping;
785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 spin_unlock(lock);
787 wait_on_buffer(bh);
788 if (!buffer_uptodate(bh))
789 err = -EIO;
790 brelse(bh);
791 spin_lock(lock);
792 }
793
794 spin_unlock(lock);
795 err2 = osync_buffers_list(lock, list);
796 if (err)
797 return err;
798 else
799 return err2;
800}
801
802/*
803 * Invalidate any and all dirty buffers on a given inode. We are
804 * probably unmounting the fs, but that doesn't mean we have already
805 * done a sync(). Just drop the buffers from the inode list.
806 *
807 * NOTE: we take the inode's blockdev's mapping's private_lock. Which
808 * assumes that all the buffers are against the blockdev. Not true
809 * for reiserfs.
810 */
811void invalidate_inode_buffers(struct inode *inode)
812{
813 if (inode_has_buffers(inode)) {
814 struct address_space *mapping = &inode->i_data;
815 struct list_head *list = &mapping->private_list;
Rafael Aquini252aa6f2012-12-11 16:02:35 -0800816 struct address_space *buffer_mapping = mapping->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 spin_lock(&buffer_mapping->private_lock);
819 while (!list_empty(list))
820 __remove_assoc_queue(BH_ENTRY(list->next));
821 spin_unlock(&buffer_mapping->private_lock);
822 }
823}
Jan Kara52b19ac2008-09-23 18:24:08 +0200824EXPORT_SYMBOL(invalidate_inode_buffers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826/*
827 * Remove any clean buffers from the inode's buffer list. This is called
828 * when we're trying to free the inode itself. Those buffers can pin it.
829 *
830 * Returns true if all buffers were removed.
831 */
832int remove_inode_buffers(struct inode *inode)
833{
834 int ret = 1;
835
836 if (inode_has_buffers(inode)) {
837 struct address_space *mapping = &inode->i_data;
838 struct list_head *list = &mapping->private_list;
Rafael Aquini252aa6f2012-12-11 16:02:35 -0800839 struct address_space *buffer_mapping = mapping->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 spin_lock(&buffer_mapping->private_lock);
842 while (!list_empty(list)) {
843 struct buffer_head *bh = BH_ENTRY(list->next);
844 if (buffer_dirty(bh)) {
845 ret = 0;
846 break;
847 }
848 __remove_assoc_queue(bh);
849 }
850 spin_unlock(&buffer_mapping->private_lock);
851 }
852 return ret;
853}
854
855/*
856 * Create the appropriate buffers when given a page for data area and
857 * the size of each buffer.. Use the bh->b_this_page linked list to
858 * follow the buffers created. Return NULL if unable to create more
859 * buffers.
860 *
861 * The retry flag is used to differentiate async IO (paging, swapping)
862 * which may not fail from ordinary buffer allocations.
863 */
864struct buffer_head *alloc_page_buffers(struct page *page, unsigned long size,
865 int retry)
866{
867 struct buffer_head *bh, *head;
868 long offset;
869
870try_again:
871 head = NULL;
872 offset = PAGE_SIZE;
873 while ((offset -= size) >= 0) {
874 bh = alloc_buffer_head(GFP_NOFS);
875 if (!bh)
876 goto no_grow;
877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 bh->b_this_page = head;
879 bh->b_blocknr = -1;
880 head = bh;
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 bh->b_size = size;
883
884 /* Link the buffer to its page */
885 set_bh_page(bh, page, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
887 return head;
888/*
889 * In case anything failed, we just free everything we got.
890 */
891no_grow:
892 if (head) {
893 do {
894 bh = head;
895 head = head->b_this_page;
896 free_buffer_head(bh);
897 } while (head);
898 }
899
900 /*
901 * Return failure for non-async IO requests. Async IO requests
902 * are not allowed to fail, so we have to wait until buffer heads
903 * become available. But we don't want tasks sleeping with
904 * partially complete buffers, so all were released above.
905 */
906 if (!retry)
907 return NULL;
908
909 /* We're _really_ low on memory. Now we just
910 * wait for old buffer heads to become free due to
911 * finishing IO. Since this is an async request and
912 * the reserve list is empty, we're sure there are
913 * async buffer heads in use.
914 */
915 free_more_memory();
916 goto try_again;
917}
918EXPORT_SYMBOL_GPL(alloc_page_buffers);
919
920static inline void
921link_dev_buffers(struct page *page, struct buffer_head *head)
922{
923 struct buffer_head *bh, *tail;
924
925 bh = head;
926 do {
927 tail = bh;
928 bh = bh->b_this_page;
929 } while (bh);
930 tail->b_this_page = head;
931 attach_page_buffers(page, head);
932}
933
Linus Torvaldsbbec02702012-11-29 12:31:52 -0800934static sector_t blkdev_max_block(struct block_device *bdev, unsigned int size)
935{
936 sector_t retval = ~((sector_t)0);
937 loff_t sz = i_size_read(bdev->bd_inode);
938
939 if (sz) {
940 unsigned int sizebits = blksize_bits(size);
941 retval = (sz >> sizebits);
942 }
943 return retval;
944}
945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946/*
947 * Initialise the state of a blockdev page's buffers.
948 */
Hugh Dickins676ce6d2012-08-23 12:17:36 +0200949static sector_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950init_page_buffers(struct page *page, struct block_device *bdev,
951 sector_t block, int size)
952{
953 struct buffer_head *head = page_buffers(page);
954 struct buffer_head *bh = head;
955 int uptodate = PageUptodate(page);
Linus Torvaldsbbec02702012-11-29 12:31:52 -0800956 sector_t end_block = blkdev_max_block(I_BDEV(bdev->bd_inode), size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958 do {
959 if (!buffer_mapped(bh)) {
960 init_buffer(bh, NULL, NULL);
961 bh->b_bdev = bdev;
962 bh->b_blocknr = block;
963 if (uptodate)
964 set_buffer_uptodate(bh);
Jeff Moyer080399a2012-05-11 16:34:10 +0200965 if (block < end_block)
966 set_buffer_mapped(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 }
968 block++;
969 bh = bh->b_this_page;
970 } while (bh != head);
Hugh Dickins676ce6d2012-08-23 12:17:36 +0200971
972 /*
973 * Caller needs to validate requested block against end of device.
974 */
975 return end_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976}
977
978/*
979 * Create the page-cache page that contains the requested block.
980 *
Hugh Dickins676ce6d2012-08-23 12:17:36 +0200981 * This is used purely for blockdev mappings.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 */
Hugh Dickins676ce6d2012-08-23 12:17:36 +0200983static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984grow_dev_page(struct block_device *bdev, sector_t block,
Gioh Kim3b5e6452014-09-04 22:04:42 -0400985 pgoff_t index, int size, int sizebits, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
987 struct inode *inode = bdev->bd_inode;
988 struct page *page;
989 struct buffer_head *bh;
Hugh Dickins676ce6d2012-08-23 12:17:36 +0200990 sector_t end_block;
991 int ret = 0; /* Will call free_more_memory() */
Johannes Weiner84235de2013-10-16 13:47:00 -0700992 gfp_t gfp_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Gioh Kim3b5e6452014-09-04 22:04:42 -0400994 gfp_mask = (mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS) | gfp;
995
Johannes Weiner84235de2013-10-16 13:47:00 -0700996 /*
997 * XXX: __getblk_slow() can not really deal with failure and
998 * will endlessly loop on improvised global reclaim. Prefer
999 * looping in the allocator rather than here, at least that
1000 * code knows what it's doing.
1001 */
1002 gfp_mask |= __GFP_NOFAIL;
1003
1004 page = find_or_create_page(inode->i_mapping, index, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 if (!page)
Hugh Dickins676ce6d2012-08-23 12:17:36 +02001006 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Eric Sesterhenne827f922006-03-26 18:24:46 +02001008 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
1010 if (page_has_buffers(page)) {
1011 bh = page_buffers(page);
1012 if (bh->b_size == size) {
Hugh Dickins676ce6d2012-08-23 12:17:36 +02001013 end_block = init_page_buffers(page, bdev,
Anton Altaparmakovf2d5a942014-09-22 01:53:03 +01001014 (sector_t)index << sizebits,
1015 size);
Hugh Dickins676ce6d2012-08-23 12:17:36 +02001016 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018 if (!try_to_free_buffers(page))
1019 goto failed;
1020 }
1021
1022 /*
1023 * Allocate some buffers for this page
1024 */
1025 bh = alloc_page_buffers(page, size, 0);
1026 if (!bh)
1027 goto failed;
1028
1029 /*
1030 * Link the page to the buffers and initialise them. Take the
1031 * lock to be atomic wrt __find_get_block(), which does not
1032 * run under the page lock.
1033 */
1034 spin_lock(&inode->i_mapping->private_lock);
1035 link_dev_buffers(page, bh);
Anton Altaparmakovf2d5a942014-09-22 01:53:03 +01001036 end_block = init_page_buffers(page, bdev, (sector_t)index << sizebits,
1037 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 spin_unlock(&inode->i_mapping->private_lock);
Hugh Dickins676ce6d2012-08-23 12:17:36 +02001039done:
1040 ret = (block < end_block) ? 1 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 unlock_page(page);
1043 page_cache_release(page);
Hugh Dickins676ce6d2012-08-23 12:17:36 +02001044 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
1046
1047/*
1048 * Create buffers for the specified block device block's page. If
1049 * that page was dirty, the buffers are set dirty also.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001051static int
Gioh Kim3b5e6452014-09-04 22:04:42 -04001052grow_buffers(struct block_device *bdev, sector_t block, int size, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 pgoff_t index;
1055 int sizebits;
1056
1057 sizebits = -1;
1058 do {
1059 sizebits++;
1060 } while ((size << sizebits) < PAGE_SIZE);
1061
1062 index = block >> sizebits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Andrew Mortone5657932006-10-11 01:21:46 -07001064 /*
1065 * Check for a block which wants to lie outside our maximum possible
1066 * pagecache index. (this comparison is done using sector_t types).
1067 */
1068 if (unlikely(index != block >> sizebits)) {
1069 char b[BDEVNAME_SIZE];
1070
1071 printk(KERN_ERR "%s: requested out-of-range block %llu for "
1072 "device %s\n",
Harvey Harrison8e24eea2008-04-30 00:55:09 -07001073 __func__, (unsigned long long)block,
Andrew Mortone5657932006-10-11 01:21:46 -07001074 bdevname(bdev, b));
1075 return -EIO;
1076 }
Hugh Dickins676ce6d2012-08-23 12:17:36 +02001077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 /* Create a page with the proper size buffers.. */
Gioh Kim3b5e6452014-09-04 22:04:42 -04001079 return grow_dev_page(bdev, block, index, size, sizebits, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
Gioh Kim3b5e6452014-09-04 22:04:42 -04001082struct buffer_head *
1083__getblk_slow(struct block_device *bdev, sector_t block,
1084 unsigned size, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
1086 /* Size must be multiple of hard sectorsize */
Martin K. Petersene1defc42009-05-22 17:17:49 -04001087 if (unlikely(size & (bdev_logical_block_size(bdev)-1) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 (size < 512 || size > PAGE_SIZE))) {
1089 printk(KERN_ERR "getblk(): invalid block size %d requested\n",
1090 size);
Martin K. Petersene1defc42009-05-22 17:17:49 -04001091 printk(KERN_ERR "logical block size: %d\n",
1092 bdev_logical_block_size(bdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 dump_stack();
1095 return NULL;
1096 }
1097
Hugh Dickins676ce6d2012-08-23 12:17:36 +02001098 for (;;) {
1099 struct buffer_head *bh;
1100 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102 bh = __find_get_block(bdev, block, size);
1103 if (bh)
1104 return bh;
Hugh Dickins676ce6d2012-08-23 12:17:36 +02001105
Gioh Kim3b5e6452014-09-04 22:04:42 -04001106 ret = grow_buffers(bdev, block, size, gfp);
Hugh Dickins676ce6d2012-08-23 12:17:36 +02001107 if (ret < 0)
1108 return NULL;
1109 if (ret == 0)
1110 free_more_memory();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 }
1112}
Gioh Kim3b5e6452014-09-04 22:04:42 -04001113EXPORT_SYMBOL(__getblk_slow);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115/*
1116 * The relationship between dirty buffers and dirty pages:
1117 *
1118 * Whenever a page has any dirty buffers, the page's dirty bit is set, and
1119 * the page is tagged dirty in its radix tree.
1120 *
1121 * At all times, the dirtiness of the buffers represents the dirtiness of
1122 * subsections of the page. If the page has buffers, the page dirty bit is
1123 * merely a hint about the true dirty state.
1124 *
1125 * When a page is set dirty in its entirety, all its buffers are marked dirty
1126 * (if the page has buffers).
1127 *
1128 * When a buffer is marked dirty, its page is dirtied, but the page's other
1129 * buffers are not.
1130 *
1131 * Also. When blockdev buffers are explicitly read with bread(), they
1132 * individually become uptodate. But their backing page remains not
1133 * uptodate - even if all of its buffers are uptodate. A subsequent
1134 * block_read_full_page() against that page will discover all the uptodate
1135 * buffers, will set the page uptodate and will perform no I/O.
1136 */
1137
1138/**
1139 * mark_buffer_dirty - mark a buffer_head as needing writeout
Martin Waitz67be2dd2005-05-01 08:59:26 -07001140 * @bh: the buffer_head to mark dirty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 *
1142 * mark_buffer_dirty() will set the dirty bit against the buffer, then set its
1143 * backing page dirty, then tag the page as dirty in its address_space's radix
1144 * tree and then attach the address_space's inode to its superblock's dirty
1145 * inode list.
1146 *
1147 * mark_buffer_dirty() is atomic. It takes bh->b_page->mapping->private_lock,
Dave Chinner250df6e2011-03-22 22:23:36 +11001148 * mapping->tree_lock and mapping->host->i_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001150void mark_buffer_dirty(struct buffer_head *bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
Nick Piggin787d2212007-07-17 04:03:34 -07001152 WARN_ON_ONCE(!buffer_uptodate(bh));
Linus Torvalds1be62dc2008-04-04 14:38:17 -07001153
Tejun Heo5305cb82013-01-11 13:06:36 -08001154 trace_block_dirty_buffer(bh);
1155
Linus Torvalds1be62dc2008-04-04 14:38:17 -07001156 /*
1157 * Very *carefully* optimize the it-is-already-dirty case.
1158 *
1159 * Don't let the final "is it dirty" escape to before we
1160 * perhaps modified the buffer.
1161 */
1162 if (buffer_dirty(bh)) {
1163 smp_mb();
1164 if (buffer_dirty(bh))
1165 return;
1166 }
1167
Linus Torvaldsa8e7d492009-03-19 11:32:05 -07001168 if (!test_set_buffer_dirty(bh)) {
1169 struct page *page = bh->b_page;
Greg Thelen7c9d3ff2015-05-22 17:13:16 -04001170 struct address_space *mapping = NULL;
1171 struct mem_cgroup *memcg;
1172
1173 memcg = mem_cgroup_begin_page_stat(page);
Linus Torvalds8e9d78e2009-08-21 17:40:08 -07001174 if (!TestSetPageDirty(page)) {
Greg Thelen7c9d3ff2015-05-22 17:13:16 -04001175 mapping = page_mapping(page);
Linus Torvalds8e9d78e2009-08-21 17:40:08 -07001176 if (mapping)
Greg Thelen7c9d3ff2015-05-22 17:13:16 -04001177 __set_page_dirty(page, mapping, memcg, 0);
Linus Torvalds8e9d78e2009-08-21 17:40:08 -07001178 }
Greg Thelen7c9d3ff2015-05-22 17:13:16 -04001179 mem_cgroup_end_page_stat(memcg);
1180 if (mapping)
1181 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Linus Torvaldsa8e7d492009-03-19 11:32:05 -07001182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -07001184EXPORT_SYMBOL(mark_buffer_dirty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186/*
1187 * Decrement a buffer_head's reference count. If all buffers against a page
1188 * have zero reference count, are clean and unlocked, and if the page is clean
1189 * and unlocked then try_to_free_buffers() may strip the buffers from the page
1190 * in preparation for freeing it (sometimes, rarely, buffers are removed from
1191 * a page but it ends up not being freed, and buffers may later be reattached).
1192 */
1193void __brelse(struct buffer_head * buf)
1194{
1195 if (atomic_read(&buf->b_count)) {
1196 put_bh(buf);
1197 return;
1198 }
Arjan van de Ven5c752ad2008-07-25 19:45:40 -07001199 WARN(1, KERN_ERR "VFS: brelse: Trying to free free buffer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -07001201EXPORT_SYMBOL(__brelse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203/*
1204 * bforget() is like brelse(), except it discards any
1205 * potentially dirty data.
1206 */
1207void __bforget(struct buffer_head *bh)
1208{
1209 clear_buffer_dirty(bh);
Jan Kara535ee2f2008-02-08 04:21:59 -08001210 if (bh->b_assoc_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 struct address_space *buffer_mapping = bh->b_page->mapping;
1212
1213 spin_lock(&buffer_mapping->private_lock);
1214 list_del_init(&bh->b_assoc_buffers);
Jan Kara58ff4072006-10-17 00:10:19 -07001215 bh->b_assoc_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 spin_unlock(&buffer_mapping->private_lock);
1217 }
1218 __brelse(bh);
1219}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -07001220EXPORT_SYMBOL(__bforget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222static struct buffer_head *__bread_slow(struct buffer_head *bh)
1223{
1224 lock_buffer(bh);
1225 if (buffer_uptodate(bh)) {
1226 unlock_buffer(bh);
1227 return bh;
1228 } else {
1229 get_bh(bh);
1230 bh->b_end_io = end_buffer_read_sync;
1231 submit_bh(READ, bh);
1232 wait_on_buffer(bh);
1233 if (buffer_uptodate(bh))
1234 return bh;
1235 }
1236 brelse(bh);
1237 return NULL;
1238}
1239
1240/*
1241 * Per-cpu buffer LRU implementation. To reduce the cost of __find_get_block().
1242 * The bhs[] array is sorted - newest buffer is at bhs[0]. Buffers have their
1243 * refcount elevated by one when they're in an LRU. A buffer can only appear
1244 * once in a particular CPU's LRU. A single buffer can be present in multiple
1245 * CPU's LRUs at the same time.
1246 *
1247 * This is a transparent caching front-end to sb_bread(), sb_getblk() and
1248 * sb_find_get_block().
1249 *
1250 * The LRUs themselves only need locking against invalidate_bh_lrus. We use
1251 * a local interrupt disable for that.
1252 */
1253
Sebastien Buisson86cf78d2014-10-09 15:29:38 -07001254#define BH_LRU_SIZE 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256struct bh_lru {
1257 struct buffer_head *bhs[BH_LRU_SIZE];
1258};
1259
1260static DEFINE_PER_CPU(struct bh_lru, bh_lrus) = {{ NULL }};
1261
1262#ifdef CONFIG_SMP
1263#define bh_lru_lock() local_irq_disable()
1264#define bh_lru_unlock() local_irq_enable()
1265#else
1266#define bh_lru_lock() preempt_disable()
1267#define bh_lru_unlock() preempt_enable()
1268#endif
1269
1270static inline void check_irqs_on(void)
1271{
1272#ifdef irqs_disabled
1273 BUG_ON(irqs_disabled());
1274#endif
1275}
1276
1277/*
1278 * The LRU management algorithm is dopey-but-simple. Sorry.
1279 */
1280static void bh_lru_install(struct buffer_head *bh)
1281{
1282 struct buffer_head *evictee = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 check_irqs_on();
1285 bh_lru_lock();
Christoph Lameterc7b92512010-12-06 11:16:28 -06001286 if (__this_cpu_read(bh_lrus.bhs[0]) != bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 struct buffer_head *bhs[BH_LRU_SIZE];
1288 int in;
1289 int out = 0;
1290
1291 get_bh(bh);
1292 bhs[out++] = bh;
1293 for (in = 0; in < BH_LRU_SIZE; in++) {
Christoph Lameterc7b92512010-12-06 11:16:28 -06001294 struct buffer_head *bh2 =
1295 __this_cpu_read(bh_lrus.bhs[in]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 if (bh2 == bh) {
1298 __brelse(bh2);
1299 } else {
1300 if (out >= BH_LRU_SIZE) {
1301 BUG_ON(evictee != NULL);
1302 evictee = bh2;
1303 } else {
1304 bhs[out++] = bh2;
1305 }
1306 }
1307 }
1308 while (out < BH_LRU_SIZE)
1309 bhs[out++] = NULL;
Christoph Lameterca6673b02013-12-03 17:32:53 -06001310 memcpy(this_cpu_ptr(&bh_lrus.bhs), bhs, sizeof(bhs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
1312 bh_lru_unlock();
1313
1314 if (evictee)
1315 __brelse(evictee);
1316}
1317
1318/*
1319 * Look up the bh in this cpu's LRU. If it's there, move it to the head.
1320 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001321static struct buffer_head *
Tomasz Kvarsin3991d3b2007-02-12 00:52:14 -08001322lookup_bh_lru(struct block_device *bdev, sector_t block, unsigned size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
1324 struct buffer_head *ret = NULL;
Tomasz Kvarsin3991d3b2007-02-12 00:52:14 -08001325 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 check_irqs_on();
1328 bh_lru_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 for (i = 0; i < BH_LRU_SIZE; i++) {
Christoph Lameterc7b92512010-12-06 11:16:28 -06001330 struct buffer_head *bh = __this_cpu_read(bh_lrus.bhs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Zach Brown9470dd52014-10-13 15:55:05 -07001332 if (bh && bh->b_blocknr == block && bh->b_bdev == bdev &&
1333 bh->b_size == size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 if (i) {
1335 while (i) {
Christoph Lameterc7b92512010-12-06 11:16:28 -06001336 __this_cpu_write(bh_lrus.bhs[i],
1337 __this_cpu_read(bh_lrus.bhs[i - 1]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 i--;
1339 }
Christoph Lameterc7b92512010-12-06 11:16:28 -06001340 __this_cpu_write(bh_lrus.bhs[0], bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 }
1342 get_bh(bh);
1343 ret = bh;
1344 break;
1345 }
1346 }
1347 bh_lru_unlock();
1348 return ret;
1349}
1350
1351/*
1352 * Perform a pagecache lookup for the matching buffer. If it's there, refresh
1353 * it in the LRU and mark it as accessed. If it is not present then return
1354 * NULL
1355 */
1356struct buffer_head *
Tomasz Kvarsin3991d3b2007-02-12 00:52:14 -08001357__find_get_block(struct block_device *bdev, sector_t block, unsigned size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
1359 struct buffer_head *bh = lookup_bh_lru(bdev, block, size);
1360
1361 if (bh == NULL) {
Mel Gorman2457aec2014-06-04 16:10:31 -07001362 /* __find_get_block_slow will mark the page accessed */
Coywolf Qi Hunt385fd4c2005-11-07 00:59:39 -08001363 bh = __find_get_block_slow(bdev, block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 if (bh)
1365 bh_lru_install(bh);
Mel Gorman2457aec2014-06-04 16:10:31 -07001366 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 touch_buffer(bh);
Mel Gorman2457aec2014-06-04 16:10:31 -07001368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 return bh;
1370}
1371EXPORT_SYMBOL(__find_get_block);
1372
1373/*
Gioh Kim3b5e6452014-09-04 22:04:42 -04001374 * __getblk_gfp() will locate (and, if necessary, create) the buffer_head
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 * which corresponds to the passed block_device, block and size. The
1376 * returned buffer has its reference count incremented.
1377 *
Gioh Kim3b5e6452014-09-04 22:04:42 -04001378 * __getblk_gfp() will lock up the machine if grow_dev_page's
1379 * try_to_free_buffers() attempt is failing. FIXME, perhaps?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 */
1381struct buffer_head *
Gioh Kim3b5e6452014-09-04 22:04:42 -04001382__getblk_gfp(struct block_device *bdev, sector_t block,
1383 unsigned size, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
1385 struct buffer_head *bh = __find_get_block(bdev, block, size);
1386
1387 might_sleep();
1388 if (bh == NULL)
Gioh Kim3b5e6452014-09-04 22:04:42 -04001389 bh = __getblk_slow(bdev, block, size, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 return bh;
1391}
Gioh Kim3b5e6452014-09-04 22:04:42 -04001392EXPORT_SYMBOL(__getblk_gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394/*
1395 * Do async read-ahead on a buffer..
1396 */
Tomasz Kvarsin3991d3b2007-02-12 00:52:14 -08001397void __breadahead(struct block_device *bdev, sector_t block, unsigned size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398{
1399 struct buffer_head *bh = __getblk(bdev, block, size);
Andrew Mortona3e713b2005-10-30 15:03:15 -08001400 if (likely(bh)) {
1401 ll_rw_block(READA, 1, &bh);
1402 brelse(bh);
1403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404}
1405EXPORT_SYMBOL(__breadahead);
1406
1407/**
Gioh Kim3b5e6452014-09-04 22:04:42 -04001408 * __bread_gfp() - reads a specified block and returns the bh
Martin Waitz67be2dd2005-05-01 08:59:26 -07001409 * @bdev: the block_device to read from
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 * @block: number of block
1411 * @size: size (in bytes) to read
Gioh Kim3b5e6452014-09-04 22:04:42 -04001412 * @gfp: page allocation flag
1413 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 * Reads a specified block, and returns buffer head that contains it.
Gioh Kim3b5e6452014-09-04 22:04:42 -04001415 * The page cache can be allocated from non-movable area
1416 * not to prevent page migration if you set gfp to zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 * It returns NULL if the block was unreadable.
1418 */
1419struct buffer_head *
Gioh Kim3b5e6452014-09-04 22:04:42 -04001420__bread_gfp(struct block_device *bdev, sector_t block,
1421 unsigned size, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422{
Gioh Kim3b5e6452014-09-04 22:04:42 -04001423 struct buffer_head *bh = __getblk_gfp(bdev, block, size, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Andrew Mortona3e713b2005-10-30 15:03:15 -08001425 if (likely(bh) && !buffer_uptodate(bh))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 bh = __bread_slow(bh);
1427 return bh;
1428}
Gioh Kim3b5e6452014-09-04 22:04:42 -04001429EXPORT_SYMBOL(__bread_gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
1431/*
1432 * invalidate_bh_lrus() is called rarely - but not only at unmount.
1433 * This doesn't race because it runs in each cpu either in irq
1434 * or with preempt disabled.
1435 */
1436static void invalidate_bh_lru(void *arg)
1437{
1438 struct bh_lru *b = &get_cpu_var(bh_lrus);
1439 int i;
1440
1441 for (i = 0; i < BH_LRU_SIZE; i++) {
1442 brelse(b->bhs[i]);
1443 b->bhs[i] = NULL;
1444 }
1445 put_cpu_var(bh_lrus);
1446}
Gilad Ben-Yossef42be35d2012-03-28 14:42:45 -07001447
1448static bool has_bh_in_lru(int cpu, void *dummy)
1449{
1450 struct bh_lru *b = per_cpu_ptr(&bh_lrus, cpu);
1451 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Gilad Ben-Yossef42be35d2012-03-28 14:42:45 -07001453 for (i = 0; i < BH_LRU_SIZE; i++) {
1454 if (b->bhs[i])
1455 return 1;
1456 }
1457
1458 return 0;
1459}
1460
Peter Zijlstraf9a14392007-05-06 14:49:55 -07001461void invalidate_bh_lrus(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
Gilad Ben-Yossef42be35d2012-03-28 14:42:45 -07001463 on_each_cpu_cond(has_bh_in_lru, invalidate_bh_lru, NULL, 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464}
Nick Piggin9db55792008-02-08 04:19:49 -08001465EXPORT_SYMBOL_GPL(invalidate_bh_lrus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
1467void set_bh_page(struct buffer_head *bh,
1468 struct page *page, unsigned long offset)
1469{
1470 bh->b_page = page;
Eric Sesterhenne827f922006-03-26 18:24:46 +02001471 BUG_ON(offset >= PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 if (PageHighMem(page))
1473 /*
1474 * This catches illegal uses and preserves the offset:
1475 */
1476 bh->b_data = (char *)(0 + offset);
1477 else
1478 bh->b_data = page_address(page) + offset;
1479}
1480EXPORT_SYMBOL(set_bh_page);
1481
1482/*
1483 * Called when truncating a buffer on a page completely.
1484 */
Mel Gormane7470ee2014-06-04 16:10:29 -07001485
1486/* Bits that are cleared during an invalidate */
1487#define BUFFER_FLAGS_DISCARD \
1488 (1 << BH_Mapped | 1 << BH_New | 1 << BH_Req | \
1489 1 << BH_Delay | 1 << BH_Unwritten)
1490
Arjan van de Ven858119e2006-01-14 13:20:43 -08001491static void discard_buffer(struct buffer_head * bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
Mel Gormane7470ee2014-06-04 16:10:29 -07001493 unsigned long b_state, b_state_old;
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 lock_buffer(bh);
1496 clear_buffer_dirty(bh);
1497 bh->b_bdev = NULL;
Mel Gormane7470ee2014-06-04 16:10:29 -07001498 b_state = bh->b_state;
1499 for (;;) {
1500 b_state_old = cmpxchg(&bh->b_state, b_state,
1501 (b_state & ~BUFFER_FLAGS_DISCARD));
1502 if (b_state_old == b_state)
1503 break;
1504 b_state = b_state_old;
1505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 unlock_buffer(bh);
1507}
1508
1509/**
Wang Sheng-Hui814e1d22011-09-01 08:22:57 +08001510 * block_invalidatepage - invalidate part or all of a buffer-backed page
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 *
1512 * @page: the page which is affected
Lukas Czernerd47992f2013-05-21 23:17:23 -04001513 * @offset: start of the range to invalidate
1514 * @length: length of the range to invalidate
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 *
1516 * block_invalidatepage() is called when all or part of the page has become
Wang Sheng-Hui814e1d22011-09-01 08:22:57 +08001517 * invalidated by a truncate operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 *
1519 * block_invalidatepage() does not have to release all buffers, but it must
1520 * ensure that no dirty buffer is left outside @offset and that no I/O
1521 * is underway against any of the blocks which are outside the truncation
1522 * point. Because the caller is about to free (and possibly reuse) those
1523 * blocks on-disk.
1524 */
Lukas Czernerd47992f2013-05-21 23:17:23 -04001525void block_invalidatepage(struct page *page, unsigned int offset,
1526 unsigned int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527{
1528 struct buffer_head *head, *bh, *next;
1529 unsigned int curr_off = 0;
Lukas Czernerd47992f2013-05-21 23:17:23 -04001530 unsigned int stop = length + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532 BUG_ON(!PageLocked(page));
1533 if (!page_has_buffers(page))
1534 goto out;
1535
Lukas Czernerd47992f2013-05-21 23:17:23 -04001536 /*
1537 * Check for overflow
1538 */
1539 BUG_ON(stop > PAGE_CACHE_SIZE || stop < length);
1540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 head = page_buffers(page);
1542 bh = head;
1543 do {
1544 unsigned int next_off = curr_off + bh->b_size;
1545 next = bh->b_this_page;
1546
1547 /*
Lukas Czernerd47992f2013-05-21 23:17:23 -04001548 * Are we still fully in range ?
1549 */
1550 if (next_off > stop)
1551 goto out;
1552
1553 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 * is this block fully invalidated?
1555 */
1556 if (offset <= curr_off)
1557 discard_buffer(bh);
1558 curr_off = next_off;
1559 bh = next;
1560 } while (bh != head);
1561
1562 /*
1563 * We release buffers only if the entire page is being invalidated.
1564 * The get_block cached value has been unconditionally invalidated,
1565 * so real IO is not possible anymore.
1566 */
1567 if (offset == 0)
NeilBrown2ff28e22006-03-26 01:37:18 -08001568 try_to_release_page(page, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569out:
NeilBrown2ff28e22006-03-26 01:37:18 -08001570 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571}
1572EXPORT_SYMBOL(block_invalidatepage);
1573
Lukas Czernerd47992f2013-05-21 23:17:23 -04001574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575/*
1576 * We attach and possibly dirty the buffers atomically wrt
1577 * __set_page_dirty_buffers() via private_lock. try_to_free_buffers
1578 * is already excluded via the page lock.
1579 */
1580void create_empty_buffers(struct page *page,
1581 unsigned long blocksize, unsigned long b_state)
1582{
1583 struct buffer_head *bh, *head, *tail;
1584
1585 head = alloc_page_buffers(page, blocksize, 1);
1586 bh = head;
1587 do {
1588 bh->b_state |= b_state;
1589 tail = bh;
1590 bh = bh->b_this_page;
1591 } while (bh);
1592 tail->b_this_page = head;
1593
1594 spin_lock(&page->mapping->private_lock);
1595 if (PageUptodate(page) || PageDirty(page)) {
1596 bh = head;
1597 do {
1598 if (PageDirty(page))
1599 set_buffer_dirty(bh);
1600 if (PageUptodate(page))
1601 set_buffer_uptodate(bh);
1602 bh = bh->b_this_page;
1603 } while (bh != head);
1604 }
1605 attach_page_buffers(page, head);
1606 spin_unlock(&page->mapping->private_lock);
1607}
1608EXPORT_SYMBOL(create_empty_buffers);
1609
1610/*
1611 * We are taking a block for data and we don't want any output from any
1612 * buffer-cache aliases starting from return from that function and
1613 * until the moment when something will explicitly mark the buffer
1614 * dirty (hopefully that will not happen until we will free that block ;-)
1615 * We don't even need to mark it not-uptodate - nobody can expect
1616 * anything from a newly allocated buffer anyway. We used to used
1617 * unmap_buffer() for such invalidation, but that was wrong. We definitely
1618 * don't want to mark the alias unmapped, for example - it would confuse
1619 * anyone who might pick it with bread() afterwards...
1620 *
1621 * Also.. Note that bforget() doesn't lock the buffer. So there can
1622 * be writeout I/O going on against recently-freed buffers. We don't
1623 * wait on that I/O in bforget() - it's more efficient to wait on the I/O
1624 * only if we really need to. That happens here.
1625 */
1626void unmap_underlying_metadata(struct block_device *bdev, sector_t block)
1627{
1628 struct buffer_head *old_bh;
1629
1630 might_sleep();
1631
Coywolf Qi Hunt385fd4c2005-11-07 00:59:39 -08001632 old_bh = __find_get_block_slow(bdev, block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 if (old_bh) {
1634 clear_buffer_dirty(old_bh);
1635 wait_on_buffer(old_bh);
1636 clear_buffer_req(old_bh);
1637 __brelse(old_bh);
1638 }
1639}
1640EXPORT_SYMBOL(unmap_underlying_metadata);
1641
1642/*
Linus Torvalds45bce8f2012-11-29 10:21:43 -08001643 * Size is a power-of-two in the range 512..PAGE_SIZE,
1644 * and the case we care about most is PAGE_SIZE.
1645 *
1646 * So this *could* possibly be written with those
1647 * constraints in mind (relevant mostly if some
1648 * architecture has a slow bit-scan instruction)
1649 */
1650static inline int block_size_bits(unsigned int blocksize)
1651{
1652 return ilog2(blocksize);
1653}
1654
1655static struct buffer_head *create_page_buffers(struct page *page, struct inode *inode, unsigned int b_state)
1656{
1657 BUG_ON(!PageLocked(page));
1658
1659 if (!page_has_buffers(page))
1660 create_empty_buffers(page, 1 << ACCESS_ONCE(inode->i_blkbits), b_state);
1661 return page_buffers(page);
1662}
1663
1664/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 * NOTE! All mapped/uptodate combinations are valid:
1666 *
1667 * Mapped Uptodate Meaning
1668 *
1669 * No No "unknown" - must do get_block()
1670 * No Yes "hole" - zero-filled
1671 * Yes No "allocated" - allocated on disk, not read in
1672 * Yes Yes "valid" - allocated and up-to-date in memory.
1673 *
1674 * "Dirty" is valid only with the last case (mapped+uptodate).
1675 */
1676
1677/*
1678 * While block_write_full_page is writing back the dirty buffers under
1679 * the page lock, whoever dirtied the buffers may decide to clean them
1680 * again at any time. We handle that by only looking at the buffer
1681 * state inside lock_buffer().
1682 *
1683 * If block_write_full_page() is called for regular writeback
1684 * (wbc->sync_mode == WB_SYNC_NONE) then it will redirty a page which has a
1685 * locked buffer. This only can happen if someone has written the buffer
1686 * directly, with submit_bh(). At the address_space level PageWriteback
1687 * prevents this contention from occurring.
Theodore Ts'o6e34eed2009-04-07 18:12:43 -04001688 *
1689 * If block_write_full_page() is called with wbc->sync_mode ==
Jens Axboe721a9602011-03-09 11:56:30 +01001690 * WB_SYNC_ALL, the writes are posted using WRITE_SYNC; this
1691 * causes the writes to be flagged as synchronous writes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 */
1693static int __block_write_full_page(struct inode *inode, struct page *page,
Chris Mason35c80d52009-04-15 13:22:38 -04001694 get_block_t *get_block, struct writeback_control *wbc,
1695 bh_end_io_t *handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696{
1697 int err;
1698 sector_t block;
1699 sector_t last_block;
Andrew Mortonf0fbd5f2005-05-05 16:15:48 -07001700 struct buffer_head *bh, *head;
Linus Torvalds45bce8f2012-11-29 10:21:43 -08001701 unsigned int blocksize, bbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 int nr_underway = 0;
Tejun Heoeb5d0e32015-06-02 08:37:23 -06001703 int write_op = (wbc->sync_mode == WB_SYNC_ALL ? WRITE_SYNC : WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Linus Torvalds45bce8f2012-11-29 10:21:43 -08001705 head = create_page_buffers(page, inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 (1 << BH_Dirty)|(1 << BH_Uptodate));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
1708 /*
1709 * Be very careful. We have no exclusion from __set_page_dirty_buffers
1710 * here, and the (potentially unmapped) buffers may become dirty at
1711 * any time. If a buffer becomes dirty here after we've inspected it
1712 * then we just miss that fact, and the page stays dirty.
1713 *
1714 * Buffers outside i_size may be dirtied by __set_page_dirty_buffers;
1715 * handle that here by just cleaning them.
1716 */
1717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 bh = head;
Linus Torvalds45bce8f2012-11-29 10:21:43 -08001719 blocksize = bh->b_size;
1720 bbits = block_size_bits(blocksize);
1721
1722 block = (sector_t)page->index << (PAGE_CACHE_SHIFT - bbits);
1723 last_block = (i_size_read(inode) - 1) >> bbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
1725 /*
1726 * Get all the dirty buffers mapped to disk addresses and
1727 * handle any aliases from the underlying blockdev's mapping.
1728 */
1729 do {
1730 if (block > last_block) {
1731 /*
1732 * mapped buffers outside i_size will occur, because
1733 * this page can be outside i_size when there is a
1734 * truncate in progress.
1735 */
1736 /*
1737 * The buffer was zeroed by block_write_full_page()
1738 */
1739 clear_buffer_dirty(bh);
1740 set_buffer_uptodate(bh);
Alex Tomas29a814d2008-07-11 19:27:31 -04001741 } else if ((!buffer_mapped(bh) || buffer_delay(bh)) &&
1742 buffer_dirty(bh)) {
Badari Pulavartyb0cf2322006-03-26 01:38:00 -08001743 WARN_ON(bh->b_size != blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 err = get_block(inode, block, bh, 1);
1745 if (err)
1746 goto recover;
Alex Tomas29a814d2008-07-11 19:27:31 -04001747 clear_buffer_delay(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 if (buffer_new(bh)) {
1749 /* blockdev mappings never come here */
1750 clear_buffer_new(bh);
1751 unmap_underlying_metadata(bh->b_bdev,
1752 bh->b_blocknr);
1753 }
1754 }
1755 bh = bh->b_this_page;
1756 block++;
1757 } while (bh != head);
1758
1759 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 if (!buffer_mapped(bh))
1761 continue;
1762 /*
1763 * If it's a fully non-blocking write attempt and we cannot
1764 * lock the buffer then redirty the page. Note that this can
Jens Axboe5b0830c2009-09-23 19:37:09 +02001765 * potentially cause a busy-wait loop from writeback threads
1766 * and kswapd activity, but those code paths have their own
1767 * higher-level throttling.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 */
Wu Fengguang1b430be2010-10-26 14:21:26 -07001769 if (wbc->sync_mode != WB_SYNC_NONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 lock_buffer(bh);
Nick Pigginca5de402008-08-02 12:02:13 +02001771 } else if (!trylock_buffer(bh)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 redirty_page_for_writepage(wbc, page);
1773 continue;
1774 }
1775 if (test_clear_buffer_dirty(bh)) {
Chris Mason35c80d52009-04-15 13:22:38 -04001776 mark_buffer_async_write_endio(bh, handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 } else {
1778 unlock_buffer(bh);
1779 }
1780 } while ((bh = bh->b_this_page) != head);
1781
1782 /*
1783 * The page and its buffers are protected by PageWriteback(), so we can
1784 * drop the bh refcounts early.
1785 */
1786 BUG_ON(PageWriteback(page));
1787 set_page_writeback(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
1789 do {
1790 struct buffer_head *next = bh->b_this_page;
1791 if (buffer_async_write(bh)) {
Tejun Heo9ffcc0d2015-06-02 08:39:48 -06001792 submit_bh_wbc(write_op, bh, 0, wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 nr_underway++;
1794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 bh = next;
1796 } while (bh != head);
Andrew Morton05937ba2005-05-05 16:15:47 -07001797 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
1799 err = 0;
1800done:
1801 if (nr_underway == 0) {
1802 /*
1803 * The page was marked dirty, but the buffers were
1804 * clean. Someone wrote them back by hand with
1805 * ll_rw_block/submit_bh. A rare case.
1806 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 end_page_writeback(page);
Nick Piggin3d67f2d2007-05-06 14:49:05 -07001808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 /*
1810 * The page and buffer_heads can be released at any time from
1811 * here on.
1812 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 }
1814 return err;
1815
1816recover:
1817 /*
1818 * ENOSPC, or some other error. We may already have added some
1819 * blocks to the file, so we need to write these out to avoid
1820 * exposing stale data.
1821 * The page is currently locked and not marked for writeback
1822 */
1823 bh = head;
1824 /* Recovery: lock and submit the mapped buffers */
1825 do {
Alex Tomas29a814d2008-07-11 19:27:31 -04001826 if (buffer_mapped(bh) && buffer_dirty(bh) &&
1827 !buffer_delay(bh)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 lock_buffer(bh);
Chris Mason35c80d52009-04-15 13:22:38 -04001829 mark_buffer_async_write_endio(bh, handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 } else {
1831 /*
1832 * The buffer may have been set dirty during
1833 * attachment to a dirty page.
1834 */
1835 clear_buffer_dirty(bh);
1836 }
1837 } while ((bh = bh->b_this_page) != head);
1838 SetPageError(page);
1839 BUG_ON(PageWriteback(page));
Andrew Morton7e4c3692007-05-08 00:23:27 -07001840 mapping_set_error(page->mapping, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 set_page_writeback(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 do {
1843 struct buffer_head *next = bh->b_this_page;
1844 if (buffer_async_write(bh)) {
1845 clear_buffer_dirty(bh);
Tejun Heo9ffcc0d2015-06-02 08:39:48 -06001846 submit_bh_wbc(write_op, bh, 0, wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 nr_underway++;
1848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 bh = next;
1850 } while (bh != head);
Nick Pigginffda9d32007-02-20 13:57:54 -08001851 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 goto done;
1853}
1854
Nick Pigginafddba42007-10-16 01:25:01 -07001855/*
1856 * If a page has any new buffers, zero them out here, and mark them uptodate
1857 * and dirty so they'll be written out (in order to prevent uninitialised
1858 * block data from leaking). And clear the new bit.
1859 */
1860void page_zero_new_buffers(struct page *page, unsigned from, unsigned to)
1861{
1862 unsigned int block_start, block_end;
1863 struct buffer_head *head, *bh;
1864
1865 BUG_ON(!PageLocked(page));
1866 if (!page_has_buffers(page))
1867 return;
1868
1869 bh = head = page_buffers(page);
1870 block_start = 0;
1871 do {
1872 block_end = block_start + bh->b_size;
1873
1874 if (buffer_new(bh)) {
1875 if (block_end > from && block_start < to) {
1876 if (!PageUptodate(page)) {
1877 unsigned start, size;
1878
1879 start = max(from, block_start);
1880 size = min(to, block_end) - start;
1881
Christoph Lametereebd2aa2008-02-04 22:28:29 -08001882 zero_user(page, start, size);
Nick Pigginafddba42007-10-16 01:25:01 -07001883 set_buffer_uptodate(bh);
1884 }
1885
1886 clear_buffer_new(bh);
1887 mark_buffer_dirty(bh);
1888 }
1889 }
1890
1891 block_start = block_end;
1892 bh = bh->b_this_page;
1893 } while (bh != head);
1894}
1895EXPORT_SYMBOL(page_zero_new_buffers);
1896
Christoph Hellwigebdec242010-10-06 10:47:23 +02001897int __block_write_begin(struct page *page, loff_t pos, unsigned len,
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001898 get_block_t *get_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899{
Christoph Hellwigebdec242010-10-06 10:47:23 +02001900 unsigned from = pos & (PAGE_CACHE_SIZE - 1);
1901 unsigned to = from + len;
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001902 struct inode *inode = page->mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 unsigned block_start, block_end;
1904 sector_t block;
1905 int err = 0;
1906 unsigned blocksize, bbits;
1907 struct buffer_head *bh, *head, *wait[2], **wait_bh=wait;
1908
1909 BUG_ON(!PageLocked(page));
1910 BUG_ON(from > PAGE_CACHE_SIZE);
1911 BUG_ON(to > PAGE_CACHE_SIZE);
1912 BUG_ON(from > to);
1913
Linus Torvalds45bce8f2012-11-29 10:21:43 -08001914 head = create_page_buffers(page, inode, 0);
1915 blocksize = head->b_size;
1916 bbits = block_size_bits(blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 block = (sector_t)page->index << (PAGE_CACHE_SHIFT - bbits);
1919
1920 for(bh = head, block_start = 0; bh != head || !block_start;
1921 block++, block_start=block_end, bh = bh->b_this_page) {
1922 block_end = block_start + blocksize;
1923 if (block_end <= from || block_start >= to) {
1924 if (PageUptodate(page)) {
1925 if (!buffer_uptodate(bh))
1926 set_buffer_uptodate(bh);
1927 }
1928 continue;
1929 }
1930 if (buffer_new(bh))
1931 clear_buffer_new(bh);
1932 if (!buffer_mapped(bh)) {
Badari Pulavartyb0cf2322006-03-26 01:38:00 -08001933 WARN_ON(bh->b_size != blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 err = get_block(inode, block, bh, 1);
1935 if (err)
Nick Pigginf3ddbdc2005-05-05 16:15:45 -07001936 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 if (buffer_new(bh)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 unmap_underlying_metadata(bh->b_bdev,
1939 bh->b_blocknr);
1940 if (PageUptodate(page)) {
Nick Piggin637aff42007-10-16 01:25:00 -07001941 clear_buffer_new(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 set_buffer_uptodate(bh);
Nick Piggin637aff42007-10-16 01:25:00 -07001943 mark_buffer_dirty(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 continue;
1945 }
Christoph Lametereebd2aa2008-02-04 22:28:29 -08001946 if (block_end > to || block_start < from)
1947 zero_user_segments(page,
1948 to, block_end,
1949 block_start, from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 continue;
1951 }
1952 }
1953 if (PageUptodate(page)) {
1954 if (!buffer_uptodate(bh))
1955 set_buffer_uptodate(bh);
1956 continue;
1957 }
1958 if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
David Chinner33a266d2007-02-12 00:51:41 -08001959 !buffer_unwritten(bh) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 (block_start < from || block_end > to)) {
1961 ll_rw_block(READ, 1, &bh);
1962 *wait_bh++=bh;
1963 }
1964 }
1965 /*
1966 * If we issued read requests - let them complete.
1967 */
1968 while(wait_bh > wait) {
1969 wait_on_buffer(*--wait_bh);
1970 if (!buffer_uptodate(*wait_bh))
Nick Pigginf3ddbdc2005-05-05 16:15:45 -07001971 err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 }
Jan Karaf9f07b62011-06-14 00:58:27 +02001973 if (unlikely(err))
Nick Pigginafddba42007-10-16 01:25:01 -07001974 page_zero_new_buffers(page, from, to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 return err;
1976}
Christoph Hellwigebdec242010-10-06 10:47:23 +02001977EXPORT_SYMBOL(__block_write_begin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
1979static int __block_commit_write(struct inode *inode, struct page *page,
1980 unsigned from, unsigned to)
1981{
1982 unsigned block_start, block_end;
1983 int partial = 0;
1984 unsigned blocksize;
1985 struct buffer_head *bh, *head;
1986
Linus Torvalds45bce8f2012-11-29 10:21:43 -08001987 bh = head = page_buffers(page);
1988 blocksize = bh->b_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
Linus Torvalds45bce8f2012-11-29 10:21:43 -08001990 block_start = 0;
1991 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 block_end = block_start + blocksize;
1993 if (block_end <= from || block_start >= to) {
1994 if (!buffer_uptodate(bh))
1995 partial = 1;
1996 } else {
1997 set_buffer_uptodate(bh);
1998 mark_buffer_dirty(bh);
1999 }
Nick Pigginafddba42007-10-16 01:25:01 -07002000 clear_buffer_new(bh);
Linus Torvalds45bce8f2012-11-29 10:21:43 -08002001
2002 block_start = block_end;
2003 bh = bh->b_this_page;
2004 } while (bh != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
2006 /*
2007 * If this is a partial write which happened to make all buffers
2008 * uptodate then we can optimize away a bogus readpage() for
2009 * the next read(). Here we 'discover' whether the page went
2010 * uptodate as a result of this (potentially partial) write.
2011 */
2012 if (!partial)
2013 SetPageUptodate(page);
2014 return 0;
2015}
2016
2017/*
Christoph Hellwig155130a2010-06-04 11:29:58 +02002018 * block_write_begin takes care of the basic task of block allocation and
2019 * bringing partial write blocks uptodate first.
2020 *
npiggin@suse.de7bb46a62010-05-27 01:05:33 +10002021 * The filesystem needs to handle block truncation upon failure.
Nick Pigginafddba42007-10-16 01:25:01 -07002022 */
Christoph Hellwig155130a2010-06-04 11:29:58 +02002023int block_write_begin(struct address_space *mapping, loff_t pos, unsigned len,
2024 unsigned flags, struct page **pagep, get_block_t *get_block)
Nick Pigginafddba42007-10-16 01:25:01 -07002025{
Christoph Hellwig6e1db882010-06-04 11:29:57 +02002026 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
Nick Pigginafddba42007-10-16 01:25:01 -07002027 struct page *page;
Christoph Hellwig6e1db882010-06-04 11:29:57 +02002028 int status;
Nick Pigginafddba42007-10-16 01:25:01 -07002029
Christoph Hellwig6e1db882010-06-04 11:29:57 +02002030 page = grab_cache_page_write_begin(mapping, index, flags);
2031 if (!page)
2032 return -ENOMEM;
Nick Pigginafddba42007-10-16 01:25:01 -07002033
Christoph Hellwig6e1db882010-06-04 11:29:57 +02002034 status = __block_write_begin(page, pos, len, get_block);
Nick Pigginafddba42007-10-16 01:25:01 -07002035 if (unlikely(status)) {
Christoph Hellwig6e1db882010-06-04 11:29:57 +02002036 unlock_page(page);
2037 page_cache_release(page);
2038 page = NULL;
Nick Pigginafddba42007-10-16 01:25:01 -07002039 }
2040
Christoph Hellwig6e1db882010-06-04 11:29:57 +02002041 *pagep = page;
Nick Pigginafddba42007-10-16 01:25:01 -07002042 return status;
2043}
2044EXPORT_SYMBOL(block_write_begin);
2045
2046int block_write_end(struct file *file, struct address_space *mapping,
2047 loff_t pos, unsigned len, unsigned copied,
2048 struct page *page, void *fsdata)
2049{
2050 struct inode *inode = mapping->host;
2051 unsigned start;
2052
2053 start = pos & (PAGE_CACHE_SIZE - 1);
2054
2055 if (unlikely(copied < len)) {
2056 /*
2057 * The buffers that were written will now be uptodate, so we
2058 * don't have to worry about a readpage reading them and
2059 * overwriting a partial write. However if we have encountered
2060 * a short write and only partially written into a buffer, it
2061 * will not be marked uptodate, so a readpage might come in and
2062 * destroy our partial write.
2063 *
2064 * Do the simplest thing, and just treat any short write to a
2065 * non uptodate page as a zero-length write, and force the
2066 * caller to redo the whole thing.
2067 */
2068 if (!PageUptodate(page))
2069 copied = 0;
2070
2071 page_zero_new_buffers(page, start+copied, start+len);
2072 }
2073 flush_dcache_page(page);
2074
2075 /* This could be a short (even 0-length) commit */
2076 __block_commit_write(inode, page, start, start+copied);
2077
2078 return copied;
2079}
2080EXPORT_SYMBOL(block_write_end);
2081
2082int generic_write_end(struct file *file, struct address_space *mapping,
2083 loff_t pos, unsigned len, unsigned copied,
2084 struct page *page, void *fsdata)
2085{
2086 struct inode *inode = mapping->host;
Jan Kara90a80202014-10-01 21:49:18 -04002087 loff_t old_size = inode->i_size;
Jan Karac7d206b2008-07-11 19:27:31 -04002088 int i_size_changed = 0;
Nick Pigginafddba42007-10-16 01:25:01 -07002089
2090 copied = block_write_end(file, mapping, pos, len, copied, page, fsdata);
2091
2092 /*
2093 * No need to use i_size_read() here, the i_size
2094 * cannot change under us because we hold i_mutex.
2095 *
2096 * But it's important to update i_size while still holding page lock:
2097 * page writeout could otherwise come in and zero beyond i_size.
2098 */
2099 if (pos+copied > inode->i_size) {
2100 i_size_write(inode, pos+copied);
Jan Karac7d206b2008-07-11 19:27:31 -04002101 i_size_changed = 1;
Nick Pigginafddba42007-10-16 01:25:01 -07002102 }
2103
2104 unlock_page(page);
2105 page_cache_release(page);
2106
Jan Kara90a80202014-10-01 21:49:18 -04002107 if (old_size < pos)
2108 pagecache_isize_extended(inode, old_size, pos);
Jan Karac7d206b2008-07-11 19:27:31 -04002109 /*
2110 * Don't mark the inode dirty under page lock. First, it unnecessarily
2111 * makes the holding time of page lock longer. Second, it forces lock
2112 * ordering of page lock and transaction start for journaling
2113 * filesystems.
2114 */
2115 if (i_size_changed)
2116 mark_inode_dirty(inode);
2117
Nick Pigginafddba42007-10-16 01:25:01 -07002118 return copied;
2119}
2120EXPORT_SYMBOL(generic_write_end);
2121
2122/*
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07002123 * block_is_partially_uptodate checks whether buffers within a page are
2124 * uptodate or not.
2125 *
2126 * Returns true if all buffers which correspond to a file portion
2127 * we want to read are uptodate.
2128 */
Al Viroc186afb42014-02-02 21:16:54 -05002129int block_is_partially_uptodate(struct page *page, unsigned long from,
2130 unsigned long count)
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07002131{
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07002132 unsigned block_start, block_end, blocksize;
2133 unsigned to;
2134 struct buffer_head *bh, *head;
2135 int ret = 1;
2136
2137 if (!page_has_buffers(page))
2138 return 0;
2139
Linus Torvalds45bce8f2012-11-29 10:21:43 -08002140 head = page_buffers(page);
2141 blocksize = head->b_size;
Al Viroc186afb42014-02-02 21:16:54 -05002142 to = min_t(unsigned, PAGE_CACHE_SIZE - from, count);
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07002143 to = from + to;
2144 if (from < blocksize && to > PAGE_CACHE_SIZE - blocksize)
2145 return 0;
2146
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07002147 bh = head;
2148 block_start = 0;
2149 do {
2150 block_end = block_start + blocksize;
2151 if (block_end > from && block_start < to) {
2152 if (!buffer_uptodate(bh)) {
2153 ret = 0;
2154 break;
2155 }
2156 if (block_end >= to)
2157 break;
2158 }
2159 block_start = block_end;
2160 bh = bh->b_this_page;
2161 } while (bh != head);
2162
2163 return ret;
2164}
2165EXPORT_SYMBOL(block_is_partially_uptodate);
2166
2167/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 * Generic "read page" function for block devices that have the normal
2169 * get_block functionality. This is most of the block device filesystems.
2170 * Reads the page asynchronously --- the unlock_buffer() and
2171 * set/clear_buffer_uptodate() functions propagate buffer state into the
2172 * page struct once IO has completed.
2173 */
2174int block_read_full_page(struct page *page, get_block_t *get_block)
2175{
2176 struct inode *inode = page->mapping->host;
2177 sector_t iblock, lblock;
2178 struct buffer_head *bh, *head, *arr[MAX_BUF_PER_PAGE];
Linus Torvalds45bce8f2012-11-29 10:21:43 -08002179 unsigned int blocksize, bbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 int nr, i;
2181 int fully_mapped = 1;
2182
Linus Torvalds45bce8f2012-11-29 10:21:43 -08002183 head = create_page_buffers(page, inode, 0);
2184 blocksize = head->b_size;
2185 bbits = block_size_bits(blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Linus Torvalds45bce8f2012-11-29 10:21:43 -08002187 iblock = (sector_t)page->index << (PAGE_CACHE_SHIFT - bbits);
2188 lblock = (i_size_read(inode)+blocksize-1) >> bbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 bh = head;
2190 nr = 0;
2191 i = 0;
2192
2193 do {
2194 if (buffer_uptodate(bh))
2195 continue;
2196
2197 if (!buffer_mapped(bh)) {
Andrew Mortonc64610b2005-05-16 21:53:49 -07002198 int err = 0;
2199
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 fully_mapped = 0;
2201 if (iblock < lblock) {
Badari Pulavartyb0cf2322006-03-26 01:38:00 -08002202 WARN_ON(bh->b_size != blocksize);
Andrew Mortonc64610b2005-05-16 21:53:49 -07002203 err = get_block(inode, iblock, bh, 0);
2204 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 SetPageError(page);
2206 }
2207 if (!buffer_mapped(bh)) {
Christoph Lametereebd2aa2008-02-04 22:28:29 -08002208 zero_user(page, i * blocksize, blocksize);
Andrew Mortonc64610b2005-05-16 21:53:49 -07002209 if (!err)
2210 set_buffer_uptodate(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 continue;
2212 }
2213 /*
2214 * get_block() might have updated the buffer
2215 * synchronously
2216 */
2217 if (buffer_uptodate(bh))
2218 continue;
2219 }
2220 arr[nr++] = bh;
2221 } while (i++, iblock++, (bh = bh->b_this_page) != head);
2222
2223 if (fully_mapped)
2224 SetPageMappedToDisk(page);
2225
2226 if (!nr) {
2227 /*
2228 * All buffers are uptodate - we can set the page uptodate
2229 * as well. But not if get_block() returned an error.
2230 */
2231 if (!PageError(page))
2232 SetPageUptodate(page);
2233 unlock_page(page);
2234 return 0;
2235 }
2236
2237 /* Stage two: lock the buffers */
2238 for (i = 0; i < nr; i++) {
2239 bh = arr[i];
2240 lock_buffer(bh);
2241 mark_buffer_async_read(bh);
2242 }
2243
2244 /*
2245 * Stage 3: start the IO. Check for uptodateness
2246 * inside the buffer lock in case another process reading
2247 * the underlying blockdev brought it uptodate (the sct fix).
2248 */
2249 for (i = 0; i < nr; i++) {
2250 bh = arr[i];
2251 if (buffer_uptodate(bh))
2252 end_buffer_async_read(bh, 1);
2253 else
2254 submit_bh(READ, bh);
2255 }
2256 return 0;
2257}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -07002258EXPORT_SYMBOL(block_read_full_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
2260/* utility function for filesystems that need to do work on expanding
Nick Piggin89e10782007-10-16 01:25:07 -07002261 * truncates. Uses filesystem pagecache writes to allow the filesystem to
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 * deal with the hole.
2263 */
Nick Piggin89e10782007-10-16 01:25:07 -07002264int generic_cont_expand_simple(struct inode *inode, loff_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265{
2266 struct address_space *mapping = inode->i_mapping;
2267 struct page *page;
Nick Piggin89e10782007-10-16 01:25:07 -07002268 void *fsdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 int err;
2270
npiggin@suse.dec08d3b02009-08-21 02:35:06 +10002271 err = inode_newsize_ok(inode, size);
2272 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 goto out;
2274
Nick Piggin89e10782007-10-16 01:25:07 -07002275 err = pagecache_write_begin(NULL, mapping, size, 0,
2276 AOP_FLAG_UNINTERRUPTIBLE|AOP_FLAG_CONT_EXPAND,
2277 &page, &fsdata);
2278 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 goto out;
OGAWA Hirofumi05eb0b52006-01-08 01:02:13 -08002280
Nick Piggin89e10782007-10-16 01:25:07 -07002281 err = pagecache_write_end(NULL, mapping, size, 0, 0, page, fsdata);
2282 BUG_ON(err > 0);
OGAWA Hirofumi05eb0b52006-01-08 01:02:13 -08002283
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284out:
2285 return err;
2286}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -07002287EXPORT_SYMBOL(generic_cont_expand_simple);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
Adrian Bunkf1e3af72008-04-29 00:59:01 -07002289static int cont_expand_zero(struct file *file, struct address_space *mapping,
2290 loff_t pos, loff_t *bytes)
OGAWA Hirofumi05eb0b52006-01-08 01:02:13 -08002291{
Nick Piggin89e10782007-10-16 01:25:07 -07002292 struct inode *inode = mapping->host;
2293 unsigned blocksize = 1 << inode->i_blkbits;
2294 struct page *page;
2295 void *fsdata;
2296 pgoff_t index, curidx;
2297 loff_t curpos;
2298 unsigned zerofrom, offset, len;
2299 int err = 0;
OGAWA Hirofumi05eb0b52006-01-08 01:02:13 -08002300
Nick Piggin89e10782007-10-16 01:25:07 -07002301 index = pos >> PAGE_CACHE_SHIFT;
2302 offset = pos & ~PAGE_CACHE_MASK;
2303
2304 while (index > (curidx = (curpos = *bytes)>>PAGE_CACHE_SHIFT)) {
2305 zerofrom = curpos & ~PAGE_CACHE_MASK;
2306 if (zerofrom & (blocksize-1)) {
2307 *bytes |= (blocksize-1);
2308 (*bytes)++;
2309 }
2310 len = PAGE_CACHE_SIZE - zerofrom;
2311
2312 err = pagecache_write_begin(file, mapping, curpos, len,
2313 AOP_FLAG_UNINTERRUPTIBLE,
2314 &page, &fsdata);
2315 if (err)
2316 goto out;
Christoph Lametereebd2aa2008-02-04 22:28:29 -08002317 zero_user(page, zerofrom, len);
Nick Piggin89e10782007-10-16 01:25:07 -07002318 err = pagecache_write_end(file, mapping, curpos, len, len,
2319 page, fsdata);
2320 if (err < 0)
2321 goto out;
2322 BUG_ON(err != len);
2323 err = 0;
OGAWA Hirofumi061e9742008-04-28 02:16:28 -07002324
2325 balance_dirty_pages_ratelimited(mapping);
Mikulas Patockac2ca0fc2014-07-27 13:00:41 -04002326
2327 if (unlikely(fatal_signal_pending(current))) {
2328 err = -EINTR;
2329 goto out;
2330 }
Nick Piggin89e10782007-10-16 01:25:07 -07002331 }
2332
2333 /* page covers the boundary, find the boundary offset */
2334 if (index == curidx) {
2335 zerofrom = curpos & ~PAGE_CACHE_MASK;
2336 /* if we will expand the thing last block will be filled */
2337 if (offset <= zerofrom) {
2338 goto out;
2339 }
2340 if (zerofrom & (blocksize-1)) {
2341 *bytes |= (blocksize-1);
2342 (*bytes)++;
2343 }
2344 len = offset - zerofrom;
2345
2346 err = pagecache_write_begin(file, mapping, curpos, len,
2347 AOP_FLAG_UNINTERRUPTIBLE,
2348 &page, &fsdata);
2349 if (err)
2350 goto out;
Christoph Lametereebd2aa2008-02-04 22:28:29 -08002351 zero_user(page, zerofrom, len);
Nick Piggin89e10782007-10-16 01:25:07 -07002352 err = pagecache_write_end(file, mapping, curpos, len, len,
2353 page, fsdata);
2354 if (err < 0)
2355 goto out;
2356 BUG_ON(err != len);
2357 err = 0;
2358 }
2359out:
2360 return err;
OGAWA Hirofumi05eb0b52006-01-08 01:02:13 -08002361}
2362
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363/*
2364 * For moronic filesystems that do not allow holes in file.
2365 * We may have to extend the file.
2366 */
Christoph Hellwig282dc172010-06-04 11:29:55 +02002367int cont_write_begin(struct file *file, struct address_space *mapping,
Nick Piggin89e10782007-10-16 01:25:07 -07002368 loff_t pos, unsigned len, unsigned flags,
2369 struct page **pagep, void **fsdata,
2370 get_block_t *get_block, loff_t *bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 struct inode *inode = mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 unsigned blocksize = 1 << inode->i_blkbits;
Nick Piggin89e10782007-10-16 01:25:07 -07002374 unsigned zerofrom;
2375 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Nick Piggin89e10782007-10-16 01:25:07 -07002377 err = cont_expand_zero(file, mapping, pos, bytes);
2378 if (err)
Christoph Hellwig155130a2010-06-04 11:29:58 +02002379 return err;
Nick Piggin89e10782007-10-16 01:25:07 -07002380
2381 zerofrom = *bytes & ~PAGE_CACHE_MASK;
2382 if (pos+len > *bytes && zerofrom & (blocksize-1)) {
2383 *bytes |= (blocksize-1);
2384 (*bytes)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 }
2386
Christoph Hellwig155130a2010-06-04 11:29:58 +02002387 return block_write_begin(mapping, pos, len, flags, pagep, get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -07002389EXPORT_SYMBOL(cont_write_begin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391int block_commit_write(struct page *page, unsigned from, unsigned to)
2392{
2393 struct inode *inode = page->mapping->host;
2394 __block_commit_write(inode,page,from,to);
2395 return 0;
2396}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -07002397EXPORT_SYMBOL(block_commit_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398
David Chinner54171692007-07-19 17:39:55 +10002399/*
2400 * block_page_mkwrite() is not allowed to change the file size as it gets
2401 * called from a page fault handler when a page is first dirtied. Hence we must
2402 * be careful to check for EOF conditions here. We set the page up correctly
2403 * for a written page which means we get ENOSPC checking when writing into
2404 * holes and correct delalloc and unwritten extent mapping on filesystems that
2405 * support these features.
2406 *
2407 * We are not allowed to take the i_mutex here so we have to play games to
2408 * protect against truncate races as the page could now be beyond EOF. Because
npiggin@suse.de7bb46a62010-05-27 01:05:33 +10002409 * truncate writes the inode size before removing pages, once we have the
David Chinner54171692007-07-19 17:39:55 +10002410 * page lock we can determine safely if the page is beyond EOF. If it is not
2411 * beyond EOF, then the page is guaranteed safe against truncation until we
2412 * unlock the page.
Jan Karaea13a862011-05-24 00:23:35 +02002413 *
Jan Kara14da9202012-06-12 16:20:37 +02002414 * Direct callers of this function should protect against filesystem freezing
2415 * using sb_start_write() - sb_end_write() functions.
David Chinner54171692007-07-19 17:39:55 +10002416 */
Jan Kara24da4fa2011-05-24 00:23:34 +02002417int __block_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf,
2418 get_block_t get_block)
David Chinner54171692007-07-19 17:39:55 +10002419{
Nick Pigginc2ec1752009-03-31 15:23:21 -07002420 struct page *page = vmf->page;
Al Viro496ad9a2013-01-23 17:07:38 -05002421 struct inode *inode = file_inode(vma->vm_file);
David Chinner54171692007-07-19 17:39:55 +10002422 unsigned long end;
2423 loff_t size;
Jan Kara24da4fa2011-05-24 00:23:34 +02002424 int ret;
David Chinner54171692007-07-19 17:39:55 +10002425
2426 lock_page(page);
2427 size = i_size_read(inode);
2428 if ((page->mapping != inode->i_mapping) ||
Nick Piggin18336332007-07-20 00:31:45 -07002429 (page_offset(page) > size)) {
Jan Kara24da4fa2011-05-24 00:23:34 +02002430 /* We overload EFAULT to mean page got truncated */
2431 ret = -EFAULT;
2432 goto out_unlock;
David Chinner54171692007-07-19 17:39:55 +10002433 }
2434
2435 /* page is wholly or partially inside EOF */
2436 if (((page->index + 1) << PAGE_CACHE_SHIFT) > size)
2437 end = size & ~PAGE_CACHE_MASK;
2438 else
2439 end = PAGE_CACHE_SIZE;
2440
Christoph Hellwigebdec242010-10-06 10:47:23 +02002441 ret = __block_write_begin(page, 0, end, get_block);
David Chinner54171692007-07-19 17:39:55 +10002442 if (!ret)
2443 ret = block_commit_write(page, 0, end);
2444
Jan Kara24da4fa2011-05-24 00:23:34 +02002445 if (unlikely(ret < 0))
2446 goto out_unlock;
Jan Karaea13a862011-05-24 00:23:35 +02002447 set_page_dirty(page);
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08002448 wait_for_stable_page(page);
Jan Kara24da4fa2011-05-24 00:23:34 +02002449 return 0;
2450out_unlock:
2451 unlock_page(page);
David Chinner54171692007-07-19 17:39:55 +10002452 return ret;
2453}
Jan Kara24da4fa2011-05-24 00:23:34 +02002454EXPORT_SYMBOL(__block_page_mkwrite);
2455
2456int block_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf,
2457 get_block_t get_block)
2458{
Jan Karaea13a862011-05-24 00:23:35 +02002459 int ret;
Al Viro496ad9a2013-01-23 17:07:38 -05002460 struct super_block *sb = file_inode(vma->vm_file)->i_sb;
Jan Kara24da4fa2011-05-24 00:23:34 +02002461
Jan Kara14da9202012-06-12 16:20:37 +02002462 sb_start_pagefault(sb);
Theodore Ts'o041bbb6d2012-09-30 23:04:56 -04002463
2464 /*
2465 * Update file times before taking page lock. We may end up failing the
2466 * fault so this update may be superfluous but who really cares...
2467 */
2468 file_update_time(vma->vm_file);
2469
Jan Karaea13a862011-05-24 00:23:35 +02002470 ret = __block_page_mkwrite(vma, vmf, get_block);
Jan Kara14da9202012-06-12 16:20:37 +02002471 sb_end_pagefault(sb);
Jan Kara24da4fa2011-05-24 00:23:34 +02002472 return block_page_mkwrite_return(ret);
2473}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -07002474EXPORT_SYMBOL(block_page_mkwrite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
2476/*
Nick Piggin03158cd2007-10-16 01:25:25 -07002477 * nobh_write_begin()'s prereads are special: the buffer_heads are freed
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 * immediately, while under the page lock. So it needs a special end_io
2479 * handler which does not touch the bh after unlocking it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 */
2481static void end_buffer_read_nobh(struct buffer_head *bh, int uptodate)
2482{
Dmitry Monakhov68671f32007-10-16 01:24:47 -07002483 __end_buffer_read_notouch(bh, uptodate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484}
2485
2486/*
Nick Piggin03158cd2007-10-16 01:25:25 -07002487 * Attach the singly-linked list of buffers created by nobh_write_begin, to
2488 * the page (converting it to circular linked list and taking care of page
2489 * dirty races).
2490 */
2491static void attach_nobh_buffers(struct page *page, struct buffer_head *head)
2492{
2493 struct buffer_head *bh;
2494
2495 BUG_ON(!PageLocked(page));
2496
2497 spin_lock(&page->mapping->private_lock);
2498 bh = head;
2499 do {
2500 if (PageDirty(page))
2501 set_buffer_dirty(bh);
2502 if (!bh->b_this_page)
2503 bh->b_this_page = head;
2504 bh = bh->b_this_page;
2505 } while (bh != head);
2506 attach_page_buffers(page, head);
2507 spin_unlock(&page->mapping->private_lock);
2508}
2509
2510/*
Christoph Hellwigea0f04e2010-06-04 11:29:54 +02002511 * On entry, the page is fully not uptodate.
2512 * On exit the page is fully uptodate in the areas outside (from,to)
npiggin@suse.de7bb46a62010-05-27 01:05:33 +10002513 * The filesystem needs to handle block truncation upon failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 */
Christoph Hellwigea0f04e2010-06-04 11:29:54 +02002515int nobh_write_begin(struct address_space *mapping,
Nick Piggin03158cd2007-10-16 01:25:25 -07002516 loff_t pos, unsigned len, unsigned flags,
2517 struct page **pagep, void **fsdata,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 get_block_t *get_block)
2519{
Nick Piggin03158cd2007-10-16 01:25:25 -07002520 struct inode *inode = mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 const unsigned blkbits = inode->i_blkbits;
2522 const unsigned blocksize = 1 << blkbits;
Nick Piggina4b06722007-10-16 01:24:48 -07002523 struct buffer_head *head, *bh;
Nick Piggin03158cd2007-10-16 01:25:25 -07002524 struct page *page;
2525 pgoff_t index;
2526 unsigned from, to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 unsigned block_in_page;
Nick Piggina4b06722007-10-16 01:24:48 -07002528 unsigned block_start, block_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 sector_t block_in_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 int nr_reads = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 int ret = 0;
2532 int is_mapped_to_disk = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
Nick Piggin03158cd2007-10-16 01:25:25 -07002534 index = pos >> PAGE_CACHE_SHIFT;
2535 from = pos & (PAGE_CACHE_SIZE - 1);
2536 to = from + len;
2537
Nick Piggin54566b22009-01-04 12:00:53 -08002538 page = grab_cache_page_write_begin(mapping, index, flags);
Nick Piggin03158cd2007-10-16 01:25:25 -07002539 if (!page)
2540 return -ENOMEM;
2541 *pagep = page;
2542 *fsdata = NULL;
2543
2544 if (page_has_buffers(page)) {
Namhyung Kim309f77a2010-10-25 15:01:12 +09002545 ret = __block_write_begin(page, pos, len, get_block);
2546 if (unlikely(ret))
2547 goto out_release;
2548 return ret;
Nick Piggin03158cd2007-10-16 01:25:25 -07002549 }
Nick Piggina4b06722007-10-16 01:24:48 -07002550
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 if (PageMappedToDisk(page))
2552 return 0;
2553
Nick Piggina4b06722007-10-16 01:24:48 -07002554 /*
2555 * Allocate buffers so that we can keep track of state, and potentially
2556 * attach them to the page if an error occurs. In the common case of
2557 * no error, they will just be freed again without ever being attached
2558 * to the page (which is all OK, because we're under the page lock).
2559 *
2560 * Be careful: the buffer linked list is a NULL terminated one, rather
2561 * than the circular one we're used to.
2562 */
2563 head = alloc_page_buffers(page, blocksize, 0);
Nick Piggin03158cd2007-10-16 01:25:25 -07002564 if (!head) {
2565 ret = -ENOMEM;
2566 goto out_release;
2567 }
Nick Piggina4b06722007-10-16 01:24:48 -07002568
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 block_in_file = (sector_t)page->index << (PAGE_CACHE_SHIFT - blkbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
2571 /*
2572 * We loop across all blocks in the page, whether or not they are
2573 * part of the affected region. This is so we can discover if the
2574 * page is fully mapped-to-disk.
2575 */
Nick Piggina4b06722007-10-16 01:24:48 -07002576 for (block_start = 0, block_in_page = 0, bh = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 block_start < PAGE_CACHE_SIZE;
Nick Piggina4b06722007-10-16 01:24:48 -07002578 block_in_page++, block_start += blocksize, bh = bh->b_this_page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 int create;
2580
Nick Piggina4b06722007-10-16 01:24:48 -07002581 block_end = block_start + blocksize;
2582 bh->b_state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 create = 1;
2584 if (block_start >= to)
2585 create = 0;
2586 ret = get_block(inode, block_in_file + block_in_page,
Nick Piggina4b06722007-10-16 01:24:48 -07002587 bh, create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 if (ret)
2589 goto failed;
Nick Piggina4b06722007-10-16 01:24:48 -07002590 if (!buffer_mapped(bh))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 is_mapped_to_disk = 0;
Nick Piggina4b06722007-10-16 01:24:48 -07002592 if (buffer_new(bh))
2593 unmap_underlying_metadata(bh->b_bdev, bh->b_blocknr);
2594 if (PageUptodate(page)) {
2595 set_buffer_uptodate(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 continue;
Nick Piggina4b06722007-10-16 01:24:48 -07002597 }
2598 if (buffer_new(bh) || !buffer_mapped(bh)) {
Christoph Lametereebd2aa2008-02-04 22:28:29 -08002599 zero_user_segments(page, block_start, from,
2600 to, block_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 continue;
2602 }
Nick Piggina4b06722007-10-16 01:24:48 -07002603 if (buffer_uptodate(bh))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 continue; /* reiserfs does this */
2605 if (block_start < from || block_end > to) {
Nick Piggina4b06722007-10-16 01:24:48 -07002606 lock_buffer(bh);
2607 bh->b_end_io = end_buffer_read_nobh;
2608 submit_bh(READ, bh);
2609 nr_reads++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 }
2611 }
2612
2613 if (nr_reads) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 /*
2615 * The page is locked, so these buffers are protected from
2616 * any VM or truncate activity. Hence we don't need to care
2617 * for the buffer_head refcounts.
2618 */
Nick Piggina4b06722007-10-16 01:24:48 -07002619 for (bh = head; bh; bh = bh->b_this_page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 wait_on_buffer(bh);
2621 if (!buffer_uptodate(bh))
2622 ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 }
2624 if (ret)
2625 goto failed;
2626 }
2627
2628 if (is_mapped_to_disk)
2629 SetPageMappedToDisk(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
Nick Piggin03158cd2007-10-16 01:25:25 -07002631 *fsdata = head; /* to be released by nobh_write_end */
Nick Piggina4b06722007-10-16 01:24:48 -07002632
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 return 0;
2634
2635failed:
Nick Piggin03158cd2007-10-16 01:25:25 -07002636 BUG_ON(!ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 /*
Nick Piggina4b06722007-10-16 01:24:48 -07002638 * Error recovery is a bit difficult. We need to zero out blocks that
2639 * were newly allocated, and dirty them to ensure they get written out.
2640 * Buffers need to be attached to the page at this point, otherwise
2641 * the handling of potential IO errors during writeout would be hard
2642 * (could try doing synchronous writeout, but what if that fails too?)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 */
Nick Piggin03158cd2007-10-16 01:25:25 -07002644 attach_nobh_buffers(page, head);
2645 page_zero_new_buffers(page, from, to);
Nick Piggina4b06722007-10-16 01:24:48 -07002646
Nick Piggin03158cd2007-10-16 01:25:25 -07002647out_release:
2648 unlock_page(page);
2649 page_cache_release(page);
2650 *pagep = NULL;
Nick Piggina4b06722007-10-16 01:24:48 -07002651
npiggin@suse.de7bb46a62010-05-27 01:05:33 +10002652 return ret;
2653}
Nick Piggin03158cd2007-10-16 01:25:25 -07002654EXPORT_SYMBOL(nobh_write_begin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
Nick Piggin03158cd2007-10-16 01:25:25 -07002656int nobh_write_end(struct file *file, struct address_space *mapping,
2657 loff_t pos, unsigned len, unsigned copied,
2658 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659{
2660 struct inode *inode = page->mapping->host;
Nick Pigginefdc3132007-10-21 06:57:41 +02002661 struct buffer_head *head = fsdata;
Nick Piggin03158cd2007-10-16 01:25:25 -07002662 struct buffer_head *bh;
Dmitri Monakhov5b41e742008-03-28 14:15:52 -07002663 BUG_ON(fsdata != NULL && page_has_buffers(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
Dave Kleikampd4cf1092009-02-06 14:59:26 -06002665 if (unlikely(copied < len) && head)
Dmitri Monakhov5b41e742008-03-28 14:15:52 -07002666 attach_nobh_buffers(page, head);
2667 if (page_has_buffers(page))
2668 return generic_write_end(file, mapping, pos, len,
2669 copied, page, fsdata);
Nick Piggina4b06722007-10-16 01:24:48 -07002670
Nick Piggin22c8ca72007-02-20 13:58:09 -08002671 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 set_page_dirty(page);
Nick Piggin03158cd2007-10-16 01:25:25 -07002673 if (pos+copied > inode->i_size) {
2674 i_size_write(inode, pos+copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 mark_inode_dirty(inode);
2676 }
Nick Piggin03158cd2007-10-16 01:25:25 -07002677
2678 unlock_page(page);
2679 page_cache_release(page);
2680
Nick Piggin03158cd2007-10-16 01:25:25 -07002681 while (head) {
2682 bh = head;
2683 head = head->b_this_page;
2684 free_buffer_head(bh);
2685 }
2686
2687 return copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688}
Nick Piggin03158cd2007-10-16 01:25:25 -07002689EXPORT_SYMBOL(nobh_write_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
2691/*
2692 * nobh_writepage() - based on block_full_write_page() except
2693 * that it tries to operate without attaching bufferheads to
2694 * the page.
2695 */
2696int nobh_writepage(struct page *page, get_block_t *get_block,
2697 struct writeback_control *wbc)
2698{
2699 struct inode * const inode = page->mapping->host;
2700 loff_t i_size = i_size_read(inode);
2701 const pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
2702 unsigned offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 int ret;
2704
2705 /* Is the page fully inside i_size? */
2706 if (page->index < end_index)
2707 goto out;
2708
2709 /* Is the page fully outside i_size? (truncate in progress) */
2710 offset = i_size & (PAGE_CACHE_SIZE-1);
2711 if (page->index >= end_index+1 || !offset) {
2712 /*
2713 * The page may have dirty, unmapped buffers. For example,
2714 * they may have been added in ext3_writepage(). Make them
2715 * freeable here, so the page does not leak.
2716 */
2717#if 0
2718 /* Not really sure about this - do we need this ? */
2719 if (page->mapping->a_ops->invalidatepage)
2720 page->mapping->a_ops->invalidatepage(page, offset);
2721#endif
2722 unlock_page(page);
2723 return 0; /* don't care */
2724 }
2725
2726 /*
2727 * The page straddles i_size. It must be zeroed out on each and every
2728 * writepage invocation because it may be mmapped. "A file is mapped
2729 * in multiples of the page size. For a file that is not a multiple of
2730 * the page size, the remaining memory is zeroed when mapped, and
2731 * writes to that region are not written out to the file."
2732 */
Christoph Lametereebd2aa2008-02-04 22:28:29 -08002733 zero_user_segment(page, offset, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734out:
2735 ret = mpage_writepage(page, get_block, wbc);
2736 if (ret == -EAGAIN)
Chris Mason35c80d52009-04-15 13:22:38 -04002737 ret = __block_write_full_page(inode, page, get_block, wbc,
2738 end_buffer_async_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 return ret;
2740}
2741EXPORT_SYMBOL(nobh_writepage);
2742
Nick Piggin03158cd2007-10-16 01:25:25 -07002743int nobh_truncate_page(struct address_space *mapping,
2744 loff_t from, get_block_t *get_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 pgoff_t index = from >> PAGE_CACHE_SHIFT;
2747 unsigned offset = from & (PAGE_CACHE_SIZE-1);
Nick Piggin03158cd2007-10-16 01:25:25 -07002748 unsigned blocksize;
2749 sector_t iblock;
2750 unsigned length, pos;
2751 struct inode *inode = mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 struct page *page;
Nick Piggin03158cd2007-10-16 01:25:25 -07002753 struct buffer_head map_bh;
2754 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
Nick Piggin03158cd2007-10-16 01:25:25 -07002756 blocksize = 1 << inode->i_blkbits;
2757 length = offset & (blocksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Nick Piggin03158cd2007-10-16 01:25:25 -07002759 /* Block boundary? Nothing to do */
2760 if (!length)
2761 return 0;
2762
2763 length = blocksize - length;
2764 iblock = (sector_t)index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
2765
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 page = grab_cache_page(mapping, index);
Nick Piggin03158cd2007-10-16 01:25:25 -07002767 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 if (!page)
2769 goto out;
2770
Nick Piggin03158cd2007-10-16 01:25:25 -07002771 if (page_has_buffers(page)) {
2772has_buffers:
2773 unlock_page(page);
2774 page_cache_release(page);
2775 return block_truncate_page(mapping, from, get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 }
Nick Piggin03158cd2007-10-16 01:25:25 -07002777
2778 /* Find the buffer that contains "offset" */
2779 pos = blocksize;
2780 while (offset >= pos) {
2781 iblock++;
2782 pos += blocksize;
2783 }
2784
Theodore Ts'o460bcf52009-05-12 07:37:56 -04002785 map_bh.b_size = blocksize;
2786 map_bh.b_state = 0;
Nick Piggin03158cd2007-10-16 01:25:25 -07002787 err = get_block(inode, iblock, &map_bh, 0);
2788 if (err)
2789 goto unlock;
2790 /* unmapped? It's a hole - nothing to do */
2791 if (!buffer_mapped(&map_bh))
2792 goto unlock;
2793
2794 /* Ok, it's mapped. Make sure it's up-to-date */
2795 if (!PageUptodate(page)) {
2796 err = mapping->a_ops->readpage(NULL, page);
2797 if (err) {
2798 page_cache_release(page);
2799 goto out;
2800 }
2801 lock_page(page);
2802 if (!PageUptodate(page)) {
2803 err = -EIO;
2804 goto unlock;
2805 }
2806 if (page_has_buffers(page))
2807 goto has_buffers;
2808 }
Christoph Lametereebd2aa2008-02-04 22:28:29 -08002809 zero_user(page, offset, length);
Nick Piggin03158cd2007-10-16 01:25:25 -07002810 set_page_dirty(page);
2811 err = 0;
2812
2813unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 unlock_page(page);
2815 page_cache_release(page);
2816out:
Nick Piggin03158cd2007-10-16 01:25:25 -07002817 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818}
2819EXPORT_SYMBOL(nobh_truncate_page);
2820
2821int block_truncate_page(struct address_space *mapping,
2822 loff_t from, get_block_t *get_block)
2823{
2824 pgoff_t index = from >> PAGE_CACHE_SHIFT;
2825 unsigned offset = from & (PAGE_CACHE_SIZE-1);
2826 unsigned blocksize;
Andrew Morton54b21a72006-01-08 01:03:05 -08002827 sector_t iblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 unsigned length, pos;
2829 struct inode *inode = mapping->host;
2830 struct page *page;
2831 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 int err;
2833
2834 blocksize = 1 << inode->i_blkbits;
2835 length = offset & (blocksize - 1);
2836
2837 /* Block boundary? Nothing to do */
2838 if (!length)
2839 return 0;
2840
2841 length = blocksize - length;
Andrew Morton54b21a72006-01-08 01:03:05 -08002842 iblock = (sector_t)index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843
2844 page = grab_cache_page(mapping, index);
2845 err = -ENOMEM;
2846 if (!page)
2847 goto out;
2848
2849 if (!page_has_buffers(page))
2850 create_empty_buffers(page, blocksize, 0);
2851
2852 /* Find the buffer that contains "offset" */
2853 bh = page_buffers(page);
2854 pos = blocksize;
2855 while (offset >= pos) {
2856 bh = bh->b_this_page;
2857 iblock++;
2858 pos += blocksize;
2859 }
2860
2861 err = 0;
2862 if (!buffer_mapped(bh)) {
Badari Pulavartyb0cf2322006-03-26 01:38:00 -08002863 WARN_ON(bh->b_size != blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 err = get_block(inode, iblock, bh, 0);
2865 if (err)
2866 goto unlock;
2867 /* unmapped? It's a hole - nothing to do */
2868 if (!buffer_mapped(bh))
2869 goto unlock;
2870 }
2871
2872 /* Ok, it's mapped. Make sure it's up-to-date */
2873 if (PageUptodate(page))
2874 set_buffer_uptodate(bh);
2875
David Chinner33a266d2007-02-12 00:51:41 -08002876 if (!buffer_uptodate(bh) && !buffer_delay(bh) && !buffer_unwritten(bh)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 err = -EIO;
2878 ll_rw_block(READ, 1, &bh);
2879 wait_on_buffer(bh);
2880 /* Uhhuh. Read error. Complain and punt. */
2881 if (!buffer_uptodate(bh))
2882 goto unlock;
2883 }
2884
Christoph Lametereebd2aa2008-02-04 22:28:29 -08002885 zero_user(page, offset, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 mark_buffer_dirty(bh);
2887 err = 0;
2888
2889unlock:
2890 unlock_page(page);
2891 page_cache_release(page);
2892out:
2893 return err;
2894}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -07002895EXPORT_SYMBOL(block_truncate_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
2897/*
2898 * The generic ->writepage function for buffer-backed address_spaces
2899 */
Matthew Wilcox1b938c02014-06-04 16:07:43 -07002900int block_write_full_page(struct page *page, get_block_t *get_block,
2901 struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902{
2903 struct inode * const inode = page->mapping->host;
2904 loff_t i_size = i_size_read(inode);
2905 const pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
2906 unsigned offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
2908 /* Is the page fully inside i_size? */
2909 if (page->index < end_index)
Chris Mason35c80d52009-04-15 13:22:38 -04002910 return __block_write_full_page(inode, page, get_block, wbc,
Matthew Wilcox1b938c02014-06-04 16:07:43 -07002911 end_buffer_async_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
2913 /* Is the page fully outside i_size? (truncate in progress) */
2914 offset = i_size & (PAGE_CACHE_SIZE-1);
2915 if (page->index >= end_index+1 || !offset) {
2916 /*
2917 * The page may have dirty, unmapped buffers. For example,
2918 * they may have been added in ext3_writepage(). Make them
2919 * freeable here, so the page does not leak.
2920 */
Lukas Czernerd47992f2013-05-21 23:17:23 -04002921 do_invalidatepage(page, 0, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 unlock_page(page);
2923 return 0; /* don't care */
2924 }
2925
2926 /*
2927 * The page straddles i_size. It must be zeroed out on each and every
Adam Buchbinder2a61aa42009-12-11 16:35:40 -05002928 * writepage invocation because it may be mmapped. "A file is mapped
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 * in multiples of the page size. For a file that is not a multiple of
2930 * the page size, the remaining memory is zeroed when mapped, and
2931 * writes to that region are not written out to the file."
2932 */
Christoph Lametereebd2aa2008-02-04 22:28:29 -08002933 zero_user_segment(page, offset, PAGE_CACHE_SIZE);
Matthew Wilcox1b938c02014-06-04 16:07:43 -07002934 return __block_write_full_page(inode, page, get_block, wbc,
2935 end_buffer_async_write);
Chris Mason35c80d52009-04-15 13:22:38 -04002936}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -07002937EXPORT_SYMBOL(block_write_full_page);
Chris Mason35c80d52009-04-15 13:22:38 -04002938
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939sector_t generic_block_bmap(struct address_space *mapping, sector_t block,
2940 get_block_t *get_block)
2941{
2942 struct buffer_head tmp;
2943 struct inode *inode = mapping->host;
2944 tmp.b_state = 0;
2945 tmp.b_blocknr = 0;
Badari Pulavartyb0cf2322006-03-26 01:38:00 -08002946 tmp.b_size = 1 << inode->i_blkbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 get_block(inode, block, &tmp, 0);
2948 return tmp.b_blocknr;
2949}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -07002950EXPORT_SYMBOL(generic_block_bmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
NeilBrown6712ecf2007-09-27 12:47:43 +02002952static void end_bio_bh_io_sync(struct bio *bio, int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953{
2954 struct buffer_head *bh = bio->bi_private;
2955
Keith Mannthey08bafc02008-11-25 10:24:35 +01002956 if (unlikely (test_bit(BIO_QUIET,&bio->bi_flags)))
2957 set_bit(BH_Quiet, &bh->b_state);
2958
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 bh->b_end_io(bh, test_bit(BIO_UPTODATE, &bio->bi_flags));
2960 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961}
2962
Linus Torvalds57302e02012-12-04 08:25:11 -08002963/*
2964 * This allows us to do IO even on the odd last sectors
Akinobu Mita59d43912014-10-09 15:26:53 -07002965 * of a device, even if the block size is some multiple
Linus Torvalds57302e02012-12-04 08:25:11 -08002966 * of the physical sector size.
2967 *
2968 * We'll just truncate the bio to the size of the device,
2969 * and clear the end of the buffer head manually.
2970 *
2971 * Truly out-of-range accesses will turn into actual IO
2972 * errors, this only handles the "we need to be able to
2973 * do IO at the final sector" case.
2974 */
Akinobu Mita4db96b72014-10-09 15:26:55 -07002975void guard_bio_eod(int rw, struct bio *bio)
Linus Torvalds57302e02012-12-04 08:25:11 -08002976{
2977 sector_t maxsector;
Akinobu Mita59d43912014-10-09 15:26:53 -07002978 struct bio_vec *bvec = &bio->bi_io_vec[bio->bi_vcnt - 1];
2979 unsigned truncated_bytes;
Linus Torvalds57302e02012-12-04 08:25:11 -08002980
2981 maxsector = i_size_read(bio->bi_bdev->bd_inode) >> 9;
2982 if (!maxsector)
2983 return;
2984
2985 /*
2986 * If the *whole* IO is past the end of the device,
2987 * let it through, and the IO layer will turn it into
2988 * an EIO.
2989 */
Kent Overstreet4f024f32013-10-11 15:44:27 -07002990 if (unlikely(bio->bi_iter.bi_sector >= maxsector))
Linus Torvalds57302e02012-12-04 08:25:11 -08002991 return;
2992
Kent Overstreet4f024f32013-10-11 15:44:27 -07002993 maxsector -= bio->bi_iter.bi_sector;
Akinobu Mita59d43912014-10-09 15:26:53 -07002994 if (likely((bio->bi_iter.bi_size >> 9) <= maxsector))
Linus Torvalds57302e02012-12-04 08:25:11 -08002995 return;
2996
Akinobu Mita59d43912014-10-09 15:26:53 -07002997 /* Uhhuh. We've got a bio that straddles the device size! */
2998 truncated_bytes = bio->bi_iter.bi_size - (maxsector << 9);
Linus Torvalds57302e02012-12-04 08:25:11 -08002999
3000 /* Truncate the bio.. */
Akinobu Mita59d43912014-10-09 15:26:53 -07003001 bio->bi_iter.bi_size -= truncated_bytes;
3002 bvec->bv_len -= truncated_bytes;
Linus Torvalds57302e02012-12-04 08:25:11 -08003003
3004 /* ..and clear the end of the buffer for reads */
Dan Carpenter27d7c2a2012-12-05 20:01:24 +03003005 if ((rw & RW_MASK) == READ) {
Akinobu Mita59d43912014-10-09 15:26:53 -07003006 zero_user(bvec->bv_page, bvec->bv_offset + bvec->bv_len,
3007 truncated_bytes);
Linus Torvalds57302e02012-12-04 08:25:11 -08003008 }
3009}
3010
Tejun Heo9ffcc0d2015-06-02 08:39:48 -06003011static int submit_bh_wbc(int rw, struct buffer_head *bh,
3012 unsigned long bio_flags, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013{
3014 struct bio *bio;
3015 int ret = 0;
3016
3017 BUG_ON(!buffer_locked(bh));
3018 BUG_ON(!buffer_mapped(bh));
3019 BUG_ON(!bh->b_end_io);
Aneesh Kumar K.V8fb0e342009-05-12 16:22:37 -04003020 BUG_ON(buffer_delay(bh));
3021 BUG_ON(buffer_unwritten(bh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
Jens Axboe48fd4f92008-08-22 10:00:36 +02003023 /*
Jens Axboe48fd4f92008-08-22 10:00:36 +02003024 * Only clear out a write error when rewriting
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 */
Jens Axboe48fd4f92008-08-22 10:00:36 +02003026 if (test_set_buffer_req(bh) && (rw & WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 clear_buffer_write_io_error(bh);
3028
3029 /*
3030 * from here on down, it's all bio -- do the initial mapping,
3031 * submit_bio -> generic_make_request may further map this bio around
3032 */
3033 bio = bio_alloc(GFP_NOIO, 1);
3034
Tejun Heo6b0c77f2015-05-28 14:50:51 -04003035 if (wbc) {
Tejun Heo9ffcc0d2015-06-02 08:39:48 -06003036 wbc_init_bio(wbc, bio);
Tejun Heo6b0c77f2015-05-28 14:50:51 -04003037 wbc_account_io(wbc, bh->b_page, bh->b_size);
3038 }
Tejun Heoeb5d0e32015-06-02 08:37:23 -06003039
Kent Overstreet4f024f32013-10-11 15:44:27 -07003040 bio->bi_iter.bi_sector = bh->b_blocknr * (bh->b_size >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 bio->bi_bdev = bh->b_bdev;
3042 bio->bi_io_vec[0].bv_page = bh->b_page;
3043 bio->bi_io_vec[0].bv_len = bh->b_size;
3044 bio->bi_io_vec[0].bv_offset = bh_offset(bh);
3045
3046 bio->bi_vcnt = 1;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003047 bio->bi_iter.bi_size = bh->b_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
3049 bio->bi_end_io = end_bio_bh_io_sync;
3050 bio->bi_private = bh;
Darrick J. Wong7136851112013-04-29 15:07:25 -07003051 bio->bi_flags |= bio_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052
Linus Torvalds57302e02012-12-04 08:25:11 -08003053 /* Take care of bh's that straddle the end of the device */
Akinobu Mita59d43912014-10-09 15:26:53 -07003054 guard_bio_eod(rw, bio);
Linus Torvalds57302e02012-12-04 08:25:11 -08003055
Theodore Ts'o877f9622013-04-20 19:58:37 -04003056 if (buffer_meta(bh))
3057 rw |= REQ_META;
3058 if (buffer_prio(bh))
3059 rw |= REQ_PRIO;
3060
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 submit_bio(rw, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 return ret;
3063}
Tejun Heoeb5d0e32015-06-02 08:37:23 -06003064
3065int _submit_bh(int rw, struct buffer_head *bh, unsigned long bio_flags)
3066{
Tejun Heo9ffcc0d2015-06-02 08:39:48 -06003067 return submit_bh_wbc(rw, bh, bio_flags, NULL);
Tejun Heoeb5d0e32015-06-02 08:37:23 -06003068}
Darrick J. Wong7136851112013-04-29 15:07:25 -07003069EXPORT_SYMBOL_GPL(_submit_bh);
3070
3071int submit_bh(int rw, struct buffer_head *bh)
3072{
Tejun Heo9ffcc0d2015-06-02 08:39:48 -06003073 return submit_bh_wbc(rw, bh, 0, NULL);
Darrick J. Wong7136851112013-04-29 15:07:25 -07003074}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -07003075EXPORT_SYMBOL(submit_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
3077/**
3078 * ll_rw_block: low-level access to block devices (DEPRECATED)
Christoph Hellwig9cb569d2010-08-11 17:06:24 +02003079 * @rw: whether to %READ or %WRITE or maybe %READA (readahead)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 * @nr: number of &struct buffer_heads in the array
3081 * @bhs: array of pointers to &struct buffer_head
3082 *
Jan Karaa7662232005-09-06 15:19:10 -07003083 * ll_rw_block() takes an array of pointers to &struct buffer_heads, and
3084 * requests an I/O operation on them, either a %READ or a %WRITE. The third
Christoph Hellwig9cb569d2010-08-11 17:06:24 +02003085 * %READA option is described in the documentation for generic_make_request()
3086 * which ll_rw_block() calls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 *
3088 * This function drops any buffer that it cannot get a lock on (with the
Christoph Hellwig9cb569d2010-08-11 17:06:24 +02003089 * BH_Lock state bit), any buffer that appears to be clean when doing a write
3090 * request, and any buffer that appears to be up-to-date when doing read
3091 * request. Further it marks as clean buffers that are processed for
3092 * writing (the buffer cache won't assume that they are actually clean
3093 * until the buffer gets unlocked).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 *
3095 * ll_rw_block sets b_end_io to simple completion handler that marks
Masanari Iidae2278672014-02-18 22:54:36 +09003096 * the buffer up-to-date (if appropriate), unlocks the buffer and wakes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 * any waiters.
3098 *
3099 * All of the buffers must be for the same device, and must also be a
3100 * multiple of the current approved size for the device.
3101 */
3102void ll_rw_block(int rw, int nr, struct buffer_head *bhs[])
3103{
3104 int i;
3105
3106 for (i = 0; i < nr; i++) {
3107 struct buffer_head *bh = bhs[i];
3108
Christoph Hellwig9cb569d2010-08-11 17:06:24 +02003109 if (!trylock_buffer(bh))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 continue;
Christoph Hellwig9cb569d2010-08-11 17:06:24 +02003111 if (rw == WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 if (test_clear_buffer_dirty(bh)) {
akpm@osdl.org76c30732005-04-16 15:24:07 -07003113 bh->b_end_io = end_buffer_write_sync;
OGAWA Hirofumie60e5c52006-02-03 03:04:43 -08003114 get_bh(bh);
Christoph Hellwig9cb569d2010-08-11 17:06:24 +02003115 submit_bh(WRITE, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 continue;
3117 }
3118 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 if (!buffer_uptodate(bh)) {
akpm@osdl.org76c30732005-04-16 15:24:07 -07003120 bh->b_end_io = end_buffer_read_sync;
OGAWA Hirofumie60e5c52006-02-03 03:04:43 -08003121 get_bh(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 submit_bh(rw, bh);
3123 continue;
3124 }
3125 }
3126 unlock_buffer(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 }
3128}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -07003129EXPORT_SYMBOL(ll_rw_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
Christoph Hellwig9cb569d2010-08-11 17:06:24 +02003131void write_dirty_buffer(struct buffer_head *bh, int rw)
3132{
3133 lock_buffer(bh);
3134 if (!test_clear_buffer_dirty(bh)) {
3135 unlock_buffer(bh);
3136 return;
3137 }
3138 bh->b_end_io = end_buffer_write_sync;
3139 get_bh(bh);
3140 submit_bh(rw, bh);
3141}
3142EXPORT_SYMBOL(write_dirty_buffer);
3143
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144/*
3145 * For a data-integrity writeout, we need to wait upon any in-progress I/O
3146 * and then start new I/O and then wait upon it. The caller must have a ref on
3147 * the buffer_head.
3148 */
Christoph Hellwig87e99512010-08-11 17:05:45 +02003149int __sync_dirty_buffer(struct buffer_head *bh, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150{
3151 int ret = 0;
3152
3153 WARN_ON(atomic_read(&bh->b_count) < 1);
3154 lock_buffer(bh);
3155 if (test_clear_buffer_dirty(bh)) {
3156 get_bh(bh);
3157 bh->b_end_io = end_buffer_write_sync;
Christoph Hellwig87e99512010-08-11 17:05:45 +02003158 ret = submit_bh(rw, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 wait_on_buffer(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 if (!ret && !buffer_uptodate(bh))
3161 ret = -EIO;
3162 } else {
3163 unlock_buffer(bh);
3164 }
3165 return ret;
3166}
Christoph Hellwig87e99512010-08-11 17:05:45 +02003167EXPORT_SYMBOL(__sync_dirty_buffer);
3168
3169int sync_dirty_buffer(struct buffer_head *bh)
3170{
3171 return __sync_dirty_buffer(bh, WRITE_SYNC);
3172}
H Hartley Sweeten1fe72ea2009-09-22 16:43:51 -07003173EXPORT_SYMBOL(sync_dirty_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
3175/*
3176 * try_to_free_buffers() checks if all the buffers on this particular page
3177 * are unused, and releases them if so.
3178 *
3179 * Exclusion against try_to_free_buffers may be obtained by either
3180 * locking the page or by holding its mapping's private_lock.
3181 *
3182 * If the page is dirty but all the buffers are clean then we need to
3183 * be sure to mark the page clean as well. This is because the page
3184 * may be against a block device, and a later reattachment of buffers
3185 * to a dirty page will set *all* buffers dirty. Which would corrupt
3186 * filesystem data on the same device.
3187 *
3188 * The same applies to regular filesystem pages: if all the buffers are
3189 * clean then we set the page clean and proceed. To do that, we require
3190 * total exclusion from __set_page_dirty_buffers(). That is obtained with
3191 * private_lock.
3192 *
3193 * try_to_free_buffers() is non-blocking.
3194 */
3195static inline int buffer_busy(struct buffer_head *bh)
3196{
3197 return atomic_read(&bh->b_count) |
3198 (bh->b_state & ((1 << BH_Dirty) | (1 << BH_Lock)));
3199}
3200
3201static int
3202drop_buffers(struct page *page, struct buffer_head **buffers_to_free)
3203{
3204 struct buffer_head *head = page_buffers(page);
3205 struct buffer_head *bh;
3206
3207 bh = head;
3208 do {
akpm@osdl.orgde7d5a32005-05-01 08:58:39 -07003209 if (buffer_write_io_error(bh) && page->mapping)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 set_bit(AS_EIO, &page->mapping->flags);
3211 if (buffer_busy(bh))
3212 goto failed;
3213 bh = bh->b_this_page;
3214 } while (bh != head);
3215
3216 do {
3217 struct buffer_head *next = bh->b_this_page;
3218
Jan Kara535ee2f2008-02-08 04:21:59 -08003219 if (bh->b_assoc_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 __remove_assoc_queue(bh);
3221 bh = next;
3222 } while (bh != head);
3223 *buffers_to_free = head;
3224 __clear_page_buffers(page);
3225 return 1;
3226failed:
3227 return 0;
3228}
3229
3230int try_to_free_buffers(struct page *page)
3231{
3232 struct address_space * const mapping = page->mapping;
3233 struct buffer_head *buffers_to_free = NULL;
3234 int ret = 0;
3235
3236 BUG_ON(!PageLocked(page));
Linus Torvaldsecdfc972007-01-26 12:47:06 -08003237 if (PageWriteback(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 return 0;
3239
3240 if (mapping == NULL) { /* can this still happen? */
3241 ret = drop_buffers(page, &buffers_to_free);
3242 goto out;
3243 }
3244
3245 spin_lock(&mapping->private_lock);
3246 ret = drop_buffers(page, &buffers_to_free);
Linus Torvaldsecdfc972007-01-26 12:47:06 -08003247
3248 /*
3249 * If the filesystem writes its buffers by hand (eg ext3)
3250 * then we can have clean buffers against a dirty page. We
3251 * clean the page here; otherwise the VM will never notice
3252 * that the filesystem did any IO at all.
3253 *
3254 * Also, during truncate, discard_buffer will have marked all
3255 * the page's buffers clean. We discover that here and clean
3256 * the page also.
Nick Piggin87df7242007-01-30 14:36:27 +11003257 *
3258 * private_lock must be held over this entire operation in order
3259 * to synchronise against __set_page_dirty_buffers and prevent the
3260 * dirty bit from being lost.
Linus Torvaldsecdfc972007-01-26 12:47:06 -08003261 */
Tejun Heo96688c02015-05-22 17:13:15 -04003262 if (ret)
3263 cancel_dirty_page(page);
Nick Piggin87df7242007-01-30 14:36:27 +11003264 spin_unlock(&mapping->private_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265out:
3266 if (buffers_to_free) {
3267 struct buffer_head *bh = buffers_to_free;
3268
3269 do {
3270 struct buffer_head *next = bh->b_this_page;
3271 free_buffer_head(bh);
3272 bh = next;
3273 } while (bh != buffers_to_free);
3274 }
3275 return ret;
3276}
3277EXPORT_SYMBOL(try_to_free_buffers);
3278
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279/*
3280 * There are no bdflush tunables left. But distributions are
3281 * still running obsolete flush daemons, so we terminate them here.
3282 *
3283 * Use of bdflush() is deprecated and will be removed in a future kernel.
Jens Axboe5b0830c2009-09-23 19:37:09 +02003284 * The `flush-X' kernel threads fully replace bdflush daemons and this call.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 */
Heiko Carstensbdc480e2009-01-14 14:14:12 +01003286SYSCALL_DEFINE2(bdflush, int, func, long, data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287{
3288 static int msg_count;
3289
3290 if (!capable(CAP_SYS_ADMIN))
3291 return -EPERM;
3292
3293 if (msg_count < 5) {
3294 msg_count++;
3295 printk(KERN_INFO
3296 "warning: process `%s' used the obsolete bdflush"
3297 " system call\n", current->comm);
3298 printk(KERN_INFO "Fix your initscripts?\n");
3299 }
3300
3301 if (func == 1)
3302 do_exit(0);
3303 return 0;
3304}
3305
3306/*
3307 * Buffer-head allocation
3308 */
Shai Fultheima0a9b042012-05-15 12:29:52 +03003309static struct kmem_cache *bh_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310
3311/*
3312 * Once the number of bh's in the machine exceeds this level, we start
3313 * stripping them in writeback.
3314 */
Zhang Yanfei43be5942013-02-22 16:35:46 -08003315static unsigned long max_buffer_heads;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316
3317int buffer_heads_over_limit;
3318
3319struct bh_accounting {
3320 int nr; /* Number of live bh's */
3321 int ratelimit; /* Limit cacheline bouncing */
3322};
3323
3324static DEFINE_PER_CPU(struct bh_accounting, bh_accounting) = {0, 0};
3325
3326static void recalc_bh_state(void)
3327{
3328 int i;
3329 int tot = 0;
3330
Christoph Lameteree1be862010-12-06 11:40:05 -06003331 if (__this_cpu_inc_return(bh_accounting.ratelimit) - 1 < 4096)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 return;
Christoph Lameterc7b92512010-12-06 11:16:28 -06003333 __this_cpu_write(bh_accounting.ratelimit, 0);
Eric Dumazet8a143422006-03-24 03:18:10 -08003334 for_each_online_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 tot += per_cpu(bh_accounting, i).nr;
3336 buffer_heads_over_limit = (tot > max_buffer_heads);
3337}
Christoph Lameterc7b92512010-12-06 11:16:28 -06003338
Al Virodd0fc662005-10-07 07:46:04 +01003339struct buffer_head *alloc_buffer_head(gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340{
Richard Kennedy019b4d12010-03-10 15:20:33 -08003341 struct buffer_head *ret = kmem_cache_zalloc(bh_cachep, gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 if (ret) {
Christoph Lametera35afb82007-05-16 22:10:57 -07003343 INIT_LIST_HEAD(&ret->b_assoc_buffers);
Thomas Gleixner04ae51a2011-03-18 09:18:52 +01003344 buffer_head_init_locks(ret);
Christoph Lameterc7b92512010-12-06 11:16:28 -06003345 preempt_disable();
3346 __this_cpu_inc(bh_accounting.nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 recalc_bh_state();
Christoph Lameterc7b92512010-12-06 11:16:28 -06003348 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 }
3350 return ret;
3351}
3352EXPORT_SYMBOL(alloc_buffer_head);
3353
3354void free_buffer_head(struct buffer_head *bh)
3355{
3356 BUG_ON(!list_empty(&bh->b_assoc_buffers));
3357 kmem_cache_free(bh_cachep, bh);
Christoph Lameterc7b92512010-12-06 11:16:28 -06003358 preempt_disable();
3359 __this_cpu_dec(bh_accounting.nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 recalc_bh_state();
Christoph Lameterc7b92512010-12-06 11:16:28 -06003361 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362}
3363EXPORT_SYMBOL(free_buffer_head);
3364
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365static void buffer_exit_cpu(int cpu)
3366{
3367 int i;
3368 struct bh_lru *b = &per_cpu(bh_lrus, cpu);
3369
3370 for (i = 0; i < BH_LRU_SIZE; i++) {
3371 brelse(b->bhs[i]);
3372 b->bhs[i] = NULL;
3373 }
Christoph Lameterc7b92512010-12-06 11:16:28 -06003374 this_cpu_add(bh_accounting.nr, per_cpu(bh_accounting, cpu).nr);
Eric Dumazet8a143422006-03-24 03:18:10 -08003375 per_cpu(bh_accounting, cpu).nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376}
3377
3378static int buffer_cpu_notify(struct notifier_block *self,
3379 unsigned long action, void *hcpu)
3380{
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003381 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 buffer_exit_cpu((unsigned long)hcpu);
3383 return NOTIFY_OK;
3384}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385
Aneesh Kumar K.V389d1b02008-01-28 23:58:26 -05003386/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07003387 * bh_uptodate_or_lock - Test whether the buffer is uptodate
Aneesh Kumar K.V389d1b02008-01-28 23:58:26 -05003388 * @bh: struct buffer_head
3389 *
3390 * Return true if the buffer is up-to-date and false,
3391 * with the buffer locked, if not.
3392 */
3393int bh_uptodate_or_lock(struct buffer_head *bh)
3394{
3395 if (!buffer_uptodate(bh)) {
3396 lock_buffer(bh);
3397 if (!buffer_uptodate(bh))
3398 return 0;
3399 unlock_buffer(bh);
3400 }
3401 return 1;
3402}
3403EXPORT_SYMBOL(bh_uptodate_or_lock);
3404
3405/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07003406 * bh_submit_read - Submit a locked buffer for reading
Aneesh Kumar K.V389d1b02008-01-28 23:58:26 -05003407 * @bh: struct buffer_head
3408 *
3409 * Returns zero on success and -EIO on error.
3410 */
3411int bh_submit_read(struct buffer_head *bh)
3412{
3413 BUG_ON(!buffer_locked(bh));
3414
3415 if (buffer_uptodate(bh)) {
3416 unlock_buffer(bh);
3417 return 0;
3418 }
3419
3420 get_bh(bh);
3421 bh->b_end_io = end_buffer_read_sync;
3422 submit_bh(READ, bh);
3423 wait_on_buffer(bh);
3424 if (buffer_uptodate(bh))
3425 return 0;
3426 return -EIO;
3427}
3428EXPORT_SYMBOL(bh_submit_read);
3429
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430void __init buffer_init(void)
3431{
Zhang Yanfei43be5942013-02-22 16:35:46 -08003432 unsigned long nrpages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
Christoph Lameterb98938c2008-02-04 22:28:36 -08003434 bh_cachep = kmem_cache_create("buffer_head",
3435 sizeof(struct buffer_head), 0,
3436 (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
3437 SLAB_MEM_SPREAD),
Richard Kennedy019b4d12010-03-10 15:20:33 -08003438 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439
3440 /*
3441 * Limit the bh occupancy to 10% of ZONE_NORMAL
3442 */
3443 nrpages = (nr_free_buffer_pages() * 10) / 100;
3444 max_buffer_heads = nrpages * (PAGE_SIZE / sizeof(struct buffer_head));
3445 hotcpu_notifier(buffer_cpu_notify, 0);
3446}