diff options
author | James Bottomley <James.Bottomley@suse.de> | 2009-12-30 13:21:06 -0600 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-30 12:23:27 -0800 |
commit | 75c85a0bc13367aabb36e8208d4e373b022b43b3 (patch) | |
tree | 8842d50b949e4884b3b1cd9fe5f3558080230a53 /include/scsi | |
parent | 6b7b284958d47b77d06745b36bc7f36dab769d9b (diff) | |
download | kernel_samsung_tuna-75c85a0bc13367aabb36e8208d4e373b022b43b3.zip kernel_samsung_tuna-75c85a0bc13367aabb36e8208d4e373b022b43b3.tar.gz kernel_samsung_tuna-75c85a0bc13367aabb36e8208d4e373b022b43b3.tar.bz2 |
libsrp: fix compile failure
commit 45465487897a1c6d508b14b904dc5777f7ec7e04 ("kfifo: move struct
kfifo in place") caused a compile failure in ibmvscsitgt.c because it
changed a pointer to kfifo in the libsrp.h structure to a direct
inclusion without including <linux/kfifo.h>.
The fix is simple, just add the include, but how did this happen? This
change, introduced at -rc2, hardly looks like a bug fix, and it clearly
didn't go through linux-next, which would have picked up this compile
failure (it only occurs on ppc because of the ibm virtual scsi target).
[ Apparently all of -mm wasn't in linux-next.. ]
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/scsi')
-rw-r--r-- | include/scsi/libsrp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/scsi/libsrp.h b/include/scsi/libsrp.h index 07e3add..f4105c9 100644 --- a/include/scsi/libsrp.h +++ b/include/scsi/libsrp.h @@ -2,6 +2,7 @@ #define __LIBSRP_H__ #include <linux/list.h> +#include <linux/kfifo.h> #include <scsi/scsi_cmnd.h> #include <scsi/scsi_host.h> #include <scsi/srp.h> |