From: Cedric Le Goater Cedric Le Goater wrote: > Andrew Morton wrote: >> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.23-rc7/2.6.23-rc7-mm1/ > > I also get this compile error on s390. 'linux/scatterlist.h' has disappeared > from the #include pile but where ? > > /home/clg/linux/2.6.23-rc7-mm1/net/sctp/auth.c: In function `sctp_auth_calculate_hmac': > /home/clg/linux/2.6.23-rc7-mm1/net/sctp/auth.c:695: error: storage size of 'sg' isn't known > /home/clg/linux/2.6.23-rc7-mm1/net/sctp/auth.c:695: warning: unused variable `sg' The following patch works of course but it seems to simplistic for s390. Cheers, C. Signed-off-by: Cedric Le Goater Cc: "David S. Miller" Signed-off-by: Andrew Morton --- net/sctp/auth.c | 1 + 1 file changed, 1 insertion(+) diff -puN net/sctp/auth.c~git-net-sctp-build-fix net/sctp/auth.c --- a/net/sctp/auth.c~git-net-sctp-build-fix +++ a/net/sctp/auth.c @@ -36,6 +36,7 @@ #include #include +#include #include #include _