lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Mon, 19 Mar 2007 16:10:58 +0100
From:	Jesper Juhl <jesper.juhl@...il.com>
To:	Andrew Morton <akpm@...ux-foundation.org>
Cc:	LKML <linux-kernel@...r.kernel.org>, Andi Kleen <ak@...e.de>,
	Trent Waddington <trent.waddington@...il.com>,
	Bartlomiej Zolnierkiewicz <bzolnier@...il.com>,
	Alan Cox <alan@...rguk.ukuu.org.uk>,
	Jesper Juhl <jesper.juhl@...il.com>
Subject: [PATCH][4/5][resend] floppy.c: Add explicit/better printk() levels


    There are lots of printk() statements in floppy.c - more or less all of
    them without explicit message levels.
    Since a lot of these levels (IMHO) are not warnings, but of a more
    informational nature, this patch adds explicit levels to most of the
    printk()'s and modifies some of them to not be KERN_WARNING.
    
Signed-off-by: Jesper Juhl <jesper.juhl@...il.com>
Acked-by: Alan Cox <alan@...hat.com>
Acked-by: Bartlomiej Zolnierkiewicz <bzolnier@...il.com>
---

diff --git a/drivers/block/floppy.c b/drivers/block/floppy.c
index 9a52ca6..577c621 100644
--- a/drivers/block/floppy.c
+++ b/drivers/block/floppy.c
@@ -276,7 +276,7 @@ static inline void fallback_on_nodma_alloc(char **addr, size_t l)
 		return;	/* we have the memory */
 	if (can_use_virtual_dma != 2)
 		return;	/* no fallback allowed */
-	printk("DMA memory shortage. "
+	printk(KERN_WARNING "DMA memory shortage. "
 		"Temporarily falling back on virtual DMA\n");
 	*addr = (char *)nodma_mem_alloc(l);
 #else
@@ -621,7 +621,7 @@ static inline void set_debugt(void)
 static inline void debugt(const char *message)
 {
 	if (DP->flags & DEBUGT)
-		printk("%s dtime=%lu\n", message, jiffies - debugtimer);
+		printk(KERN_DEBUG "%s dtime=%lu\n", message, jiffies - debugtimer);
 }
 #else
 static inline void set_debugt(void) { }
@@ -851,7 +851,7 @@ static void set_fdc(int drive)
 		current_drive = drive;
 	}
 	if (fdc != 1 && fdc != 0) {
-		printk("bad fdc value\n");
+		printk(KERN_WARNING "bad fdc value\n");
 		return;
 	}
 	set_dor(fdc, ~0, 8);
@@ -1102,7 +1102,7 @@ static void setup_DMA(void)
 	if (raw_cmd->length == 0) {
 		int i;
 
-		printk("zero dma transfer size:");
+		printk(KERN_WARNING "zero dma transfer size:");
 		for (i = 0; i < raw_cmd->cmd_count; i++)
 			printk("%x,", raw_cmd->cmd[i]);
 		printk("\n");
@@ -1111,7 +1111,7 @@ static void setup_DMA(void)
 		return;
 	}
 	if (((unsigned long)raw_cmd->kernel_data) % 512) {
-		printk("non aligned address: %p\n", raw_cmd->kernel_data);
+		printk(KERN_WARNING "non aligned address: %p\n", raw_cmd->kernel_data);
 		cont->done(0);
 		FDCS->reset = 1;
 		return;
@@ -1409,7 +1409,7 @@ static int fdc_dtr(void)
 
 static void tell_sector(void)
 {
-	printk(": track %d, head %d, sector %d, size %d",
+	printk(KERN_NOTICE ": track %d, head %d, sector %d, size %d",
 	       R_TRACK, R_HEAD, R_SECTOR, R_SIZECODE);
 }				/* tell_sector */
 
@@ -1474,7 +1474,6 @@ static int interpret_errors(void)
 				tell_sector();
 			}
 			printk("\n");
-
 		}
 		if (ST2 & ST2_WC || ST2 & ST2_BC)
 			/* wrong cylinder => recal */
@@ -1745,9 +1744,9 @@ irqreturn_t floppy_interrupt(int irq, void *dev_id)
 	do_floppy = NULL;
 	if (fdc >= N_FDC || FDCS->address == -1) {
 		/* we don't even know which FDC is the culprit */
-		printk("DOR0=%x\n", fdc_state[0].dor);
-		printk("floppy interrupt on bizarre fdc %d\n", fdc);
-		printk("handler=%p\n", handler);
+		printk(KERN_WARNING "DOR0=%x\n", fdc_state[0].dor);
+		printk(KERN_WARNING "floppy interrupt on bizarre fdc %d\n", fdc);
+		printk(KERN_WARNING "handler=%p\n", handler);
 		is_alive("bizarre fdc");
 		return IRQ_NONE;
 	}
