* [PATCH 2/2] mm: optimize kill_bdev()
@ 2007-04-12 15:21 Peter Zijlstra
2007-04-12 16:53 ` Andrew Morton
0 siblings, 1 reply; 2+ messages in thread
From: Peter Zijlstra @ 2007-04-12 15:21 UTC (permalink / raw)
To: Andrew Morton, Zhao Forrest; +Cc: linux-mm, linux-kernel
Remove duplicate work in kill_bdev().
It currently invalidates and then truncates the bdev's mapping.
invalidate_mapping_pages() will opportunistically remove pages from the
mapping. And truncate_inode_pages() will forcefully remove all pages.
The only thing truncate doesn't do is flush the bh lrus. So do that explicitly.
This avoids (very unlikely) but possible invalid lookup results if the
same bdev is quickyl re-issued.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
---
fs/block_dev.c | 2 +-
fs/buffer.c | 3 +--
include/linux/buffer_head.h | 1 +
3 files changed, 3 insertions(+), 3 deletions(-)
Index: linux-2.6/fs/block_dev.c
===================================================================
--- linux-2.6.orig/fs/block_dev.c 2007-04-12 16:01:13.000000000 +0200
+++ linux-2.6/fs/block_dev.c 2007-04-12 16:20:14.000000000 +0200
@@ -61,7 +61,7 @@ static sector_t max_block(struct block_d
/* Kill _all_ buffers, dirty or not.. */
static void kill_bdev(struct block_device *bdev)
{
- invalidate_bdev(bdev);
+ invalidate_bh_lrus();
truncate_inode_pages(bdev->bd_inode->i_mapping, 0);
}
Index: linux-2.6/fs/buffer.c
===================================================================
--- linux-2.6.orig/fs/buffer.c 2007-04-12 15:26:37.000000000 +0200
+++ linux-2.6/fs/buffer.c 2007-04-12 16:19:50.000000000 +0200
@@ -43,7 +43,6 @@
#include <linux/bit_spinlock.h>
static int fsync_buffers_list(spinlock_t *lock, struct list_head *list);
-static void invalidate_bh_lrus(void);
#define BH_ENTRY(list) list_entry((list), struct buffer_head, b_assoc_buffers)
@@ -1412,7 +1411,7 @@ static void invalidate_bh_lru(void *arg)
put_cpu_var(bh_lrus);
}
-static void invalidate_bh_lrus(void)
+void invalidate_bh_lrus(void)
{
on_each_cpu(invalidate_bh_lru, NULL, 1, 1);
}
Index: linux-2.6/include/linux/buffer_head.h
===================================================================
--- linux-2.6.orig/include/linux/buffer_head.h 2007-04-12 15:25:39.000000000 +0200
+++ linux-2.6/include/linux/buffer_head.h 2007-04-12 16:05:43.000000000 +0200
@@ -182,6 +182,7 @@ void __brelse(struct buffer_head *);
void __bforget(struct buffer_head *);
void __breadahead(struct block_device *, sector_t block, unsigned int size);
struct buffer_head *__bread(struct block_device *, sector_t block, unsigned size);
+void invalidate_bh_lrus(void);
struct buffer_head *alloc_buffer_head(gfp_t gfp_flags);
void free_buffer_head(struct buffer_head * bh);
void FASTCALL(unlock_buffer(struct buffer_head *bh));
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH 2/2] mm: optimize kill_bdev()
2007-04-12 15:21 [PATCH 2/2] mm: optimize kill_bdev() Peter Zijlstra
@ 2007-04-12 16:53 ` Andrew Morton
0 siblings, 0 replies; 2+ messages in thread
From: Andrew Morton @ 2007-04-12 16:53 UTC (permalink / raw)
To: Peter Zijlstra; +Cc: Zhao Forrest, linux-mm, linux-kernel
On Thu, 12 Apr 2007 17:21:22 +0200 Peter Zijlstra <a.p.zijlstra@chello.nl> wrote:
>
> Remove duplicate work in kill_bdev().
>
> It currently invalidates and then truncates the bdev's mapping.
> invalidate_mapping_pages() will opportunistically remove pages from the
> mapping. And truncate_inode_pages() will forcefully remove all pages.
>
> The only thing truncate doesn't do is flush the bh lrus. So do that explicitly.
> This avoids (very unlikely) but possible invalid lookup results if the
> same bdev is quickyl re-issued.
>
> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
> ---
> fs/block_dev.c | 2 +-
> fs/buffer.c | 3 +--
> include/linux/buffer_head.h | 1 +
> 3 files changed, 3 insertions(+), 3 deletions(-)
>
> Index: linux-2.6/fs/block_dev.c
> ===================================================================
> --- linux-2.6.orig/fs/block_dev.c 2007-04-12 16:01:13.000000000 +0200
> +++ linux-2.6/fs/block_dev.c 2007-04-12 16:20:14.000000000 +0200
> @@ -61,7 +61,7 @@ static sector_t max_block(struct block_d
> /* Kill _all_ buffers, dirty or not.. */
> static void kill_bdev(struct block_device *bdev)
> {
> - invalidate_bdev(bdev);
> + invalidate_bh_lrus();
> truncate_inode_pages(bdev->bd_inode->i_mapping, 0);
> }
Fair enough, thanks.
The check for mapping->nr_pages != 0 was added to invalidate_bdev() to
avoid unpleasant IPI-induced stalls when large ia64 machines poll their
CDROM drives for media. I don't know if kill_bdev() gets called on the
probe-a-cdrom path, but we might as well put
if (bdev->bd_inode->i_mapping->nr_pages == 0)
return;
into kill_bdev(). I'll make that change.
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-04-12 16:53 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-04-12 15:21 [PATCH 2/2] mm: optimize kill_bdev() Peter Zijlstra
2007-04-12 16:53 ` Andrew Morton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox