diff options
| author | Roland Dreier <[email protected]> | 2009-12-16 20:43:11 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2009-12-16 21:29:19 +0000 |
| commit | 73efc4681cb5e3c8807daf106f001e7f0798d8a0 (patch) | |
| tree | 8302ec91e3410912081c8468b54e97acfae0ac95 /fs/file_table.c | |
| parent | Merge branch 'next' of git://git.secretlab.ca/git/linux-2.6 (diff) | |
| download | kernel-73efc4681cb5e3c8807daf106f001e7f0798d8a0.tar.gz kernel-73efc4681cb5e3c8807daf106f001e7f0798d8a0.zip | |
re-export alloc_file()
Commit 3d1e4631 ("get rid of init_file()") removed the export of
alloc_file() -- possibly inadvertently, since that commit mainly
consisted of deleting the lines between the end of alloc_file() and
the start of the code in init_file().
There is in fact one modular use of alloc_file() in the tree, in
drivers/infiniband/core/uverbs_main.c, so re-add the export to fix:
ERROR: "alloc_file" [drivers/infiniband/core/ib_uverbs.ko] undefined!
when CONFIG_INFINIBAND_USER_ACCESS=m.
Cc: Al Viro <[email protected]>
Signed-off-by: Roland Dreier <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'fs/file_table.c')
| -rw-r--r-- | fs/file_table.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/file_table.c b/fs/file_table.c index 17a55b81be2d..0afacf654398 100644 --- a/fs/file_table.c +++ b/fs/file_table.c @@ -194,6 +194,7 @@ struct file *alloc_file(struct path *path, fmode_t mode, ima_counts_get(file); return file; } +EXPORT_SYMBOL(alloc_file); void fput(struct file *file) { |
