aboutsummaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorGravatar Alex Elder <aelder@sgi.com> 2010-10-21 08:29:34 -0500
committerGravatar Alex Elder <aelder@sgi.com> 2010-10-21 08:29:34 -0500
commit39dc948c6921169e13224a97fa53188922acfde8 (patch)
treeef9c310031ebc21321d9f10ca6afea90d37a2f57 /fs
parentxfs: semaphore cleanup (diff)
parentLinux 2.6.36 (diff)
downloadlinux-39dc948c6921169e13224a97fa53188922acfde8.tar.gz
linux-39dc948c6921169e13224a97fa53188922acfde8.tar.bz2
linux-39dc948c6921169e13224a97fa53188922acfde8.zip
Merge branch 'v2.6.36'
Diffstat (limited to 'fs')
-rw-r--r--fs/exec.c2
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);