Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ebc3bbcfcf0a7fed2ac82f1a849a5f92cf4c217f
Commit:     ebc3bbcfcf0a7fed2ac82f1a849a5f92cf4c217f
Parent:     75d35c93cf8b938f28f06ceb8ffa2606d6e57d3b
Author:     Christian Borntraeger <[EMAIL PROTECTED]>
AuthorDate: Tue Oct 23 12:46:32 2007 +0200
Committer:  Jens Axboe <[EMAIL PROTECTED]>
CommitDate: Tue Oct 23 12:46:32 2007 +0200

    Fix sctp compile
    
    sctp fails to compile with
    net/sctp/sm_make_chunk.c: In function 'sctp_pack_cookie':
    net/sctp/sm_make_chunk.c:1516: error: implicit declaration of function 
'sg_init_table'
    net/sctp/sm_make_chunk.c:1517: error: implicit declaration of function 
'sg_set_page'
    
    use the proper include file.
    
    SCTP maintainers Vlad Yasevich and Sridhar Samudrala  are CCed.
    
    Signed-off-by: Christian Borntraeger <[EMAIL PROTECTED]>
    Signed-off-by: Jens Axboe <[EMAIL PROTECTED]>
---
 net/sctp/sm_make_chunk.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/sctp/sm_make_chunk.c b/net/sctp/sm_make_chunk.c
index d5a9785..658476c 100644
--- a/net/sctp/sm_make_chunk.c
+++ b/net/sctp/sm_make_chunk.c
@@ -56,7 +56,7 @@
 #include <linux/ipv6.h>
 #include <linux/net.h>
 #include <linux/inet.h>
-#include <asm/scatterlist.h>
+#include <linux/scatterlist.h>
 #include <linux/crypto.h>
 #include <net/sock.h>
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to