@@ -1844,45 +1843,47 @@ static void show_floppy(void)
 	int i;
 
 	printk("\n");
-	printk("floppy driver state\n");
-	printk("-------------------\n");
-	printk("now=%lu last interrupt=%lu diff=%lu last called handler=%p\n",
-	       jiffies, interruptjiffies, jiffies - interruptjiffies,
-	       lasthandler);
+	printk(KERN_INFO "floppy driver state\n");
+	printk(KERN_INFO "-------------------\n");
+	printk(KERN_INFO "now=%lu last interrupt=%lu diff=%lu "
+		"last called handler=%p\n",
+		jiffies, interruptjiffies, jiffies - interruptjiffies,
+		lasthandler);
 
 #ifdef FLOPPY_SANITY_CHECK
-	printk("timeout_message=%s\n", timeout_message);
-	printk("last output bytes:\n");
+	printk(KERN_INFO "timeout_message=%s\n", timeout_message);
+	printk(KERN_INFO "last output bytes:\n");
 	for (i = 0; i < OLOGSIZE; i++)
 		printk("%2x %2x %lu\n",
 		       output_log[(i + output_log_pos) % OLOGSIZE].data,
 		       output_log[(i + output_log_pos) % OLOGSIZE].status,
 		       output_log[(i + output_log_pos) % OLOGSIZE].jiffies);
-	printk("last result at %lu\n", resultjiffies);
-	printk("last redo_fd_request at %lu\n", lastredo);
+	printk(KERN_INFO "last result at %lu\n", resultjiffies);
+	printk(KERN_INFO "last redo_fd_request at %lu\n", lastredo);
+	printk(KERN_INFO " ");
 	for (i = 0; i < resultsize; i++) {
 		printk("%2x ", reply_buffer[i]);
 	}
-	printk("\n");
+	printk(KERN_INFO "\n");
 #endif
 
-	printk("status=%x\n", fd_inb(FD_STATUS));
-	printk("fdc_busy=%lu\n", fdc_busy);
+	printk(KERN_INFO "status=%x\n", fd_inb(FD_STATUS));
+	printk(KERN_INFO "fdc_busy=%lu\n", fdc_busy);
 	if (do_floppy)
-		printk("do_floppy=%p\n", do_floppy);
+		printk(KERN_INFO "do_floppy=%p\n", do_floppy);
 	if (work_pending(&floppy_work))
-		printk("floppy_work.func=%p\n", floppy_work.func);
+		printk(KERN_INFO "floppy_work.func=%p\n", floppy_work.func);
 	if (timer_pending(&fd_timer))
-		printk("fd_timer.function=%p\n", fd_timer.function);
+		printk(KERN_INFO "fd_timer.function=%p\n", fd_timer.function);
 	if (timer_pending(&fd_timeout)) {
-		printk("timer_function=%p\n", fd_timeout.function);
-		printk("expires=%lu\n", fd_timeout.expires - jiffies);
-		printk("now=%lu\n", jiffies);
-	}
-	printk("cont=%p\n", cont);
-	printk("current_req=%p\n", current_req);
-	printk("command_status=%d\n", command_status);
-	printk("\n");
+		printk(KERN_INFO "timer_function=%p\n", fd_timeout.function);
+		printk(KERN_INFO "expires=%lu\n", fd_timeout.expires - jiffies);
+		printk(KERN_INFO "now=%lu\n", jiffies);
+	}
+	printk(KERN_INFO "cont=%p\n", cont);
+	printk(KERN_INFO "current_req=%p\n", current_req);
+	printk(KERN_INFO "command_status=%d\n", command_status);
+	printk(KERN_INFO "\n");
 }
 
 static void floppy_shutdown(unsigned long data)
@@ -2309,7 +2310,7 @@ static void request_done(int uptodate)
 	reschedule_timeout(MAXTIMEOUT, "request done %d", uptodate);
 
 	if (!req) {
-		printk("floppy.c: no request in request_done\n");
+		printk(KERN_INFO "floppy.c: no request in request_done\n");
 		return;
 	}
 
