aboutsummaryrefslogtreecommitdiffstats
path: root/mm/cleancache.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/cleancache.c')
-rw-r--r--mm/cleancache.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mm/cleancache.c b/mm/cleancache.c
index 5875f48ce279..d0eac4350403 100644
--- a/mm/cleancache.c
+++ b/mm/cleancache.c
@@ -237,7 +237,7 @@ int __cleancache_get_page(struct page *page)
237 goto out; 237 goto out;
238 } 238 }
239 239
240 VM_BUG_ON(!PageLocked(page)); 240 VM_BUG_ON_PAGE(!PageLocked(page), page);
241 fake_pool_id = page->mapping->host->i_sb->cleancache_poolid; 241 fake_pool_id = page->mapping->host->i_sb->cleancache_poolid;
242 if (fake_pool_id < 0) 242 if (fake_pool_id < 0)
243 goto out; 243 goto out;
@@ -279,7 +279,7 @@ void __cleancache_put_page(struct page *page)
279 return; 279 return;
280 } 280 }
281 281
282 VM_BUG_ON(!PageLocked(page)); 282 VM_BUG_ON_PAGE(!PageLocked(page), page);
283 fake_pool_id = page->mapping->host->i_sb->cleancache_poolid; 283 fake_pool_id = page->mapping->host->i_sb->cleancache_poolid;
284 if (fake_pool_id < 0) 284 if (fake_pool_id < 0)
285 return; 285 return;
@@ -318,7 +318,7 @@ void __cleancache_invalidate_page(struct address_space *mapping,
318 if (pool_id < 0) 318 if (pool_id < 0)
319 return; 319 return;
320 320
321 VM_BUG_ON(!PageLocked(page)); 321 VM_BUG_ON_PAGE(!PageLocked(page), page);
322 if (cleancache_get_key(mapping->host, &key) >= 0) { 322 if (cleancache_get_key(mapping->host, &key) >= 0) {
323 cleancache_ops->invalidate_page(pool_id, 323 cleancache_ops->invalidate_page(pool_id,
324 key, page->index); 324 key, page->index);