From: Andrew Morton <akpm@zip.com.au>
To: Miles Lane <miles@megapathdsl.net>
Cc: LKML <linux-kernel@vger.kernel.org>,
Anton Altaparmakov <aia21@cantab.net>
Subject: Re: 2.5.14 -- fs/fs.o: In function `end_buffer_read_file_async': undefinedreference to `clear_buffer_async'
Date: Sun, 05 May 2002 23:37:46 -0700 [thread overview]
Message-ID: <3CD624BA.3D094500@zip.com.au> (raw)
In-Reply-To: <3CD61A42.7050502@megapathdsl.net>
Miles Lane wrote:
>
> fs/fs.o: In function `end_buffer_read_file_async':
> fs/fs.o(.text+0x705a4): undefined reference to `clear_buffer_async'
oops. I broke it again. This is probably a subconcious reaction
to the "NT" thing. Apologies.
--- 2.5.14/fs/ntfs/aops.c~ntfs Sun May 5 23:33:05 2002
+++ 2.5.14-akpm/fs/ntfs/aops.c Sun May 5 23:34:34 2002
@@ -76,13 +76,13 @@ static void end_buffer_read_file_async(s
SetPageError(page);
spin_lock_irqsave(&page_uptodate_lock, flags);
- clear_buffer_async(bh);
+ clear_buffer_async_read(bh);
unlock_buffer(bh);
tmp = bh->b_this_page;
while (tmp != bh) {
if (buffer_locked(tmp)) {
- if (buffer_async(tmp))
+ if (buffer_async_read(tmp))
goto still_busy;
} else if (!buffer_uptodate(tmp))
SetPageError(page);
@@ -218,7 +218,7 @@ handle_zblock:
struct buffer_head *tbh = arr[i];
lock_buffer(tbh);
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. */
for (i = 0; i < nr; i++)
@@ -378,13 +378,13 @@ static void end_buffer_read_mftbmp_async
SetPageError(page);
spin_lock_irqsave(&page_uptodate_lock, flags);
- clear_buffer_async(bh);
+ clear_buffer_async_read(bh);
unlock_buffer(bh);
tmp = bh->b_this_page;
while (tmp != bh) {
if (buffer_locked(tmp)) {
- if (buffer_async(tmp))
+ if (buffer_async_read(tmp))
goto still_busy;
} else if (!buffer_uptodate(tmp))
SetPageError(page);
@@ -501,7 +501,7 @@ handle_zblock:
struct buffer_head *tbh = arr[i];
lock_buffer(tbh);
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. */
for (i = 0; i < nr; i++)
@@ -574,13 +574,13 @@ static void end_buffer_read_mst_async(st
SetPageError(page);
spin_lock_irqsave(&page_uptodate_lock, flags);
- clear_buffer_async(bh);
+ clear_buffer_async_read(bh);
unlock_buffer(bh);
tmp = bh->b_this_page;
while (tmp != bh) {
if (buffer_locked(tmp)) {
- if (buffer_async(tmp))
+ if (buffer_async_read(tmp))
goto still_busy;
} else if (!buffer_uptodate(tmp))
SetPageError(page);
@@ -758,7 +758,7 @@ handle_zblock:
struct buffer_head *tbh = arr[i];
lock_buffer(tbh);
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. */
for (i = 0; i < nr; i++)
-
prev parent reply other threads:[~2002-05-06 6:35 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-05-06 5:53 2.5.14 -- fs/fs.o: In function `end_buffer_read_file_async': undefined reference to `clear_buffer_async' Miles Lane
2002-05-06 6:37 ` Andrew Morton [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3CD624BA.3D094500@zip.com.au \
--to=akpm@zip.com.au \
--cc=aia21@cantab.net \
--cc=linux-kernel@vger.kernel.org \
--cc=miles@megapathdsl.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.