The patch titled random: make CCISS use add_disk_randomness has been added to the -mm tree. Its filename is random-make-cciss-use-add_disk_randomness.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this From: Matt Mackall <mpm@xxxxxxxxxxx> Disk devices should use the add_disk_randomness API rather than SA_SAMPLE_RANDOM. Signed-off-by: Matt Mackall <mpm@xxxxxxxxxxx> Cc: <mike.miller@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/block/cciss.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/block/cciss.c~random-make-cciss-use-add_disk_randomness drivers/block/cciss.c --- devel/drivers/block/cciss.c~random-make-cciss-use-add_disk_randomness 2006-05-11 01:43:41.000000000 -0700 +++ devel-akpm/drivers/block/cciss.c 2006-05-11 01:43:41.000000000 -0700 @@ -1221,6 +1221,7 @@ static void cciss_softirq_done(struct re printk("Done with %p\n", rq); #endif /* CCISS_DEBUG */ + add_disk_randomness(rq->rq_disk); spin_lock_irqsave(&h->lock, flags); end_that_request_last(rq, rq->errors); cmd_free(h, cmd,1); @@ -3152,8 +3153,7 @@ static int __devinit cciss_init_one(stru /* make sure the board interrupts are off */ hba[i]->access.set_intr_mask(hba[i], CCISS_INTR_OFF); if( request_irq(hba[i]->intr[SIMPLE_MODE_INT], do_cciss_intr, - SA_INTERRUPT | SA_SHIRQ | SA_SAMPLE_RANDOM, - hba[i]->devname, hba[i])) { + SA_INTERRUPT | SA_SHIRQ, hba[i]->devname, hba[i])) { printk(KERN_ERR "cciss: Unable to get irq %d for %s\n", hba[i]->intr[SIMPLE_MODE_INT], hba[i]->devname); goto clean2; _ Patches currently in -mm which might be from mpm@xxxxxxxxxxx are clean-up-initcall-warning-for-netconsole.patch random-remove-redundant-sa_sample_random-from-ninjascsi.patch add-poisonh-and-patch-primary-users.patch when-config_base_samll=1-the-kernel-261611-cascade-in-kernel-timerc-may-enter-the-infinite-loop.patch bloat-o-meter-gcc-4-fix.patch random-remove-sa_sample_random-from-floppy-driver.patch random-make-cciss-use-add_disk_randomness.patch random-change-cpqarray-to-use-add_disk_randomness.patch random-remove-bogus-sa_sample_random-from-at91-compact-flash-driver.patch random-remove-redundant-sa_sample_random-from-touchscreen-drivers.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html