diff options
| author | Matthew Wilcox <willy@debian.org> | 2002-11-15 18:25:30 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@penguin.transmeta.com> | 2002-11-15 18:25:30 -0800 |
| commit | cd574b7454f33edae3ecdfd7c93e9340d1ce65c9 (patch) | |
| tree | 7e103db96de9e1da36f20aea26af5c0b22b45e02 /kernel | |
| parent | f7efec4a899f5bfbf91424024246900c1ff451ce (diff) | |
[PATCH] Remove d_path from sched.h
This patch from William Lee Irwin III privatizes __d_path() to dcache.c,
uninlines d_path(), moves its declaration to dcache.h, moves it to
dcache.c, and exports d_path() instead of __d_path().
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/ksyms.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/ksyms.c b/kernel/ksyms.c index 65537e41d098..1b85bc771653 100644 --- a/kernel/ksyms.c +++ b/kernel/ksyms.c @@ -166,7 +166,7 @@ EXPORT_SYMBOL(d_alloc); EXPORT_SYMBOL(d_alloc_anon); EXPORT_SYMBOL(d_splice_alias); EXPORT_SYMBOL(d_lookup); -EXPORT_SYMBOL(__d_path); +EXPORT_SYMBOL(d_path); EXPORT_SYMBOL(mark_buffer_dirty); EXPORT_SYMBOL(end_buffer_io_sync); EXPORT_SYMBOL(__mark_inode_dirty); |
