The patch titled Fix scsi/scsi_transport.h compile error has been added to the -mm tree. Its filename is fix-scsi-scsi_transporth-compile-error.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Fix scsi/scsi_transport.h compile error From: Rolf Eike Beer <eike-kernel@xxxxxxxxx> scsi_transport.h defines the inline function scsi_transport_device_data() that dereferences a pointer of "struct scsi_device *". Since the struct is not known by the header this might break compilation. Include scsi/scsi_device.h to not rely on users doing the correct magic include order. Signed-off-by: Rolf Eike Beer <eike-kernel@xxxxxxxxx> Cc: James Bottomley <James.Bottomley@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/scsi/scsi_transport.h | 1 + 1 file changed, 1 insertion(+) diff -puN include/scsi/scsi_transport.h~fix-scsi-scsi_transporth-compile-error include/scsi/scsi_transport.h --- a/include/scsi/scsi_transport.h~fix-scsi-scsi_transporth-compile-error +++ a/include/scsi/scsi_transport.h @@ -22,6 +22,7 @@ #include <linux/transport_class.h> #include <scsi/scsi_host.h> +#include <scsi/scsi_device.h> struct scsi_transport_template { /* the attribute containers */ _ Patches currently in -mm which might be from eike-kernel@xxxxxxxxx are origin.patch add-kerneldocs-for-some-functions-in-mm-memoryc.patch use-bug_onfoo-instead-of-if-foo-bug-in-include-asm-i386-dma-mappingh.patch remove-extra-newline-from-info-message.patch fix-scsi-scsi_transporth-compile-error.patch include-documentation-for-functions-in-drivers-base-classc.patch fix-parameter-names-in-drivers-base-classc.patch fix-kerneldoc-comments-in-kernel-timerc.patch fix-kerneldoc-comments-in-kernel-timerc-fix.patch move-valid_dma_direction-from-x86_64-to-generic-code.patch move-valid_dma_direction-from-x86_64-to-generic-code-fix.patch use-valid_dma_direction-in-include-asm-i386-dma-mappingh.patch cdev-documentation-was-drop-second-arg-of-unregister_chrdev.patch return-better-error-codes-if-drivers-char-rawc-module-init-fails.patch remove-superfluous-call-to-call-to-cdev_del.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