mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-18 10:04:20 +03:00
41 lines
1.0 KiB
Plaintext
41 lines
1.0 KiB
Plaintext
diff -ru linux-2.4.16/kernel/ksyms.c linux/kernel/ksyms.c
|
|
--- linux-2.4.16/kernel/ksyms.c Tue Nov 27 15:56:08 2001
|
|
+++ linux/kernel/ksyms.c Thu Nov 29 10:51:49 2001
|
|
@@ -46,6 +46,7 @@
|
|
#include <linux/tty.h>
|
|
#include <linux/in6.h>
|
|
#include <linux/completion.h>
|
|
+#include <linux/seq_file.h>
|
|
#include <asm/checksum.h>
|
|
|
|
#if defined(CONFIG_PROC_FS)
|
|
@@ -323,6 +324,7 @@
|
|
EXPORT_SYMBOL(register_filesystem);
|
|
EXPORT_SYMBOL(unregister_filesystem);
|
|
EXPORT_SYMBOL(kern_mount);
|
|
+EXPORT_SYMBOL(do_umount);
|
|
EXPORT_SYMBOL(__mntput);
|
|
EXPORT_SYMBOL(may_umount);
|
|
|
|
@@ -348,6 +350,12 @@
|
|
EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);
|
|
EXPORT_SYMBOL(proc_doulongvec_minmax);
|
|
|
|
+/* seq_file */
|
|
+EXPORT_SYMBOL(seq_read);
|
|
+EXPORT_SYMBOL(seq_lseek);
|
|
+EXPORT_SYMBOL(seq_open);
|
|
+EXPORT_SYMBOL(seq_release);
|
|
+
|
|
/* interrupt handling */
|
|
EXPORT_SYMBOL(add_timer);
|
|
EXPORT_SYMBOL(del_timer);
|
|
@@ -522,6 +530,7 @@
|
|
|
|
/* binfmt_aout */
|
|
EXPORT_SYMBOL(get_write_access);
|
|
+EXPORT_SYMBOL(deny_write_access);
|
|
|
|
/* time */
|
|
EXPORT_SYMBOL(get_fast_time);
|