backing-dev.h 12.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10
/*
 * include/linux/backing-dev.h
 *
 * low-level device information and state which is propagated up through
 * to high-level code.
 */

#ifndef _LINUX_BACKING_DEV_H
#define _LINUX_BACKING_DEV_H

11
#include <linux/kernel.h>
12
#include <linux/fs.h>
13
#include <linux/sched.h>
T
Tejun Heo 已提交
14
#include <linux/blkdev.h>
15
#include <linux/writeback.h>
16
#include <linux/blk-cgroup.h>
17
#include <linux/backing-dev-defs.h>
L
Linus Torvalds 已提交
18

M
Mikulas Patocka 已提交
19
int __must_check bdi_init(struct backing_dev_info *bdi);
20 21
void bdi_destroy(struct backing_dev_info *bdi);

22
__printf(3, 4)
23 24 25 26
int bdi_register(struct backing_dev_info *bdi, struct device *parent,
		const char *fmt, ...);
int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev);
void bdi_unregister(struct backing_dev_info *bdi);
27
int __must_check bdi_setup_and_register(struct backing_dev_info *, char *);
28 29
void bdi_start_writeback(struct backing_dev_info *bdi, long nr_pages,
			enum wb_reason reason);
30
void bdi_start_background_writeback(struct backing_dev_info *bdi);
31
void wb_workfn(struct work_struct *work);
32
bool bdi_has_dirty_io(struct backing_dev_info *bdi);
33
void wb_wakeup_delayed(struct bdi_writeback *wb);
34

35
extern spinlock_t bdi_lock;
36 37
extern struct list_head bdi_list;

38 39
extern struct workqueue_struct *bdi_wq;

40
static inline bool wb_has_dirty_io(struct bdi_writeback *wb)
41
{
42
	return test_bit(WB_has_dirty_io, &wb->state);
43 44
}

45 46
static inline void __add_wb_stat(struct bdi_writeback *wb,
				 enum wb_stat_item item, s64 amount)
47
{
48
	__percpu_counter_add(&wb->stat[item], amount, WB_STAT_BATCH);
49 50
}

51 52
static inline void __inc_wb_stat(struct bdi_writeback *wb,
				 enum wb_stat_item item)
53
{
54
	__add_wb_stat(wb, item, 1);
55 56
}

57
static inline void inc_wb_stat(struct bdi_writeback *wb, enum wb_stat_item item)
58 59 60 61
{
	unsigned long flags;

	local_irq_save(flags);
62
	__inc_wb_stat(wb, item);
63 64 65
	local_irq_restore(flags);
}

66 67
static inline void __dec_wb_stat(struct bdi_writeback *wb,
				 enum wb_stat_item item)
68
{
69
	__add_wb_stat(wb, item, -1);
70 71
}

72
static inline void dec_wb_stat(struct bdi_writeback *wb, enum wb_stat_item item)
73 74 75 76
{
	unsigned long flags;

	local_irq_save(flags);
77
	__dec_wb_stat(wb, item);
78 79 80
	local_irq_restore(flags);
}

81
static inline s64 wb_stat(struct bdi_writeback *wb, enum wb_stat_item item)
82
{
83
	return percpu_counter_read_positive(&wb->stat[item]);
84 85
}

86 87
static inline s64 __wb_stat_sum(struct bdi_writeback *wb,
				enum wb_stat_item item)
88
{
89
	return percpu_counter_sum_positive(&wb->stat[item]);
90 91
}

92
static inline s64 wb_stat_sum(struct bdi_writeback *wb, enum wb_stat_item item)
P
Peter Zijlstra 已提交
93
{
94 95 96 97
	s64 sum;
	unsigned long flags;

	local_irq_save(flags);
98
	sum = __wb_stat_sum(wb, item);
99 100 101
	local_irq_restore(flags);

	return sum;
P
Peter Zijlstra 已提交
102 103
}

104
extern void wb_writeout_inc(struct bdi_writeback *wb);
105

106 107 108
/*
 * maximal error of a stat counter.
 */
109
static inline unsigned long wb_stat_error(struct bdi_writeback *wb)
P
Peter Zijlstra 已提交
110
{
111
#ifdef CONFIG_SMP
112
	return nr_cpu_ids * WB_STAT_BATCH;
113 114 115
#else
	return 1;
#endif
P
Peter Zijlstra 已提交
116
}
L
Linus Torvalds 已提交
117

