4 * Copyright (C) 2002, Linus Torvalds.
6 * Contains functions related to writing back dirty pages at the
9 * 10Apr2002 akpm@zip.com.au
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/spinlock.h>
18 #include <linux/swap.h>
19 #include <linux/slab.h>
20 #include <linux/pagemap.h>
21 #include <linux/writeback.h>
22 #include <linux/init.h>
23 #include <linux/backing-dev.h>
24 #include <linux/blkdev.h>
25 #include <linux/mpage.h>
26 #include <linux/rmap.h>
27 #include <linux/percpu.h>
28 #include <linux/notifier.h>
29 #include <linux/smp.h>
30 #include <linux/sysctl.h>
31 #include <linux/cpu.h>
32 #include <linux/syscalls.h>
35 * The maximum number of pages to writeout in a single bdflush/kupdate
36 * operation. We do this so we don't hold I_LOCK against an inode for
37 * enormous amounts of time, which would block a userspace task which has
38 * been forced to throttle against that inode. Also, the code reevaluates
39 * the dirty each time it has written this many pages.
41 #define MAX_WRITEBACK_PAGES 1024
44 * After a CPU has dirtied this many pages, balance_dirty_pages_ratelimited
45 * will look to see if it needs to force writeback or throttling.
47 static long ratelimit_pages
= 32;
49 static long total_pages
; /* The total number of pages in the machine. */
50 static int dirty_exceeded __cacheline_aligned_in_smp
; /* Dirty mem may be over limit */
53 * When balance_dirty_pages decides that the caller needs to perform some
54 * non-background writeback, this is how many pages it will attempt to write.
55 * It should be somewhat larger than RATELIMIT_PAGES to ensure that reasonably
56 * large amounts of I/O are submitted.
58 static inline long sync_writeback_pages(void)
60 return ratelimit_pages
+ ratelimit_pages
/ 2;
63 /* The following parameters are exported via /proc/sys/vm */
66 * Start background writeback (via pdflush) at this percentage
68 int dirty_background_ratio
= 10;
71 * The generator of dirty data starts writeback at this percentage
73 int vm_dirty_ratio
= 40;
76 * The interval between `kupdate'-style writebacks, in jiffies
78 int dirty_writeback_interval
= 5 * HZ
;
81 * The longest number of jiffies for which data is allowed to remain dirty
83 int dirty_expire_interval
= 30 * HZ
;
86 * Flag that makes the machine dump writes/reads and block dirtyings.
91 * Flag that puts the machine in "laptop mode". Doubles as a timeout in jiffies:
92 * a full sync is triggered after this time elapses without any disk activity.
96 EXPORT_SYMBOL(laptop_mode
);
98 /* End of sysctl-exported parameters */
101 static void background_writeout(unsigned long _min_pages
);
104 * Work out the current dirty-memory clamping and background writeout
107 * The main aim here is to lower them aggressively if there is a lot of mapped
108 * memory around. To avoid stressing page reclaim with lots of unreclaimable
109 * pages. It is better to clamp down on writers than to start swapping, and
110 * performing lots of scanning.
112 * We only allow 1/2 of the currently-unmapped memory to be dirtied.
114 * We don't permit the clamping level to fall below 5% - that is getting rather
117 * We make sure that the background writeout level is below the adjusted
121 get_dirty_limits(long *pbackground
, long *pdirty
,
122 struct address_space
*mapping
)
124 int background_ratio
; /* Percentages */
129 unsigned long available_memory
= total_pages
;
130 struct task_struct
*tsk
;
132 #ifdef CONFIG_HIGHMEM
134 * If this mapping can only allocate from low memory,
135 * we exclude high memory from our count.
137 if (mapping
&& !(mapping_gfp_mask(mapping
) & __GFP_HIGHMEM
))
138 available_memory
-= totalhigh_pages
;
142 unmapped_ratio
= 100 - ((global_page_state(NR_FILE_MAPPED
) +
143 global_page_state(NR_ANON_PAGES
)) * 100) /
146 dirty_ratio
= vm_dirty_ratio
;
147 if (dirty_ratio
> unmapped_ratio
/ 2)
148 dirty_ratio
= unmapped_ratio
/ 2;
153 background_ratio
= dirty_background_ratio
;
154 if (background_ratio
>= dirty_ratio
)
155 background_ratio
= dirty_ratio
/ 2;
157 background
= (background_ratio
* available_memory
) / 100;
158 dirty
= (dirty_ratio
* available_memory
) / 100;
160 if (tsk
->flags
& PF_LESS_THROTTLE
|| rt_task(tsk
)) {
161 background
+= background
/ 4;
164 *pbackground
= background
;
169 * balance_dirty_pages() must be called by processes which are generating dirty
170 * data. It looks at the number of dirty pages in the machine and will force
171 * the caller to perform writeback if the system is over `vm_dirty_ratio'.
172 * If we're over `background_thresh' then pdflush is woken to perform some
175 static void balance_dirty_pages(struct address_space
*mapping
)
178 long background_thresh
;
180 unsigned long pages_written
= 0;
181 unsigned long write_chunk
= sync_writeback_pages();
183 struct backing_dev_info
*bdi
= mapping
->backing_dev_info
;
186 struct writeback_control wbc
= {
188 .sync_mode
= WB_SYNC_NONE
,
189 .older_than_this
= NULL
,
190 .nr_to_write
= write_chunk
,
194 get_dirty_limits(&background_thresh
, &dirty_thresh
, mapping
);
195 nr_reclaimable
= global_page_state(NR_FILE_DIRTY
) +
196 global_page_state(NR_UNSTABLE_NFS
);
197 if (nr_reclaimable
+ global_page_state(NR_WRITEBACK
) <=
204 /* Note: nr_reclaimable denotes nr_dirty + nr_unstable.
205 * Unstable writes are a feature of certain networked
206 * filesystems (i.e. NFS) in which data may have been
207 * written to the server's write cache, but has not yet
208 * been flushed to permanent storage.
210 if (nr_reclaimable
) {
211 writeback_inodes(&wbc
);
212 get_dirty_limits(&background_thresh
,
213 &dirty_thresh
, mapping
);
214 nr_reclaimable
= global_page_state(NR_FILE_DIRTY
) +
215 global_page_state(NR_UNSTABLE_NFS
);
217 global_page_state(NR_WRITEBACK
)
220 pages_written
+= write_chunk
- wbc
.nr_to_write
;
221 if (pages_written
>= write_chunk
)
222 break; /* We've done our duty */
224 blk_congestion_wait(WRITE
, HZ
/10);
227 if (nr_reclaimable
+ global_page_state(NR_WRITEBACK
)
228 <= dirty_thresh
&& dirty_exceeded
)
231 if (writeback_in_progress(bdi
))
232 return; /* pdflush is already working this queue */
235 * In laptop mode, we wait until hitting the higher threshold before
236 * starting background writeout, and then write out all the way down
237 * to the lower threshold. So slow writers cause minimal disk activity.
239 * In normal mode, we start background writeout at the lower
240 * background_thresh, to keep the amount of dirty memory low.
242 if ((laptop_mode
&& pages_written
) ||
243 (!laptop_mode
&& (nr_reclaimable
> background_thresh
)))
244 pdflush_operation(background_writeout
, 0);
247 void set_page_dirty_balance(struct page
*page
)
249 if (set_page_dirty(page
)) {
250 struct address_space
*mapping
= page_mapping(page
);
253 balance_dirty_pages_ratelimited(mapping
);
258 * balance_dirty_pages_ratelimited_nr - balance dirty memory state
259 * @mapping: address_space which was dirtied
260 * @nr_pages_dirtied: number of pages which the caller has just dirtied
262 * Processes which are dirtying memory should call in here once for each page
263 * which was newly dirtied. The function will periodically check the system's
264 * dirty state and will initiate writeback if needed.
266 * On really big machines, get_writeback_state is expensive, so try to avoid
267 * calling it too often (ratelimiting). But once we're over the dirty memory
268 * limit we decrease the ratelimiting by a lot, to prevent individual processes
269 * from overshooting the limit by (ratelimit_pages) each.
271 void balance_dirty_pages_ratelimited_nr(struct address_space
*mapping
,
272 unsigned long nr_pages_dirtied
)
274 static DEFINE_PER_CPU(unsigned long, ratelimits
) = 0;
275 unsigned long ratelimit
;
278 ratelimit
= ratelimit_pages
;
283 * Check the rate limiting. Also, we do not want to throttle real-time
284 * tasks in balance_dirty_pages(). Period.
287 p
= &__get_cpu_var(ratelimits
);
288 *p
+= nr_pages_dirtied
;
289 if (unlikely(*p
>= ratelimit
)) {
292 balance_dirty_pages(mapping
);
297 EXPORT_SYMBOL(balance_dirty_pages_ratelimited_nr
);
299 void throttle_vm_writeout(void)
301 long background_thresh
;
305 get_dirty_limits(&background_thresh
, &dirty_thresh
, NULL
);
308 * Boost the allowable dirty threshold a bit for page
309 * allocators so they don't get DoS'ed by heavy writers
311 dirty_thresh
+= dirty_thresh
/ 10; /* wheeee... */
313 if (global_page_state(NR_UNSTABLE_NFS
) +
314 global_page_state(NR_WRITEBACK
) <= dirty_thresh
)
316 blk_congestion_wait(WRITE
, HZ
/10);
322 * writeback at least _min_pages, and keep writing until the amount of dirty
323 * memory is less than the background threshold, or until we're all clean.
325 static void background_writeout(unsigned long _min_pages
)
327 long min_pages
= _min_pages
;
328 struct writeback_control wbc
= {
330 .sync_mode
= WB_SYNC_NONE
,
331 .older_than_this
= NULL
,
338 long background_thresh
;
341 get_dirty_limits(&background_thresh
, &dirty_thresh
, NULL
);
342 if (global_page_state(NR_FILE_DIRTY
) +
343 global_page_state(NR_UNSTABLE_NFS
) < background_thresh
346 wbc
.encountered_congestion
= 0;
347 wbc
.nr_to_write
= MAX_WRITEBACK_PAGES
;
348 wbc
.pages_skipped
= 0;
349 writeback_inodes(&wbc
);
350 min_pages
-= MAX_WRITEBACK_PAGES
- wbc
.nr_to_write
;
351 if (wbc
.nr_to_write
> 0 || wbc
.pages_skipped
> 0) {
352 /* Wrote less than expected */
353 blk_congestion_wait(WRITE
, HZ
/10);
354 if (!wbc
.encountered_congestion
)
361 * Start writeback of `nr_pages' pages. If `nr_pages' is zero, write back
362 * the whole world. Returns 0 if a pdflush thread was dispatched. Returns
363 * -1 if all pdflush threads were busy.
365 int wakeup_pdflush(long nr_pages
)
368 nr_pages
= global_page_state(NR_FILE_DIRTY
) +
369 global_page_state(NR_UNSTABLE_NFS
);
370 return pdflush_operation(background_writeout
, nr_pages
);
373 static void wb_timer_fn(unsigned long unused
);
374 static void laptop_timer_fn(unsigned long unused
);
376 static DEFINE_TIMER(wb_timer
, wb_timer_fn
, 0, 0);
377 static DEFINE_TIMER(laptop_mode_wb_timer
, laptop_timer_fn
, 0, 0);
380 * Periodic writeback of "old" data.
382 * Define "old": the first time one of an inode's pages is dirtied, we mark the
383 * dirtying-time in the inode's address_space. So this periodic writeback code
384 * just walks the superblock inode list, writing back any inodes which are
385 * older than a specific point in time.
387 * Try to run once per dirty_writeback_interval. But if a writeback event
388 * takes longer than a dirty_writeback_interval interval, then leave a
391 * older_than_this takes precedence over nr_to_write. So we'll only write back
392 * all dirty pages if they are all attached to "old" mappings.
394 static void wb_kupdate(unsigned long arg
)
396 unsigned long oldest_jif
;
397 unsigned long start_jif
;
398 unsigned long next_jif
;
400 struct writeback_control wbc
= {
402 .sync_mode
= WB_SYNC_NONE
,
403 .older_than_this
= &oldest_jif
,
412 oldest_jif
= jiffies
- dirty_expire_interval
;
414 next_jif
= start_jif
+ dirty_writeback_interval
;
415 nr_to_write
= global_page_state(NR_FILE_DIRTY
) +
416 global_page_state(NR_UNSTABLE_NFS
) +
417 (inodes_stat
.nr_inodes
- inodes_stat
.nr_unused
);
418 while (nr_to_write
> 0) {
419 wbc
.encountered_congestion
= 0;
420 wbc
.nr_to_write
= MAX_WRITEBACK_PAGES
;
421 writeback_inodes(&wbc
);
422 if (wbc
.nr_to_write
> 0) {
423 if (wbc
.encountered_congestion
)
424 blk_congestion_wait(WRITE
, HZ
/10);
426 break; /* All the old data is written */
428 nr_to_write
-= MAX_WRITEBACK_PAGES
- wbc
.nr_to_write
;
430 if (time_before(next_jif
, jiffies
+ HZ
))
431 next_jif
= jiffies
+ HZ
;
432 if (dirty_writeback_interval
)
433 mod_timer(&wb_timer
, next_jif
);
437 * sysctl handler for /proc/sys/vm/dirty_writeback_centisecs
439 int dirty_writeback_centisecs_handler(ctl_table
*table
, int write
,
440 struct file
*file
, void __user
*buffer
, size_t *length
, loff_t
*ppos
)
442 proc_dointvec_userhz_jiffies(table
, write
, file
, buffer
, length
, ppos
);
443 if (dirty_writeback_interval
) {
445 jiffies
+ dirty_writeback_interval
);
447 del_timer(&wb_timer
);
452 static void wb_timer_fn(unsigned long unused
)
454 if (pdflush_operation(wb_kupdate
, 0) < 0)
455 mod_timer(&wb_timer
, jiffies
+ HZ
); /* delay 1 second */
458 static void laptop_flush(unsigned long unused
)
463 static void laptop_timer_fn(unsigned long unused
)
465 pdflush_operation(laptop_flush
, 0);
469 * We've spun up the disk and we're in laptop mode: schedule writeback
470 * of all dirty data a few seconds from now. If the flush is already scheduled
471 * then push it back - the user is still using the disk.
473 void laptop_io_completion(void)
475 mod_timer(&laptop_mode_wb_timer
, jiffies
+ laptop_mode
);
479 * We're in laptop mode and we've just synced. The sync's writes will have
480 * caused another writeback to be scheduled by laptop_io_completion.
481 * Nothing needs to be written back anymore, so we unschedule the writeback.
483 void laptop_sync_completion(void)
485 del_timer(&laptop_mode_wb_timer
);
489 * If ratelimit_pages is too high then we can get into dirty-data overload
490 * if a large number of processes all perform writes at the same time.
491 * If it is too low then SMP machines will call the (expensive)
492 * get_writeback_state too often.
494 * Here we set ratelimit_pages to a level which ensures that when all CPUs are
495 * dirtying in parallel, we cannot go more than 3% (1/32) over the dirty memory
496 * thresholds before writeback cuts in.
498 * But the limit should not be set too high. Because it also controls the
499 * amount of memory which the balance_dirty_pages() caller has to write back.
500 * If this is too large then the caller will block on the IO queue all the
501 * time. So limit it to four megabytes - the balance_dirty_pages() caller
502 * will write six megabyte chunks, max.
505 static void set_ratelimit(void)
507 ratelimit_pages
= total_pages
/ (num_online_cpus() * 32);
508 if (ratelimit_pages
< 16)
509 ratelimit_pages
= 16;
510 if (ratelimit_pages
* PAGE_CACHE_SIZE
> 4096 * 1024)
511 ratelimit_pages
= (4096 * 1024) / PAGE_CACHE_SIZE
;
515 ratelimit_handler(struct notifier_block
*self
, unsigned long u
, void *v
)
521 static struct notifier_block __cpuinitdata ratelimit_nb
= {
522 .notifier_call
= ratelimit_handler
,
527 * If the machine has a large highmem:lowmem ratio then scale back the default
528 * dirty memory thresholds: allowing too much dirty highmem pins an excessive
529 * number of buffer_heads.
531 void __init
page_writeback_init(void)
533 long buffer_pages
= nr_free_buffer_pages();
536 total_pages
= nr_free_pagecache_pages();
538 correction
= (100 * 4 * buffer_pages
) / total_pages
;
540 if (correction
< 100) {
541 dirty_background_ratio
*= correction
;
542 dirty_background_ratio
/= 100;
543 vm_dirty_ratio
*= correction
;
544 vm_dirty_ratio
/= 100;
546 if (dirty_background_ratio
<= 0)
547 dirty_background_ratio
= 1;
548 if (vm_dirty_ratio
<= 0)
551 mod_timer(&wb_timer
, jiffies
+ dirty_writeback_interval
);
553 register_cpu_notifier(&ratelimit_nb
);
556 int do_writepages(struct address_space
*mapping
, struct writeback_control
*wbc
)
560 if (wbc
->nr_to_write
<= 0)
562 wbc
->for_writepages
= 1;
563 if (mapping
->a_ops
->writepages
)
564 ret
= mapping
->a_ops
->writepages(mapping
, wbc
);
566 ret
= generic_writepages(mapping
, wbc
);
567 wbc
->for_writepages
= 0;
572 * write_one_page - write out a single page and optionally wait on I/O
574 * @page: the page to write
575 * @wait: if true, wait on writeout
577 * The page must be locked by the caller and will be unlocked upon return.
579 * write_one_page() returns a negative error code if I/O failed.
581 int write_one_page(struct page
*page
, int wait
)
583 struct address_space
*mapping
= page
->mapping
;
585 struct writeback_control wbc
= {
586 .sync_mode
= WB_SYNC_ALL
,
590 BUG_ON(!PageLocked(page
));
593 wait_on_page_writeback(page
);
595 if (clear_page_dirty_for_io(page
)) {
596 page_cache_get(page
);
597 ret
= mapping
->a_ops
->writepage(page
, &wbc
);
598 if (ret
== 0 && wait
) {
599 wait_on_page_writeback(page
);
603 page_cache_release(page
);
609 EXPORT_SYMBOL(write_one_page
);
612 * For address_spaces which do not use buffers. Just tag the page as dirty in
615 * This is also used when a single buffer is being dirtied: we want to set the
616 * page dirty in that case, but not all the buffers. This is a "bottom-up"
617 * dirtying, whereas __set_page_dirty_buffers() is a "top-down" dirtying.
619 * Most callers have locked the page, which pins the address_space in memory.
620 * But zap_pte_range() does not lock the page, however in that case the
621 * mapping is pinned by the vma's ->vm_file reference.
623 * We take care to handle the case where the page was truncated from the
624 * mapping by re-checking page_mapping() insode tree_lock.
626 int __set_page_dirty_nobuffers(struct page
*page
)
628 if (!TestSetPageDirty(page
)) {
629 struct address_space
*mapping
= page_mapping(page
);
630 struct address_space
*mapping2
;
633 write_lock_irq(&mapping
->tree_lock
);
634 mapping2
= page_mapping(page
);
635 if (mapping2
) { /* Race with truncate? */
636 BUG_ON(mapping2
!= mapping
);
637 if (mapping_cap_account_dirty(mapping
))
638 __inc_zone_page_state(page
,
640 radix_tree_tag_set(&mapping
->page_tree
,
641 page_index(page
), PAGECACHE_TAG_DIRTY
);
643 write_unlock_irq(&mapping
->tree_lock
);
645 /* !PageAnon && !swapper_space */
646 __mark_inode_dirty(mapping
->host
,
654 EXPORT_SYMBOL(__set_page_dirty_nobuffers
);
657 * When a writepage implementation decides that it doesn't want to write this
658 * page for some reason, it should redirty the locked page via
659 * redirty_page_for_writepage() and it should then unlock the page and return 0
661 int redirty_page_for_writepage(struct writeback_control
*wbc
, struct page
*page
)
663 wbc
->pages_skipped
++;
664 return __set_page_dirty_nobuffers(page
);
666 EXPORT_SYMBOL(redirty_page_for_writepage
);
669 * If the mapping doesn't provide a set_page_dirty a_op, then
670 * just fall through and assume that it wants buffer_heads.
672 int fastcall
set_page_dirty(struct page
*page
)
674 struct address_space
*mapping
= page_mapping(page
);
676 if (likely(mapping
)) {
677 int (*spd
)(struct page
*) = mapping
->a_ops
->set_page_dirty
;
680 return __set_page_dirty_buffers(page
);
682 if (!PageDirty(page
)) {
683 if (!TestSetPageDirty(page
))
688 EXPORT_SYMBOL(set_page_dirty
);
691 * set_page_dirty() is racy if the caller has no reference against
692 * page->mapping->host, and if the page is unlocked. This is because another
693 * CPU could truncate the page off the mapping and then free the mapping.
695 * Usually, the page _is_ locked, or the caller is a user-space process which
696 * holds a reference on the inode by having an open file.
698 * In other cases, the page should be locked before running set_page_dirty().
700 int set_page_dirty_lock(struct page
*page
)
704 lock_page_nosync(page
);
705 ret
= set_page_dirty(page
);
709 EXPORT_SYMBOL(set_page_dirty_lock
);
712 * Clear a page's dirty flag, while caring for dirty memory accounting.
713 * Returns true if the page was previously dirty.
715 int test_clear_page_dirty(struct page
*page
)
717 struct address_space
*mapping
= page_mapping(page
);
721 write_lock_irqsave(&mapping
->tree_lock
, flags
);
722 if (TestClearPageDirty(page
)) {
723 radix_tree_tag_clear(&mapping
->page_tree
,
725 PAGECACHE_TAG_DIRTY
);
726 write_unlock_irqrestore(&mapping
->tree_lock
, flags
);
728 * We can continue to use `mapping' here because the
729 * page is locked, which pins the address_space
731 if (mapping_cap_account_dirty(mapping
)) {
733 dec_zone_page_state(page
, NR_FILE_DIRTY
);
737 write_unlock_irqrestore(&mapping
->tree_lock
, flags
);
740 return TestClearPageDirty(page
);
742 EXPORT_SYMBOL(test_clear_page_dirty
);
745 * Clear a page's dirty flag, while caring for dirty memory accounting.
746 * Returns true if the page was previously dirty.
748 * This is for preparing to put the page under writeout. We leave the page
749 * tagged as dirty in the radix tree so that a concurrent write-for-sync
750 * can discover it via a PAGECACHE_TAG_DIRTY walk. The ->writepage
751 * implementation will run either set_page_writeback() or set_page_dirty(),
752 * at which stage we bring the page's dirty flag and radix-tree dirty tag
755 * This incoherency between the page's dirty flag and radix-tree tag is
756 * unfortunate, but it only exists while the page is locked.
758 int clear_page_dirty_for_io(struct page
*page
)
760 struct address_space
*mapping
= page_mapping(page
);
763 if (TestClearPageDirty(page
)) {
764 if (mapping_cap_account_dirty(mapping
)) {
766 dec_zone_page_state(page
, NR_FILE_DIRTY
);
772 return TestClearPageDirty(page
);
774 EXPORT_SYMBOL(clear_page_dirty_for_io
);
776 int test_clear_page_writeback(struct page
*page
)
778 struct address_space
*mapping
= page_mapping(page
);
784 write_lock_irqsave(&mapping
->tree_lock
, flags
);
785 ret
= TestClearPageWriteback(page
);
787 radix_tree_tag_clear(&mapping
->page_tree
,
789 PAGECACHE_TAG_WRITEBACK
);
790 write_unlock_irqrestore(&mapping
->tree_lock
, flags
);
792 ret
= TestClearPageWriteback(page
);
797 int test_set_page_writeback(struct page
*page
)
799 struct address_space
*mapping
= page_mapping(page
);
805 write_lock_irqsave(&mapping
->tree_lock
, flags
);
806 ret
= TestSetPageWriteback(page
);
808 radix_tree_tag_set(&mapping
->page_tree
,
810 PAGECACHE_TAG_WRITEBACK
);
811 if (!PageDirty(page
))
812 radix_tree_tag_clear(&mapping
->page_tree
,
814 PAGECACHE_TAG_DIRTY
);
815 write_unlock_irqrestore(&mapping
->tree_lock
, flags
);
817 ret
= TestSetPageWriteback(page
);
822 EXPORT_SYMBOL(test_set_page_writeback
);
825 * Wakes up tasks that are being throttled due to writeback congestion
827 void writeback_congestion_end(void)
829 blk_congestion_end(WRITE
);
831 EXPORT_SYMBOL(writeback_congestion_end
);
834 * Return true if any of the pages in the mapping are marged with the
837 int mapping_tagged(struct address_space
*mapping
, int tag
)
842 read_lock_irqsave(&mapping
->tree_lock
, flags
);
843 ret
= radix_tree_tagged(&mapping
->page_tree
, tag
);
844 read_unlock_irqrestore(&mapping
->tree_lock
, flags
);
847 EXPORT_SYMBOL(mapping_tagged
);