The patch titled random: make CCISS use add_disk_randomness has been removed from the -mm tree. Its filename is random-make-cciss-use-add_disk_randomness.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: random: make CCISS use add_disk_randomness 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 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/block/cciss.c~random-make-cciss-use-add_disk_randomness drivers/block/cciss.c --- a/drivers/block/cciss.c~random-make-cciss-use-add_disk_randomness +++ a/drivers/block/cciss.c @@ -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 origin.patch netpoll-dont-spin-forever-sending-to-blocked-queues.patch netpoll-break-recursive-loop-in-netpoll-rx-path.patch random-remove-redundant-sa_sample_random-from-ninjascsi.patch add-poisonh-and-patch-primary-users.patch make-number-of-ide-interfaces-configurable.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