lkml.org 
[lkml]   [2003]   [Apr]   [20]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Date
Subject[PATCH] silence some superfluous boot messages
I suppose these can be removed altogether.
For now #if 0 ... #endif.

diff -u --recursive --new-file -X /linux/dontdiff a/drivers/block/ll_rw_blk.c b/drivers/block/ll_rw_blk.c
--- a/drivers/block/ll_rw_blk.c Tue Apr 8 09:36:36 2003
+++ b/drivers/block/ll_rw_blk.c Sun Apr 20 18:58:38 2003
@@ -1867,7 +1867,7 @@
* generic_make_request() does not return any status. The
* success/failure status of the request, along with notification of
* completion, is delivered asynchronously through the bio->bi_end_io
- * function described (one day) else where.
+ * function described (one day) elsewhere.
*
* The caller of generic_make_request must make sure that bi_io_vec
* are set to describe the memory buffer, and that bi_dev and bi_sector are
@@ -2204,14 +2204,14 @@
batch_requests = queue_nr_requests / 8;
if (batch_requests > 8)
batch_requests = 8;
-
+#if 0
printk("block request queues:\n");
printk(" %d requests per read queue\n", queue_nr_requests);
printk(" %d requests per write queue\n", queue_nr_requests);
printk(" %d requests per batch\n", batch_requests);
printk(" enter congestion at %d\n", queue_congestion_on_threshold());
printk(" exit congestion at %d\n", queue_congestion_off_threshold());
-
+#endif
blk_max_low_pfn = max_low_pfn;
blk_max_pfn = max_pfn;

diff -u --recursive --new-file -X /linux/dontdiff a/drivers/ide/ide-disk.c b/drivers/ide/ide-disk.c
--- a/drivers/ide/ide-disk.c Sun Apr 20 12:59:31 2003
+++ b/drivers/ide/ide-disk.c Sun Apr 20 18:58:58 2003
@@ -1079,8 +1079,11 @@
static inline int idedisk_supports_host_protected_area(ide_drive_t *drive)
{
int flag = (drive->id->cfs_enable_1 & 0x0400) ? 1 : 0;
+#if 0
if (flag)
- printk(KERN_INFO "%s: host protected area => %d\n", drive->name, flag);
+ printk(KERN_INFO "%s: host protected area => %d\n",
+ drive->name, flag);
+#endif
return flag;
}

diff -u --recursive --new-file -X /linux/dontdiff a/fs/bio.c b/fs/bio.c
--- a/fs/bio.c Tue Mar 25 04:54:40 2003
+++ b/fs/bio.c Sun Apr 20 18:59:16 2003
@@ -743,10 +743,10 @@
mempool_free_slab, bp->slab);
if (!bp->pool)
panic("biovec: can't init mempool\n");
-
+#if 0
printk("biovec pool[%d]: %3d bvecs: %3d entries (%d bytes)\n",
- i, bp->nr_vecs, pool_entries,
- size);
+ i, bp->nr_vecs, pool_entries, size);
+#endif
}
}

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
\
 
 \ /
  Last update: 2005-03-22 13:34    [W:0.088 / U:0.136 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site