All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fat_access cleanup (5/11)
@ 2003-07-21 15:53 OGAWA Hirofumi
  0 siblings, 0 replies; only message in thread
From: OGAWA Hirofumi @ 2003-07-21 15:53 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel

This removes the dump_fat() and dump_de() of obsoleted debug code in
vfat/namei.c.


 fs/vfat/namei.c |   31 -------------------------------
 1 files changed, 31 deletions(-)

diff -puN fs/vfat/namei.c~fat_access-cleanup2 fs/vfat/namei.c
--- linux-2.6.0-test1/fs/vfat/namei.c~fat_access-cleanup2	2003-07-21 02:48:18.000000000 +0900
+++ linux-2.6.0-test1-hirofumi/fs/vfat/namei.c	2003-07-21 02:48:18.000000000 +0900
@@ -204,37 +204,6 @@ static int vfat_cmp(struct dentry *dentr
 	return 1;
 }
 
-#ifdef DEBUG
-
-static void dump_fat(struct super_block *sb,int start)
-{
-	printk("[");
-	while (start) {
-		printk("%d ",start);
-		start = fat_access(sb,start,-1);
-		if (!start) {
-			printk("ERROR");
-			break;
-		}
-		if (start == -1) break;
-	}
-	printk("]\n");
-}
-
-static void dump_de(struct msdos_dir_entry *de)
-{
-	int i;
-	unsigned char *p = (unsigned char *) de;
-	printk("[");
-
-	for (i = 0; i < 32; i++, p++) {
-		printk("%02x ", *p);
-	}
-	printk("]\n");
-}
-
-#endif
-
 /* MS-DOS "device special files" */
 
 static const char *reserved3_names[] = {

_

-- 
OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-07-21 15:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-07-21 15:53 [PATCH] fat_access cleanup (5/11) OGAWA Hirofumi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.