diff options
author | Colin Cross <ccross@android.com> | 2010-10-21 14:52:03 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2010-10-21 14:52:03 -0700 |
commit | 677151f967dc7ced6840d420f69e15ed6ed3e553 (patch) | |
tree | a3b8e227e83909e5105920aade6adc79fdc63680 /fs | |
parent | ea63bded335543aa6855a9f2d2da836c4853a569 (diff) | |
parent | 766197150ffa2e0fc34e852203372f0903ddd9ed (diff) |
Merge branch 'linux-tegra-2.6.36' into android-tegra-2.6.36
Diffstat (limited to 'fs')
-rw-r--r-- | fs/exec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/exec.c b/fs/exec.c index 03278c984ba0..6d2b6f936858 100644 --- 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); |