diff options
author | Luis de Bethencourt <luisbg@osg.samsung.com> | 2016-08-14 13:41:30 -0400 |
---|---|---|
committer | Luis de Bethencourt <luisbg@osg.samsung.com> | 2016-12-22 06:25:22 -0500 |
commit | 50b00fc468ddf9cb47a00b62c25fcbf86fcce56f (patch) | |
tree | f90e67855f78ef59a609762e51bffd2fb12803b7 /fs/befs | |
parent | 12ecb38d03cff0c6d09262f0334f4ded3242ae87 (diff) |
befs: remove signatures from comments
No idea why some comments have signatures. These predate git. Removing them
since they add noise and no information.
Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
Diffstat (limited to 'fs/befs')
-rw-r--r-- | fs/befs/datastream.c | 2 | ||||
-rw-r--r-- | fs/befs/io.c | 3 | ||||
-rw-r--r-- | fs/befs/linuxvfs.c | 3 |
3 files changed, 1 insertions, 7 deletions
diff --git a/fs/befs/datastream.c b/fs/befs/datastream.c index b4c7ba013c0d..56c0564e6787 100644 --- a/fs/befs/datastream.c +++ b/fs/befs/datastream.c | |||
@@ -89,8 +89,6 @@ befs_read_datastream(struct super_block *sb, const befs_data_stream *ds, | |||
89 | * | 89 | * |
90 | * Calls specialized functions for each of the three possible | 90 | * Calls specialized functions for each of the three possible |
91 | * datastream regions. | 91 | * datastream regions. |
92 | * | ||
93 | * 2001-11-15 Will Dyson | ||
94 | */ | 92 | */ |
95 | int | 93 | int |
96 | befs_fblock2brun(struct super_block *sb, const befs_data_stream *data, | 94 | befs_fblock2brun(struct super_block *sb, const befs_data_stream *data, |
diff --git a/fs/befs/io.c b/fs/befs/io.c index a117ad88628f..227cb86e07fe 100644 --- a/fs/befs/io.c +++ b/fs/befs/io.c | |||
@@ -19,8 +19,7 @@ | |||
19 | /* | 19 | /* |
20 | * Converts befs notion of disk addr to a disk offset and uses | 20 | * Converts befs notion of disk addr to a disk offset and uses |
21 | * linux kernel function sb_bread() to get the buffer containing | 21 | * linux kernel function sb_bread() to get the buffer containing |
22 | * the offset. -Will Dyson | 22 | * the offset. |
23 | * | ||
24 | */ | 23 | */ |
25 | 24 | ||
26 | struct buffer_head * | 25 | struct buffer_head * |
diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c index 25283f2cbe1f..8e4e18e10bdd 100644 --- a/fs/befs/linuxvfs.c +++ b/fs/befs/linuxvfs.c | |||
@@ -110,8 +110,6 @@ befs_bmap(struct address_space *mapping, sector_t block) | |||
110 | * Used by many higher level functions. | 110 | * Used by many higher level functions. |
111 | * | 111 | * |
112 | * Calls befs_fblock2brun() in datastream.c to do the real work. | 112 | * Calls befs_fblock2brun() in datastream.c to do the real work. |
113 | * | ||
114 | * -WD 10-26-01 | ||
115 | */ | 113 | */ |
116 | 114 | ||
117 | static int | 115 | static int |
@@ -782,7 +780,6 @@ befs_fill_super(struct super_block *sb, void *data, int silent) | |||
782 | * Linux 2.4.10 and later refuse to read blocks smaller than | 780 | * Linux 2.4.10 and later refuse to read blocks smaller than |
783 | * the logical block size for the device. But we also need to read at | 781 | * the logical block size for the device. But we also need to read at |
784 | * least 1k to get the second 512 bytes of the volume. | 782 | * least 1k to get the second 512 bytes of the volume. |
785 | * -WD 10-26-01 | ||
786 | */ | 783 | */ |
787 | blocksize = sb_min_blocksize(sb, 1024); | 784 | blocksize = sb_min_blocksize(sb, 1024); |
788 | if (!blocksize) { | 785 | if (!blocksize) { |