Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
9f900912
Commit
9f900912
authored
May 23, 2002
by
Kai Germaschewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
EXPORT_SYMBOL: Remove EXPORT_NO_SYMBOLS from fs/*
parent
f770c279
Changes
29
Show whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
0 additions
and
54 deletions
+0
-54
Documentation/DocBook/procfs_example.c
Documentation/DocBook/procfs_example.c
+0
-2
fs/adfs/super.c
fs/adfs/super.c
+0
-2
fs/affs/super.c
fs/affs/super.c
+0
-2
fs/bfs/inode.c
fs/bfs/inode.c
+0
-1
fs/binfmt_aout.c
fs/binfmt_aout.c
+0
-2
fs/binfmt_misc.c
fs/binfmt_misc.c
+0
-2
fs/efs/super.c
fs/efs/super.c
+0
-2
fs/ext2/super.c
fs/ext2/super.c
+0
-2
fs/ext3/super.c
fs/ext3/super.c
+0
-2
fs/hpfs/super.c
fs/hpfs/super.c
+0
-2
fs/isofs/inode.c
fs/isofs/inode.c
+0
-2
fs/jffs/inode-v23.c
fs/jffs/inode-v23.c
+0
-2
fs/jfs/super.c
fs/jfs/super.c
+0
-3
fs/minix/inode.c
fs/minix/inode.c
+0
-2
fs/ncpfs/inode.c
fs/ncpfs/inode.c
+0
-2
fs/nfs/inode.c
fs/nfs/inode.c
+0
-1
fs/nfsd/nfsctl.c
fs/nfsd/nfsctl.c
+0
-1
fs/ntfs/super.c
fs/ntfs/super.c
+0
-1
fs/openpromfs/inode.c
fs/openpromfs/inode.c
+0
-2
fs/qnx4/inode.c
fs/qnx4/inode.c
+0
-2
fs/quota_v1.c
fs/quota_v1.c
+0
-2
fs/quota_v2.c
fs/quota_v2.c
+0
-2
fs/reiserfs/super.c
fs/reiserfs/super.c
+0
-1
fs/romfs/inode.c
fs/romfs/inode.c
+0
-2
fs/smbfs/inode.c
fs/smbfs/inode.c
+0
-2
fs/sysv/super.c
fs/sysv/super.c
+0
-2
fs/udf/super.c
fs/udf/super.c
+0
-2
fs/ufs/super.c
fs/ufs/super.c
+0
-2
fs/umsdos/inode.c
fs/umsdos/inode.c
+0
-2
No files found.
Documentation/DocBook/procfs_example.c
View file @
9f900912
...
...
@@ -245,5 +245,3 @@ module_exit(cleanup_procfs_example);
MODULE_AUTHOR
(
"Erik Mouw"
);
MODULE_DESCRIPTION
(
"procfs examples"
);
EXPORT_NO_SYMBOLS
;
fs/adfs/super.c
View file @
9f900912
...
...
@@ -477,7 +477,5 @@ static void __exit exit_adfs_fs(void)
destroy_inodecache
();
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_adfs_fs
)
module_exit
(
exit_adfs_fs
)
fs/affs/super.c
View file @
9f900912
...
...
@@ -577,8 +577,6 @@ static void __exit exit_affs_fs(void)
destroy_inodecache
();
}
EXPORT_NO_SYMBOLS
;
MODULE_DESCRIPTION
(
"Amiga filesystem support for Linux"
);
MODULE_LICENSE
(
"GPL"
);
...
...
fs/bfs/inode.c
View file @
9f900912
...
...
@@ -17,7 +17,6 @@
MODULE_AUTHOR
(
"Tigran A. Aivazian <tigran@veritas.com>"
);
MODULE_DESCRIPTION
(
"SCO UnixWare BFS filesystem for Linux"
);
MODULE_LICENSE
(
"GPL"
);
EXPORT_NO_SYMBOLS
;
#undef DEBUG
...
...
fs/binfmt_aout.c
View file @
9f900912
...
...
@@ -516,8 +516,6 @@ static void __exit exit_aout_binfmt(void)
unregister_binfmt
(
&
aout_format
);
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_aout_binfmt
);
module_exit
(
exit_aout_binfmt
);
MODULE_LICENSE
(
"GPL"
);
fs/binfmt_misc.c
View file @
9f900912
...
...
@@ -716,8 +716,6 @@ static void __exit exit_misc_binfmt(void)
unregister_filesystem
(
&
bm_fs_type
);
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_misc_binfmt
);
module_exit
(
exit_misc_binfmt
);
MODULE_LICENSE
(
"GPL"
);
fs/efs/super.c
View file @
9f900912
...
...
@@ -104,8 +104,6 @@ static void __exit exit_efs_fs(void) {
destroy_inodecache
();
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_efs_fs
)
module_exit
(
exit_efs_fs
)
...
...
fs/ext2/super.c
View file @
9f900912
...
...
@@ -910,7 +910,5 @@ static void __exit exit_ext2_fs(void)
destroy_inodecache
();
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_ext2_fs
)
module_exit
(
exit_ext2_fs
)
fs/ext3/super.c
View file @
9f900912
...
...
@@ -1809,8 +1809,6 @@ static void __exit exit_ext3_fs(void)
destroy_inodecache
();
}
EXPORT_NO_SYMBOLS
;
MODULE_AUTHOR
(
"Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others"
);
MODULE_DESCRIPTION
(
"Second Extended Filesystem with journaling extensions"
);
MODULE_LICENSE
(
"GPL"
);
...
...
fs/hpfs/super.c
View file @
9f900912
...
...
@@ -646,7 +646,5 @@ static void __exit exit_hpfs_fs(void)
destroy_inodecache
();
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_hpfs_fs
)
module_exit
(
exit_hpfs_fs
)
fs/isofs/inode.c
View file @
9f900912
...
...
@@ -1469,8 +1469,6 @@ static void __exit exit_iso9660_fs(void)
destroy_inodecache
();
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_iso9660_fs
)
module_exit
(
exit_iso9660_fs
)
MODULE_LICENSE
(
"GPL"
);
...
...
fs/jffs/inode-v23.c
View file @
9f900912
...
...
@@ -1803,8 +1803,6 @@ exit_jffs_fs(void)
kmem_cache_destroy
(
node_cache
);
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_jffs_fs
)
module_exit
(
exit_jffs_fs
)
...
...
fs/jfs/super.c
View file @
9f900912
...
...
@@ -492,8 +492,5 @@ static void __exit exit_jfs_fs(void)
kmem_cache_destroy
(
jfs_inode_cachep
);
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_jfs_fs
)
module_exit
(
exit_jfs_fs
)
fs/minix/inode.c
View file @
9f900912
...
...
@@ -581,8 +581,6 @@ static void __exit exit_minix_fs(void)
destroy_inodecache
();
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_minix_fs
)
module_exit
(
exit_minix_fs
)
MODULE_LICENSE
(
"GPL"
);
...
...
fs/ncpfs/inode.c
View file @
9f900912
...
...
@@ -794,8 +794,6 @@ static void __exit exit_ncp_fs(void)
#endif
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_ncp_fs
)
module_exit
(
exit_ncp_fs
)
MODULE_LICENSE
(
"GPL"
);
fs/nfs/inode.c
View file @
9f900912
...
...
@@ -1334,7 +1334,6 @@ static void __exit exit_nfs_fs(void)
unregister_filesystem
(
&
nfs_fs_type
);
}
EXPORT_NO_SYMBOLS
;
/* Not quite true; I just maintain it */
MODULE_AUTHOR
(
"Olaf Kirch <okir@monad.swb.de>"
);
MODULE_LICENSE
(
"GPL"
);
...
...
fs/nfsd/nfsctl.c
View file @
9f900912
...
...
@@ -406,7 +406,6 @@ static void __exit exit_nfsd(void)
unregister_filesystem
(
&
nfsd_fs_type
);
}
EXPORT_NO_SYMBOLS
;
MODULE_AUTHOR
(
"Olaf Kirch <okir@monad.swb.de>"
);
MODULE_LICENSE
(
"GPL"
);
module_init
(
init_nfsd
)
...
...
fs/ntfs/super.c
View file @
9f900912
...
...
@@ -1934,7 +1934,6 @@ static void __exit exit_ntfs_fs(void)
ntfs_sysctl
(
0
);
}
EXPORT_NO_SYMBOLS
;
MODULE_AUTHOR
(
"Anton Altaparmakov <aia21@cantab.net>"
);
MODULE_DESCRIPTION
(
"NTFS 1.2/3.x driver"
);
MODULE_LICENSE
(
"GPL"
);
...
...
fs/openpromfs/inode.c
View file @
9f900912
...
...
@@ -1064,8 +1064,6 @@ static void __exit exit_openprom_fs(void)
nodes
=
NULL
;
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_openprom_fs
)
module_exit
(
exit_openprom_fs
)
MODULE_LICENSE
(
"GPL"
);
fs/qnx4/inode.c
View file @
9f900912
...
...
@@ -590,8 +590,6 @@ static void __exit exit_qnx4_fs(void)
destroy_inodecache
();
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_qnx4_fs
)
module_exit
(
exit_qnx4_fs
)
MODULE_LICENSE
(
"GPL"
);
...
...
fs/quota_v1.c
View file @
9f900912
...
...
@@ -234,8 +234,6 @@ static void __exit exit_v1_quota_format(void)
unregister_quota_format
(
&
v1_quota_format
);
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_v1_quota_format
);
module_exit
(
exit_v1_quota_format
);
fs/quota_v2.c
View file @
9f900912
...
...
@@ -686,7 +686,5 @@ static void __exit exit_v2_quota_format(void)
unregister_quota_format
(
&
v2_quota_format
);
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_v2_quota_format
);
module_exit
(
exit_v2_quota_format
);
fs/reiserfs/super.c
View file @
9f900912
...
...
@@ -1247,7 +1247,6 @@ static int __init init_reiserfs_fs (void)
MODULE_DESCRIPTION
(
"ReiserFS journaled filesystem"
);
MODULE_AUTHOR
(
"Hans Reiser <reiser@namesys.com>"
);
MODULE_LICENSE
(
"GPL"
);
EXPORT_NO_SYMBOLS
;
//
// this is exactly what 2.3.99-pre9's init_ext2_fs is
...
...
fs/romfs/inode.c
View file @
9f900912
...
...
@@ -627,8 +627,6 @@ static void __exit exit_romfs_fs(void)
/* Yes, works even as a module... :) */
EXPORT_NO_SYMBOLS
;
module_init
(
init_romfs_fs
)
module_exit
(
exit_romfs_fs
)
MODULE_LICENSE
(
"GPL"
);
fs/smbfs/inode.c
View file @
9f900912
...
...
@@ -783,8 +783,6 @@ static void __exit exit_smb_fs(void)
#endif
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_smb_fs
)
module_exit
(
exit_smb_fs
)
MODULE_LICENSE
(
"GPL"
);
fs/sysv/super.c
View file @
9f900912
...
...
@@ -556,8 +556,6 @@ static void __exit exit_sysv_fs(void)
sysv_destroy_icache
();
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_sysv_fs
)
module_exit
(
exit_sysv_fs
)
MODULE_LICENSE
(
"GPL"
);
fs/udf/super.c
View file @
9f900912
...
...
@@ -208,8 +208,6 @@ static void __exit exit_udf_fs(void)
destroy_inodecache
();
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_udf_fs
)
module_exit
(
exit_udf_fs
)
...
...
fs/ufs/super.c
View file @
9f900912
...
...
@@ -1063,8 +1063,6 @@ static void __exit exit_ufs_fs(void)
destroy_inodecache
();
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_ufs_fs
)
module_exit
(
exit_ufs_fs
)
MODULE_LICENSE
(
"GPL"
);
fs/umsdos/inode.c
View file @
9f900912
...
...
@@ -476,8 +476,6 @@ static void __exit exit_umsdos_fs (void)
unregister_filesystem
(
&
umsdos_fs_type
);
}
EXPORT_NO_SYMBOLS
;
module_init
(
init_umsdos_fs
)
module_exit
(
exit_umsdos_fs
)
MODULE_LICENSE
(
"GPL"
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment