Commit 8fd01d6cfbf75465d84a4e533ed70c5f57b3ff51

Authored by Linus Torvalds
1 parent cd07202cc8

Export dump_{write,seek} to binary loader modules

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>

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

... ... @@ -2024,6 +2024,7 @@
2024 2024 {
2025 2025 return access_ok(VERIFY_READ, addr, nr) && file->f_op->write(file, addr, nr, &file->f_pos) == nr;
2026 2026 }
  2027 +EXPORT_SYMBOL(dump_write);
2027 2028  
2028 2029 int dump_seek(struct file *file, loff_t off)
2029 2030 {
... ... @@ -2052,4 +2053,5 @@
2052 2053 }
2053 2054 return ret;
2054 2055 }
  2056 +EXPORT_SYMBOL(dump_seek);