The patch titled s390: irb memcpy argument swap has been added to the -mm tree. Its filename is s390-irb-memcpy-argument-swap.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: s390: irb memcpy argument swap From: Cornelia Huck <cornelia.huck@xxxxxxxxxx> Swapped memcpy arguments in ccw_device_irq() when doing basic sense after unsolicited interrupt. Signed-off-by: Cornelia Huck <cornelia.huck@xxxxxxxxxx> Signed-off-by: Martin Schwidefsky <schwidefsky@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/s390/cio/device_fsm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/s390/cio/device_fsm.c~s390-irb-memcpy-argument-swap drivers/s390/cio/device_fsm.c --- devel/drivers/s390/cio/device_fsm.c~s390-irb-memcpy-argument-swap 2006-05-31 11:18:34.000000000 -0700 +++ devel-akpm/drivers/s390/cio/device_fsm.c 2006-05-31 11:18:34.000000000 -0700 @@ -749,7 +749,7 @@ ccw_device_irq(struct ccw_device *cdev, /* Unit check but no sense data. Need basic sense. */ if (ccw_device_do_sense(cdev, irb) != 0) goto call_handler_unsol; - memcpy(irb, &cdev->private->irb, sizeof(struct irb)); + memcpy(&cdev->private->irb, irb, sizeof(struct irb)); cdev->private->state = DEV_STATE_W4SENSE; cdev->private->intparm = 0; return; _ Patches currently in -mm which might be from cornelia.huck@xxxxxxxxxx are origin.patch s390-irb-memcpy-argument-swap.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