Commit bea6c33c authored by Anton Altaparmakov's avatar Anton Altaparmakov

NTFS: Fix compilation on 2.5.14 ({set_,clear_,}buffer_async was renamed

to {set_,clear_,}buffer_async_read).
parent 702d27c7
...@@ -76,13 +76,13 @@ static void end_buffer_read_file_async(struct buffer_head *bh, int uptodate) ...@@ -76,13 +76,13 @@ static void end_buffer_read_file_async(struct buffer_head *bh, int uptodate)
SetPageError(page); SetPageError(page);
spin_lock_irqsave(&page_uptodate_lock, flags); spin_lock_irqsave(&page_uptodate_lock, flags);
clear_buffer_async(bh); clear_buffer_async_read(bh);
unlock_buffer(bh); unlock_buffer(bh);
tmp = bh->b_this_page; tmp = bh->b_this_page;
while (tmp != bh) { while (tmp != bh) {
if (buffer_locked(tmp)) { if (buffer_locked(tmp)) {
if (buffer_async(tmp)) if (buffer_async_read(tmp))
goto still_busy; goto still_busy;
} else if (!buffer_uptodate(tmp)) } else if (!buffer_uptodate(tmp))
SetPageError(page); SetPageError(page);
...@@ -218,7 +218,7 @@ static int ntfs_file_read_block(struct page *page) ...@@ -218,7 +218,7 @@ static int ntfs_file_read_block(struct page *page)
struct buffer_head *tbh = arr[i]; struct buffer_head *tbh = arr[i];
lock_buffer(tbh); lock_buffer(tbh);
tbh->b_end_io = end_buffer_read_file_async; tbh->b_end_io = end_buffer_read_file_async;
set_buffer_async(tbh); set_buffer_async_read(tbh);
} }
/* Finally, start i/o on the buffers. */ /* Finally, start i/o on the buffers. */
for (i = 0; i < nr; i++) for (i = 0; i < nr; i++)
...@@ -378,13 +378,13 @@ static void end_buffer_read_mftbmp_async(struct buffer_head *bh, int uptodate) ...@@ -378,13 +378,13 @@ static void end_buffer_read_mftbmp_async(struct buffer_head *bh, int uptodate)
SetPageError(page); SetPageError(page);
spin_lock_irqsave(&page_uptodate_lock, flags); spin_lock_irqsave(&page_uptodate_lock, flags);
clear_buffer_async(bh); clear_buffer_async_read(bh);
unlock_buffer(bh); unlock_buffer(bh);
tmp = bh->b_this_page; tmp = bh->b_this_page;
while (tmp != bh) { while (tmp != bh) {
if (buffer_locked(tmp)) { if (buffer_locked(tmp)) {
if (buffer_async(tmp)) if (buffer_async_read(tmp))
goto still_busy; goto still_busy;
} else if (!buffer_uptodate(tmp)) } else if (!buffer_uptodate(tmp))
SetPageError(page); SetPageError(page);
...@@ -501,7 +501,7 @@ static int ntfs_mftbmp_readpage(ntfs_volume *vol, struct page *page) ...@@ -501,7 +501,7 @@ static int ntfs_mftbmp_readpage(ntfs_volume *vol, struct page *page)
struct buffer_head *tbh = arr[i]; struct buffer_head *tbh = arr[i];
lock_buffer(tbh); lock_buffer(tbh);
tbh->b_end_io = end_buffer_read_mftbmp_async; tbh->b_end_io = end_buffer_read_mftbmp_async;
set_buffer_async(tbh); set_buffer_async_read(tbh);
} }
/* Finally, start i/o on the buffers. */ /* Finally, start i/o on the buffers. */
for (i = 0; i < nr; i++) for (i = 0; i < nr; i++)
...@@ -574,13 +574,13 @@ static void end_buffer_read_mst_async(struct buffer_head *bh, int uptodate) ...@@ -574,13 +574,13 @@ static void end_buffer_read_mst_async(struct buffer_head *bh, int uptodate)
SetPageError(page); SetPageError(page);
spin_lock_irqsave(&page_uptodate_lock, flags); spin_lock_irqsave(&page_uptodate_lock, flags);
clear_buffer_async(bh); clear_buffer_async_read(bh);
unlock_buffer(bh); unlock_buffer(bh);
tmp = bh->b_this_page; tmp = bh->b_this_page;
while (tmp != bh) { while (tmp != bh) {
if (buffer_locked(tmp)) { if (buffer_locked(tmp)) {
if (buffer_async(tmp)) if (buffer_async_read(tmp))
goto still_busy; goto still_busy;
} else if (!buffer_uptodate(tmp)) } else if (!buffer_uptodate(tmp))
SetPageError(page); SetPageError(page);
...@@ -758,7 +758,7 @@ int ntfs_mst_readpage(struct file *dir, struct page *page) ...@@ -758,7 +758,7 @@ int ntfs_mst_readpage(struct file *dir, struct page *page)
struct buffer_head *tbh = arr[i]; struct buffer_head *tbh = arr[i];
lock_buffer(tbh); lock_buffer(tbh);
tbh->b_end_io = end_buffer_read_mst_async; tbh->b_end_io = end_buffer_read_mst_async;
set_buffer_async(tbh); set_buffer_async_read(tbh);
} }
/* Finally, start i/o on the buffers. */ /* Finally, start i/o on the buffers. */
for (i = 0; i < nr; i++) for (i = 0; i < nr; i++)
......
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