Commit df6867ef authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] remove buffer head b_inode

Removal of buffer_head.b_inode.  The list_emptiness of b_inode_buffers
is used to indicate whether the buffer is on an inode's
i_dirty_buffers.
parent 59c39e8e
...@@ -410,9 +410,7 @@ void buffer_insert_list(spinlock_t *lock, ...@@ -410,9 +410,7 @@ void buffer_insert_list(spinlock_t *lock,
if (lock == NULL) if (lock == NULL)
lock = &global_bufferlist_lock; lock = &global_bufferlist_lock;
spin_lock(lock); spin_lock(lock);
if (bh->b_inode) list_del(&bh->b_inode_buffers);
list_del(&bh->b_inode_buffers);
bh->b_inode = 1;
list_add(&bh->b_inode_buffers, list); list_add(&bh->b_inode_buffers, list);
spin_unlock(lock); spin_unlock(lock);
} }
...@@ -422,10 +420,7 @@ void buffer_insert_list(spinlock_t *lock, ...@@ -422,10 +420,7 @@ void buffer_insert_list(spinlock_t *lock,
*/ */
static inline void __remove_inode_queue(struct buffer_head *bh) static inline void __remove_inode_queue(struct buffer_head *bh)
{ {
if (bh->b_inode) { list_del_init(&bh->b_inode_buffers);
list_del(&bh->b_inode_buffers);
bh->b_inode = 0;
}
} }
int inode_has_buffers(struct inode *inode) int inode_has_buffers(struct inode *inode)
...@@ -653,11 +648,8 @@ int fsync_buffers_list(spinlock_t *lock, struct list_head *list) ...@@ -653,11 +648,8 @@ int fsync_buffers_list(spinlock_t *lock, struct list_head *list)
spin_lock(lock); spin_lock(lock);
while (!list_empty(list)) { while (!list_empty(list)) {
bh = BH_ENTRY(list->next); bh = BH_ENTRY(list->next);
list_del(&bh->b_inode_buffers); list_del_init(&bh->b_inode_buffers);
if (!buffer_dirty(bh) && !buffer_locked(bh)) if (buffer_dirty(bh) || buffer_locked(bh)) {
bh->b_inode = 0;
else {
bh->b_inode = 1;
list_add(&bh->b_inode_buffers, &tmp); list_add(&bh->b_inode_buffers, &tmp);
if (buffer_dirty(bh)) { if (buffer_dirty(bh)) {
get_bh(bh); get_bh(bh);
...@@ -2229,8 +2221,7 @@ EXPORT_SYMBOL(alloc_buffer_head); ...@@ -2229,8 +2221,7 @@ EXPORT_SYMBOL(alloc_buffer_head);
void free_buffer_head(struct buffer_head *bh) void free_buffer_head(struct buffer_head *bh)
{ {
if (bh->b_inode) BUG_ON(!list_empty(&bh->b_inode_buffers));
BUG();
mempool_free(bh, bh_mempool); mempool_free(bh, bh_mempool);
} }
EXPORT_SYMBOL(free_buffer_head); EXPORT_SYMBOL(free_buffer_head);
...@@ -2243,6 +2234,7 @@ static void init_buffer_head(void *data, kmem_cache_t *cachep, unsigned long fla ...@@ -2243,6 +2234,7 @@ static void init_buffer_head(void *data, kmem_cache_t *cachep, unsigned long fla
memset(bh, 0, sizeof(*bh)); memset(bh, 0, sizeof(*bh));
bh->b_blocknr = -1; bh->b_blocknr = -1;
INIT_LIST_HEAD(&bh->b_inode_buffers);
init_waitqueue_head(&bh->b_wait); init_waitqueue_head(&bh->b_wait);
} }
} }
......
...@@ -256,7 +256,6 @@ struct buffer_head { ...@@ -256,7 +256,6 @@ struct buffer_head {
wait_queue_head_t b_wait; wait_queue_head_t b_wait;
int b_inode; /* will go away */
struct list_head b_inode_buffers; /* doubly linked list of inode dirty buffers */ struct list_head b_inode_buffers; /* doubly linked list of inode dirty buffers */
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment