diff options
author | Christoph Hellwig <hch@lst.de> | 2008-02-22 06:38:48 -0500 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2008-04-17 08:22:23 -0400 |
commit | b1e321266d8797b21eac433b11458ac65b098938 (patch) | |
tree | 6943fc804fe03baa73ae925fb99010acedf02ed0 /fs/udf/super.c | |
parent | f1f73ba8e9b0eb97f90c6256b94afeb035d97562 (diff) |
udf: kill useless file header comments for vfs method implementations
There's not need to document vfs method invocation rules, we have
Documentation/filesystems/vfs.txt and Documentation/filesystems/Locking
for that. Also a lot of these comments where either plain wrong or
horrible out of date.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/udf/super.c')
-rw-r--r-- | fs/udf/super.c | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/fs/udf/super.c b/fs/udf/super.c index 3723f04c0799..53e1d6e6dd31 100644 --- a/fs/udf/super.c +++ b/fs/udf/super.c | |||
@@ -1670,22 +1670,6 @@ static void udf_sb_free_bitmap(struct udf_bitmap *bitmap) | |||
1670 | vfree(bitmap); | 1670 | vfree(bitmap); |
1671 | } | 1671 | } |
1672 | 1672 | ||
1673 | /* | ||
1674 | * udf_read_super | ||
1675 | * | ||
1676 | * PURPOSE | ||
1677 | * Complete the specified super block. | ||
1678 | * | ||
1679 | * PRE-CONDITIONS | ||
1680 | * sb Pointer to superblock to complete - never NULL. | ||
1681 | * sb->s_dev Device to read suberblock from. | ||
1682 | * options Pointer to mount options. | ||
1683 | * silent Silent flag. | ||
1684 | * | ||
1685 | * HISTORY | ||
1686 | * July 1, 1997 - Andrew E. Mileski | ||
1687 | * Written, tested, and released. | ||
1688 | */ | ||
1689 | static int udf_fill_super(struct super_block *sb, void *options, int silent) | 1673 | static int udf_fill_super(struct super_block *sb, void *options, int silent) |
1690 | { | 1674 | { |
1691 | int i; | 1675 | int i; |
@@ -1913,19 +1897,6 @@ void udf_warning(struct super_block *sb, const char *function, | |||
1913 | sb->s_id, function, error_buf); | 1897 | sb->s_id, function, error_buf); |
1914 | } | 1898 | } |
1915 | 1899 | ||
1916 | /* | ||
1917 | * udf_put_super | ||
1918 | * | ||
1919 | * PURPOSE | ||
1920 | * Prepare for destruction of the superblock. | ||
1921 | * | ||
1922 | * DESCRIPTION | ||
1923 | * Called before the filesystem is unmounted. | ||
1924 | * | ||
1925 | * HISTORY | ||
1926 | * July 1, 1997 - Andrew E. Mileski | ||
1927 | * Written, tested, and released. | ||
1928 | */ | ||
1929 | static void udf_put_super(struct super_block *sb) | 1900 | static void udf_put_super(struct super_block *sb) |
1930 | { | 1901 | { |
1931 | int i; | 1902 | int i; |
@@ -1961,19 +1932,6 @@ static void udf_put_super(struct super_block *sb) | |||
1961 | sb->s_fs_info = NULL; | 1932 | sb->s_fs_info = NULL; |
1962 | } | 1933 | } |
1963 | 1934 | ||
1964 | /* | ||
1965 | * udf_stat_fs | ||
1966 | * | ||
1967 | * PURPOSE | ||
1968 | * Return info about the filesystem. | ||
1969 | * | ||
1970 | * DESCRIPTION | ||
1971 | * Called by sys_statfs() | ||
1972 | * | ||
1973 | * HISTORY | ||
1974 | * July 1, 1997 - Andrew E. Mileski | ||
1975 | * Written, tested, and released. | ||
1976 | */ | ||
1977 | static int udf_statfs(struct dentry *dentry, struct kstatfs *buf) | 1935 | static int udf_statfs(struct dentry *dentry, struct kstatfs *buf) |
1978 | { | 1936 | { |
1979 | struct super_block *sb = dentry->d_sb; | 1937 | struct super_block *sb = dentry->d_sb; |