From: Rusty Russell <rusty@rustcorp.com.au>
To: trivial@rustcorp.com.au
Cc: linux-kernel@vger.kernel.org, akpm@zip.com.au
Subject: [PATCH] Trivial ext2-as-a-module fix vs 2.5.43
Date: Wed, 16 Oct 2002 19:14:28 +1000 [thread overview]
Message-ID: <20021016093009.C33772C07F@lists.samba.org> (raw)
Needs these two symbols exported, as I think, does ext3.
diff -urpN --exclude TAGS -X /home/rusty/devel/kernel/kernel-patches/current-dontdiff --minimal .31492-2.5.43-module.pre/mm/filemap.c .31492-2.5.43-module/mm/filemap.c
--- .31492-2.5.43-module.pre/mm/filemap.c 2002-10-16 15:01:26.000000000 +1000
+++ .31492-2.5.43-module/mm/filemap.c 2002-10-16 19:07:56.000000000 +1000
@@ -891,6 +891,7 @@ generic_file_aio_read(struct kiocb *iocb
BUG_ON(iocb->ki_pos != pos);
return __generic_file_aio_read(iocb, &local_iov, 1, &iocb->ki_pos);
}
+EXPORT_SYMBOL(generic_file_aio_read);
ssize_t
generic_file_read(struct file *filp, char *buf, size_t count, loff_t *ppos)
@@ -1650,6 +1651,7 @@ ssize_t generic_file_aio_write(struct ki
{
return generic_file_write(iocb->ki_filp, buf, count, &iocb->ki_pos);
}
+EXPORT_SYMBOL(generic_file_aio_write);
ssize_t generic_file_write(struct file *file, const char *buf,
size_t count, loff_t *ppos)
--
Anyone who quotes me in their sig is an idiot. -- Rusty Russell.
next reply other threads:[~2002-10-16 9:24 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-10-16 9:14 Rusty Russell [this message]
-- strict thread matches above, loose matches on Subject: below --
2002-10-17 5:12 [PATCH] Trivial ext2-as-a-module fix vs 2.5.43 SL Baur
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=20021016093009.C33772C07F@lists.samba.org \
--to=rusty@rustcorp.com.au \
--cc=akpm@zip.com.au \
--cc=linux-kernel@vger.kernel.org \
--cc=trivial@rustcorp.com.au \
/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.