From: James Bottomley Date: Wed, 30 Dec 2009 19:21:06 +0000 (-0600) Subject: libsrp: fix compile failure X-Git-Tag: v2.6.33-rc3~49 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=75c85a0bc13367aabb36e8208d4e373b022b43b3;p=~shefty%2Frdma-dev.git 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 . 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 Signed-off-by: Linus Torvalds --- diff --git a/include/scsi/libsrp.h b/include/scsi/libsrp.h index 07e3adde21d..f4105c91af5 100644 --- a/include/scsi/libsrp.h +++ b/include/scsi/libsrp.h @@ -2,6 +2,7 @@ #define __LIBSRP_H__ #include +#include #include #include #include