Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

+1 -7
-2
fs/befs/datastream.c
··· 89 89 * 90 90 * Calls specialized functions for each of the three possible 91 91 * datastream regions. 92 - * 93 - * 2001-11-15 Will Dyson 94 92 */ 95 93 int 96 94 befs_fblock2brun(struct super_block *sb, const befs_data_stream *data,
+1 -2
fs/befs/io.c
··· 19 19 /* 20 20 * Converts befs notion of disk addr to a disk offset and uses 21 21 * linux kernel function sb_bread() to get the buffer containing 22 - * the offset. -Will Dyson 23 - * 22 + * the offset. 24 23 */ 25 24 26 25 struct buffer_head *
-3
fs/befs/linuxvfs.c
··· 110 110 * Used by many higher level functions. 111 111 * 112 112 * Calls befs_fblock2brun() in datastream.c to do the real work. 113 - * 114 - * -WD 10-26-01 115 113 */ 116 114 117 115 static int ··· 780 782 * Linux 2.4.10 and later refuse to read blocks smaller than 781 783 * the logical block size for the device. But we also need to read at 782 784 * least 1k to get the second 512 bytes of the volume. 783 - * -WD 10-26-01 784 785 */ 785 786 blocksize = sb_min_blocksize(sb, 1024); 786 787 if (!blocksize) {