118
int bdi_set_min_ratio(struct backing_dev_info *bdi, unsigned int min_ratio);
119
int bdi_set_max_ratio(struct backing_dev_info *bdi, unsigned int max_ratio);
120

L
Linus Torvalds 已提交
121 122
/*
 * Flags in backing_dev_info::capability
123 124 125 126 127 128 129 130 131 132 133 134
 *
 * The first three flags control whether dirty pages will contribute to the
 * VM's accounting and whether writepages() should be called for dirty pages
 * (something that would not, for example, be appropriate for ramfs)
 *
 * WARNING: these flags are closely related and should not normally be
 * used separately.  The BDI_CAP_NO_ACCT_AND_WRITEBACK combines these
 * three flags into a single convenience macro.
 *
 * BDI_CAP_NO_ACCT_DIRTY:  Dirty pages shouldn't contribute to accounting
 * BDI_CAP_NO_WRITEBACK:   Don't write pages back
 * BDI_CAP_NO_ACCT_WB:     Don't automatically account writeback pages
135
 * BDI_CAP_STRICTLIMIT:    Keep number of dirty pages below bdi threshold.
136 137
 *
 * BDI_CAP_CGROUP_WRITEBACK: Supports cgroup-aware writeback.
L
Linus Torvalds 已提交
138
 */
139 140
#define BDI_CAP_NO_ACCT_DIRTY	0x00000001
#define BDI_CAP_NO_WRITEBACK	0x00000002
141 142 143
#define BDI_CAP_NO_ACCT_WB	0x00000004
#define BDI_CAP_STABLE_WRITES	0x00000008
#define BDI_CAP_STRICTLIMIT	0x00000010
144
#define BDI_CAP_CGROUP_WRITEBACK 0x00000020
L
Linus Torvalds 已提交
145

146 147 148
#define BDI_CAP_NO_ACCT_AND_WRITEBACK \
	(BDI_CAP_NO_WRITEBACK | BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_ACCT_WB)

J
Jörn Engel 已提交
149
extern struct backing_dev_info noop_backing_dev_info;
L
Linus Torvalds 已提交
150 151 152

int writeback_in_progress(struct backing_dev_info *bdi);

T
Tejun Heo 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
static inline struct backing_dev_info *inode_to_bdi(struct inode *inode)
{
	struct super_block *sb;

	if (!inode)
		return &noop_backing_dev_info;

	sb = inode->i_sb;
#ifdef CONFIG_BLOCK
	if (sb_is_blkdev_sb(sb))
		return blk_get_backing_dev_info(I_BDEV(inode));
#endif
	return sb->s_bdi;
}

168
static inline int wb_congested(struct bdi_writeback *wb, int cong_bits)
L
Linus Torvalds 已提交
169
{
170
	struct backing_dev_info *bdi = wb->bdi;
L
Linus Torvalds 已提交
171

172 173 174
	if (bdi->congested_fn)
		return bdi->congested_fn(bdi->congested_data, cong_bits);
	return wb->congested->state & cong_bits;
L
Linus Torvalds 已提交
175 176
}

177
long congestion_wait(int sync, long timeout);
178
long wait_iff_congested(struct zone *zone, int sync, long timeout);
179 180
int pdflush_proc_obsolete(struct ctl_table *table, int write,
		void __user *buffer, size_t *lenp, loff_t *ppos);
L
Linus Torvalds 已提交
181

182 183 184 185 186
static inline bool bdi_cap_stable_pages_required(struct backing_dev_info *bdi)
{
	return bdi->capabilities & BDI_CAP_STABLE_WRITES;
}

187 188 189 190 191 192 193 194 195
static inline bool bdi_cap_writeback_dirty(struct backing_dev_info *bdi)
{
	return !(bdi->capabilities & BDI_CAP_NO_WRITEBACK);
}

static inline bool bdi_cap_account_dirty(struct backing_dev_info *bdi)
{
	return !(bdi->capabilities & BDI_CAP_NO_ACCT_DIRTY);
}
L
Linus Torvalds 已提交
196

197 198 199 200 201 202
static inline bool bdi_cap_account_writeback(struct backing_dev_info *bdi)
{
	/* Paranoia: BDI_CAP_NO_WRITEBACK implies BDI_CAP_NO_ACCT_WB */
	return !(bdi->capabilities & (BDI_CAP_NO_ACCT_WB |
				      BDI_CAP_NO_WRITEBACK));
}
L
Linus Torvalds 已提交
203