@@ -2577,7 +2578,7 @@ static void virtualdmabug_workaround(void)
 		end_sector = SECTOR + hard_sectors - 1;
 #ifdef FLOPPY_SANITY_CHECK
 		if (end_sector > SECT_PER_TRACK) {
-			printk("too many sectors %d > %d\n",
+			printk(KERN_WARNING "too many sectors %d > %d\n",
 				end_sector, SECT_PER_TRACK);
 			return;
 		}
@@ -2602,7 +2603,8 @@ static int make_raw_rw_request(void)
 	int max_sector, max_size, tracksize, ssize;
 
 	if (max_buffer_sectors == 0) {
-		printk("VFS: Block I/O scheduled on unopened device\n");
+		printk(KERN_WARNING 
+			"VFS: Block I/O scheduled on unopened device\n");
 		return 0;
 	}
 
@@ -2958,15 +2960,18 @@ static void process_fd_request(void)
 static void do_fd_request(request_queue_t *q)
 {
 	if (max_buffer_sectors == 0) {
-		printk("VFS: do_fd_request called on non-open device\n");
+		printk(KERN_WARNING 
+			"VFS: do_fd_request called on non-open device\n");
 		return;
 	}
 
 	if (usage_count == 0) {
-		printk("warning: usage count=0, current_req=%p exiting\n",
-		       current_req);
-		printk("sect=%ld type=%x flags=%x\n", (long)current_req->sector,
-		       current_req->cmd_type, current_req->cmd_flags);
+		printk(KERN_WARNING 
+			"warning: usage count=0, current_req=%p exiting\n",
+			current_req);
+		printk(KERN_WARNING "sect=%ld type=%x flags=%x\n",
+			(long)current_req->sector,
+			current_req->cmd_type, current_req->cmd_flags);
 		return;
 	}
 	if (test_bit(0, &fdc_busy)) {
@@ -3013,7 +3018,7 @@ static int poll_drive(int interruptible, int flag)
  */
 static void reset_intr(void)
 {
-	printk("weird, reset interrupt called\n");
+	printk(KERN_WARNING "floppy.c : weird, reset interrupt called\n");
 }
 
 static struct cont_t reset_cont = {
@@ -3385,7 +3390,7 @@ static inline int normalize_ioctl(int *cmd, int *size)
 			*size = _IOC_SIZE(*cmd);
 			*cmd = ioctl_table[i];
 			if (*size > _IOC_SIZE(*cmd)) {
-				printk("ioctl not yet supported\n");
+				printk(KERN_NOTICE "ioctl not yet supported\n");
 				return -EFAULT;
 			}
 			return 0;
@@ -3844,7 +3849,8 @@ static int floppy_revalidate(struct gendisk *disk)
 	if (UTESTF(FD_DISK_CHANGED) ||
 	    UTESTF(FD_VERIFY) || test_bit(drive, &fake_change) || NO_GEOM) {
 		if (usage_count == 0) {
-			printk("VFS: revalidate called on non-open device.\n");
+			printk(KERN_WARNING "VFS: revalidate called on "
+				"non-open device.\n");
 			return -EFAULT;
 		}
 		lock_fdc(drive, 0);
@@ -3905,9 +3911,9 @@ static char __init get_fdc_version(void)
 		return FDC_8272A;	/* 8272a/765 don't know DUMPREGS */
 	}
 	if (r != 10) {
-		printk
-		    ("FDC %d init: DUMPREGS: unexpected return of %d bytes.\n",
-		     fdc, r);
+		printk(KERN_WARNING 
+			"FDC %d init: DUMPREGS: unexpected return of %d bytes."
+			"\n", fdc, r);
 		return FDC_UNKNOWN;
 	}
 
@@ -3932,15 +3938,16 @@ static char __init get_fdc_version(void)
 					 * LOCK/UNLOCK */
 	}
 	if ((r != 1) || (reply_buffer[0] != 0x00)) {
-		printk("FDC %d init: UNLOCK: unexpected return of %d bytes.\n",
-		       fdc, r);
+		printk(KERN_WARNING 
+			"FDC %d init: UNLOCK: unexpected return of %d bytes."
+			"\n", fdc, r);
 		return FDC_UNKNOWN;
 	}
 	output_byte(FD_PARTID);
 	r = result();
 	if (r != 1) {
-		printk("FDC %d init: PARTID: unexpected return of %d bytes.\n",
-		       fdc, r);
+		printk(KERN_WARNING "FDC %d init: PARTID: unexpected return "
+			"of %d bytes.\n", fdc, r);
 		return FDC_UNKNOWN;
 	}
 	if (reply_buffer[0] == 0x80) {
@@ -4452,15 +4459,17 @@ static void floppy_release_irq_and_dma(void)
 #ifndef __sparc__
 	for (drive = 0; drive < N_FDC * 4; drive++)
 		if (timer_pending(motor_off_timer + drive))
-			printk("motor off timer %d still active\n", drive);
+			printk(KERN_WARNING  "motor off timer %d still "
+				"active\n", drive);
 #endif
 
 	if (timer_pending(&fd_timeout))
-		printk("floppy timer still active:%s\n", timeout_message);
+		printk(KERN_WARNING  "floppy timer still active:%s\n",
+			timeout_message);
 	if (timer_pending(&fd_timer))
-		printk("auxiliary floppy timer still active\n");
+		printk(KERN_WARNING "auxiliary floppy timer still active\n");
 	if (work_pending(&floppy_work))
-		printk("work still pending\n");
+		printk(KERN_WARNING "work still pending\n");
 #endif
 	old_fdc = fdc;
 	for (fdc = 0; fdc < N_FDC; fdc++)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