projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cd07202
)
Export dump_{write,seek} to binary loader modules
author
Linus Torvalds
<torvalds@linux-foundation.org>
Fri, 15 Oct 2010 02:15:28 +0000
(19:15 -0700)
committer
Linus Torvalds
<torvalds@linux-foundation.org>
Fri, 15 Oct 2010 02:15:28 +0000
(19:15 -0700)
If you build aout support as a module, you'll want these exported.
Reported-by: Tetsuo Handa <penguin-kernel@i-love.sakura.ne.jp>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/exec.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/exec.c
b/fs/exec.c
index 03278c984ba0c5cc6fd33c32b0f5e60da743d85c..6d2b6f93685813ba2b2119dc71c14a941061cf46 100644
(file)
--- a/
fs/exec.c
+++ b/
fs/exec.c
@@
-2024,6
+2024,7
@@
int dump_write(struct file *file, const void *addr, int nr)
{
return access_ok(VERIFY_READ, addr, nr) && file->f_op->write(file, addr, nr, &file->f_pos) == nr;
}
+EXPORT_SYMBOL(dump_write);
int dump_seek(struct file *file, loff_t off)
{
@@
-2052,3
+2053,4
@@
int dump_seek(struct file *file, loff_t off)
}
return ret;
}
+EXPORT_SYMBOL(dump_seek);