204 205
static inline bool mapping_cap_writeback_dirty(struct address_space *mapping)
{
206
	return bdi_cap_writeback_dirty(inode_to_bdi(mapping->host));
207
}
L
Linus Torvalds 已提交
208

209 210
static inline bool mapping_cap_account_dirty(struct address_space *mapping)
{
211
	return bdi_cap_account_dirty(inode_to_bdi(mapping->host));
212
}
L
Linus Torvalds 已提交
213

214 215 216 217 218 219
static inline int bdi_sched_wait(void *word)
{
	schedule();
	return 0;
}

220 221
#ifdef CONFIG_CGROUP_WRITEBACK

222 223 224 225 226 227 228 229 230
struct bdi_writeback_congested *
wb_congested_get_create(struct backing_dev_info *bdi, int blkcg_id, gfp_t gfp);
void wb_congested_put(struct bdi_writeback_congested *congested);
struct bdi_writeback *wb_get_create(struct backing_dev_info *bdi,
				    struct cgroup_subsys_state *memcg_css,
				    gfp_t gfp);
void __inode_attach_wb(struct inode *inode, struct page *page);
void wb_memcg_offline(struct mem_cgroup *memcg);
void wb_blkcg_offline(struct blkcg *blkcg);
231
int inode_congested(struct inode *inode, int cong_bits);
232

233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
/**
 * inode_cgwb_enabled - test whether cgroup writeback is enabled on an inode
 * @inode: inode of interest
 *
 * cgroup writeback requires support from both the bdi and filesystem.
 * Test whether @inode has both.
 */
static inline bool inode_cgwb_enabled(struct inode *inode)
{
	struct backing_dev_info *bdi = inode_to_bdi(inode);

	return bdi_cap_account_dirty(bdi) &&
		(bdi->capabilities & BDI_CAP_CGROUP_WRITEBACK) &&
		(inode->i_sb->s_type->fs_flags & FS_CGROUP_WRITEBACK);
}

249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
/**
 * wb_tryget - try to increment a wb's refcount
 * @wb: bdi_writeback to get
 */
static inline bool wb_tryget(struct bdi_writeback *wb)
{
	if (wb != &wb->bdi->wb)
		return percpu_ref_tryget(&wb->refcnt);
	return true;
}

/**
 * wb_get - increment a wb's refcount
 * @wb: bdi_writeback to get
 */
static inline void wb_get(struct bdi_writeback *wb)
{
	if (wb != &wb->bdi->wb)
		percpu_ref_get(&wb->refcnt);
}

/**
 * wb_put - decrement a wb's refcount
 * @wb: bdi_writeback to put
 */
static inline void wb_put(struct bdi_writeback *wb)
{
	if (wb != &wb->bdi->wb)
		percpu_ref_put(&wb->refcnt);
}

/**
 * wb_find_current - find wb for %current on a bdi
 * @bdi: bdi of interest
 *
 * Find the wb of @bdi which matches both the memcg and blkcg of %current.
 * Must be called under rcu_read_lock() which protects the returend wb.
 * NULL if not found.
 */
static inline struct bdi_writeback *wb_find_current(struct backing_dev_info *bdi)
{
	struct cgroup_subsys_state *memcg_css;
	struct bdi_writeback *wb;

	memcg_css = task_css(current, memory_cgrp_id);
	if (!memcg_css->parent)
		return &bdi->wb;

	wb = radix_tree_lookup(&bdi->cgwb_tree, memcg_css->id);

	/*
	 * %current's blkcg equals the effective blkcg of its memcg.  No
	 * need to use the relatively expensive cgroup_get_e_css().
	 */
	if (likely(wb && wb->blkcg_css == task_css(current, blkio_cgrp_id)))
		return wb;
	return NULL;
}

/**
 * wb_get_create_current - get or create wb for %current on a bdi
 * @bdi: bdi of interest
 * @gfp: allocation mask
 *
 * Equivalent to wb_get_create() on %current's memcg.  This function is
 * called from a relatively hot path and optimizes the common cases using
 * wb_find_current().
 */
