Commit 81a350c6 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Linus Torvalds

[PATCH] Missing static in buffer.c

The exports were for reiserfs in 2.4, but reiserfs doesn't need them
anymore.
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 5d08d326
...@@ -39,6 +39,7 @@ ...@@ -39,6 +39,7 @@
#include <linux/cpu.h> #include <linux/cpu.h>
#include <asm/bitops.h> #include <asm/bitops.h>
static int fsync_buffers_list(spinlock_t *lock, struct list_head *list);
static void invalidate_bh_lrus(void); static void invalidate_bh_lrus(void);
#define BH_ENTRY(list) list_entry((list), struct buffer_head, b_assoc_buffers) #define BH_ENTRY(list) list_entry((list), struct buffer_head, b_assoc_buffers)
...@@ -725,12 +726,11 @@ void end_buffer_async_write(struct buffer_head *bh, int uptodate) ...@@ -725,12 +726,11 @@ void end_buffer_async_write(struct buffer_head *bh, int uptodate)
* PageLocked prevents anyone from starting writeback of a page which is * PageLocked prevents anyone from starting writeback of a page which is
* under read I/O (PageWriteback is only ever set against a locked page). * under read I/O (PageWriteback is only ever set against a locked page).
*/ */
void mark_buffer_async_read(struct buffer_head *bh) static void mark_buffer_async_read(struct buffer_head *bh)
{ {
bh->b_end_io = end_buffer_async_read; bh->b_end_io = end_buffer_async_read;
set_buffer_async_read(bh); set_buffer_async_read(bh);
} }
EXPORT_SYMBOL(mark_buffer_async_read);
void mark_buffer_async_write(struct buffer_head *bh) void mark_buffer_async_write(struct buffer_head *bh)
{ {
...@@ -789,14 +789,6 @@ EXPORT_SYMBOL(mark_buffer_async_write); ...@@ -789,14 +789,6 @@ EXPORT_SYMBOL(mark_buffer_async_write);
* b_inode back. * b_inode back.
*/ */
void buffer_insert_list(spinlock_t *lock,
struct buffer_head *bh, struct list_head *list)
{
spin_lock(lock);
list_move_tail(&bh->b_assoc_buffers, list);
spin_unlock(lock);
}
/* /*
* The buffer's backing address_space's private_lock must be held * The buffer's backing address_space's private_lock must be held
*/ */
...@@ -899,9 +891,13 @@ void mark_buffer_dirty_inode(struct buffer_head *bh, struct inode *inode) ...@@ -899,9 +891,13 @@ void mark_buffer_dirty_inode(struct buffer_head *bh, struct inode *inode)
if (mapping->assoc_mapping != buffer_mapping) if (mapping->assoc_mapping != buffer_mapping)
BUG(); BUG();
} }
if (list_empty(&bh->b_assoc_buffers)) if (list_empty(&bh->b_assoc_buffers)) {
buffer_insert_list(&buffer_mapping->private_lock, spin_lock(&buffer_mapping->private_lock);
bh, &mapping->private_list); list_move_tail(&bh->b_assoc_buffers,
&mapping->private_list);
spin_lock(&buffer_mapping->private_lock);
}
} }
EXPORT_SYMBOL(mark_buffer_dirty_inode); EXPORT_SYMBOL(mark_buffer_dirty_inode);
...@@ -982,7 +978,7 @@ EXPORT_SYMBOL(__set_page_dirty_buffers); ...@@ -982,7 +978,7 @@ EXPORT_SYMBOL(__set_page_dirty_buffers);
* the osync code to catch these locked, dirty buffers without requeuing * the osync code to catch these locked, dirty buffers without requeuing
* any newly dirty buffers for write. * any newly dirty buffers for write.
*/ */
int fsync_buffers_list(spinlock_t *lock, struct list_head *list) static int fsync_buffers_list(spinlock_t *lock, struct list_head *list)
{ {
struct buffer_head *bh; struct buffer_head *bh;
struct list_head tmp; struct list_head tmp;
...@@ -3153,14 +3149,12 @@ EXPORT_SYMBOL(block_read_full_page); ...@@ -3153,14 +3149,12 @@ EXPORT_SYMBOL(block_read_full_page);
EXPORT_SYMBOL(block_sync_page); EXPORT_SYMBOL(block_sync_page);
EXPORT_SYMBOL(block_truncate_page); EXPORT_SYMBOL(block_truncate_page);
EXPORT_SYMBOL(block_write_full_page); EXPORT_SYMBOL(block_write_full_page);
EXPORT_SYMBOL(buffer_insert_list);
EXPORT_SYMBOL(cont_prepare_write); EXPORT_SYMBOL(cont_prepare_write);
EXPORT_SYMBOL(end_buffer_async_write); EXPORT_SYMBOL(end_buffer_async_write);
EXPORT_SYMBOL(end_buffer_read_sync); EXPORT_SYMBOL(end_buffer_read_sync);
EXPORT_SYMBOL(end_buffer_write_sync); EXPORT_SYMBOL(end_buffer_write_sync);
EXPORT_SYMBOL(file_fsync); EXPORT_SYMBOL(file_fsync);
EXPORT_SYMBOL(fsync_bdev); EXPORT_SYMBOL(fsync_bdev);
EXPORT_SYMBOL(fsync_buffers_list);
EXPORT_SYMBOL(generic_block_bmap); EXPORT_SYMBOL(generic_block_bmap);
EXPORT_SYMBOL(generic_commit_write); EXPORT_SYMBOL(generic_commit_write);
EXPORT_SYMBOL(generic_cont_expand); EXPORT_SYMBOL(generic_cont_expand);
......
...@@ -143,17 +143,13 @@ void end_buffer_write_sync(struct buffer_head *bh, int uptodate); ...@@ -143,17 +143,13 @@ void end_buffer_write_sync(struct buffer_head *bh, int uptodate);
void end_buffer_async_write(struct buffer_head *bh, int uptodate); void end_buffer_async_write(struct buffer_head *bh, int uptodate);
/* Things to do with buffers at mapping->private_list */ /* Things to do with buffers at mapping->private_list */
void buffer_insert_list(spinlock_t *lock,
struct buffer_head *, struct list_head *);
void mark_buffer_dirty_inode(struct buffer_head *bh, struct inode *inode); void mark_buffer_dirty_inode(struct buffer_head *bh, struct inode *inode);
int inode_has_buffers(struct inode *); int inode_has_buffers(struct inode *);
void invalidate_inode_buffers(struct inode *); void invalidate_inode_buffers(struct inode *);
int remove_inode_buffers(struct inode *inode); int remove_inode_buffers(struct inode *inode);
int fsync_buffers_list(spinlock_t *lock, struct list_head *);
int sync_mapping_buffers(struct address_space *mapping); int sync_mapping_buffers(struct address_space *mapping);
void unmap_underlying_metadata(struct block_device *bdev, sector_t block); void unmap_underlying_metadata(struct block_device *bdev, sector_t block);
void mark_buffer_async_read(struct buffer_head *bh);
void mark_buffer_async_write(struct buffer_head *bh); void mark_buffer_async_write(struct buffer_head *bh);
void invalidate_bdev(struct block_device *, int); void invalidate_bdev(struct block_device *, int);
int sync_blockdev(struct block_device *bdev); int sync_blockdev(struct block_device *bdev);
......
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