static inline struct bdi_writeback *
wb_get_create_current(struct backing_dev_info *bdi, gfp_t gfp)
{
	struct bdi_writeback *wb;

	rcu_read_lock();
	wb = wb_find_current(bdi);
	if (wb && unlikely(!wb_tryget(wb)))
		wb = NULL;
	rcu_read_unlock();

	if (unlikely(!wb)) {
		struct cgroup_subsys_state *memcg_css;

		memcg_css = task_get_css(current, memory_cgrp_id);
		wb = wb_get_create(bdi, memcg_css, gfp);
		css_put(memcg_css);
	}
	return wb;
}

/**
 * inode_attach_wb - associate an inode with its wb
 * @inode: inode of interest
 * @page: page being dirtied (may be NULL)
 *
 * If @inode doesn't have its wb, associate it with the wb matching the
 * memcg of @page or, if @page is NULL, %current.  May be called w/ or w/o
 * @inode->i_lock.
 */
static inline void inode_attach_wb(struct inode *inode, struct page *page)
{
	if (!inode->i_wb)
		__inode_attach_wb(inode, page);
}

/**
 * inode_detach_wb - disassociate an inode from its wb
 * @inode: inode of interest
 *
 * @inode is being freed.  Detach from its wb.
 */
static inline void inode_detach_wb(struct inode *inode)
{
	if (inode->i_wb) {
		wb_put(inode->i_wb);
		inode->i_wb = NULL;
	}
}

/**
 * inode_to_wb - determine the wb of an inode
 * @inode: inode of interest
 *
 * Returns the wb @inode is currently associated with.
 */
static inline struct bdi_writeback *inode_to_wb(struct inode *inode)
{
	return inode->i_wb;
}

378 379 380 381 382 383 384
#else	/* CONFIG_CGROUP_WRITEBACK */

static inline bool inode_cgwb_enabled(struct inode *inode)
{
	return false;
}

385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
static inline struct bdi_writeback_congested *
wb_congested_get_create(struct backing_dev_info *bdi, int blkcg_id, gfp_t gfp)
{
	return bdi->wb.congested;
}

static inline void wb_congested_put(struct bdi_writeback_congested *congested)
{
}

static inline bool wb_tryget(struct bdi_writeback *wb)
{
	return true;
}

static inline void wb_get(struct bdi_writeback *wb)
{
}

static inline void wb_put(struct bdi_writeback *wb)
{
}

static inline struct bdi_writeback *wb_find_current(struct backing_dev_info *bdi)
{
	return &bdi->wb;
}

static inline struct bdi_writeback *
wb_get_create_current(struct backing_dev_info *bdi, gfp_t gfp)
{
	return &bdi->wb;
}

static inline void inode_attach_wb(struct inode *inode, struct page *page)
{
}

static inline void inode_detach_wb(struct inode *inode)
{
}

static inline struct bdi_writeback *inode_to_wb(struct inode *inode)
{
	return &inode_to_bdi(inode)->wb;
}

static inline void wb_memcg_offline(struct mem_cgroup *memcg)
{
}

static inline void wb_blkcg_offline(struct blkcg *blkcg)
{
}

440 441 442 443 444
static inline int inode_congested(struct inode *inode, int cong_bits)
{
	return wb_congested(&inode_to_bdi(inode)->wb, cong_bits);
}

445 446
#endif	/* CONFIG_CGROUP_WRITEBACK */

447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
static inline int inode_read_congested(struct inode *inode)
{
	return inode_congested(inode, 1 << WB_sync_congested);
}

static inline int inode_write_congested(struct inode *inode)
{
	return inode_congested(inode, 1 << WB_async_congested);
}

static inline int inode_rw_congested(struct inode *inode)
{
	return inode_congested(inode, (1 << WB_sync_congested) |
				      (1 << WB_async_congested));
}

463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
static inline int bdi_congested(struct backing_dev_info *bdi, int cong_bits)
{
	return wb_congested(&bdi->wb, cong_bits);
}

static inline int bdi_read_congested(struct backing_dev_info *bdi)
{
	return bdi_congested(bdi, 1 << WB_sync_congested);
}

static inline int bdi_write_congested(struct backing_dev_info *bdi)
{
	return bdi_congested(bdi, 1 << WB_async_congested);
}

static inline int bdi_rw_congested(struct backing_dev_info *bdi)
{
	return bdi_congested(bdi, (1 << WB_sync_congested) |
				  (1 << WB_async_congested));
}

484
#endif	/* _LINUX_BACKING_DEV_H */