]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - drivers/scsi/cxgb3i/cxgb3i_offload.c
[SCSI] cxgb3i: remove use of skb->sp
[karo-tx-linux.git] / drivers / scsi / cxgb3i / cxgb3i_offload.c
index 5f16081b68d5a6976c686ed354c4bafef0f9f42c..a865f1fefe8bfebbcbc2af1a391238acb840849d 100644 (file)
@@ -496,7 +496,7 @@ static inline void reset_wr_list(struct s3_conn *c3cn)
 static inline void enqueue_wr(struct s3_conn *c3cn,
                              struct sk_buff *skb)
 {
-       skb->sp = NULL;
+       skb_wr_data(skb) = NULL;
 
        /*
         * We want to take an extra reference since both us and the driver
@@ -509,7 +509,7 @@ static inline void enqueue_wr(struct s3_conn *c3cn,
        if (!c3cn->wr_pending_head)
                c3cn->wr_pending_head = skb;
        else
-               c3cn->wr_pending_tail->sp = (void *)skb;
+               skb_wr_data(skb) = skb;
        c3cn->wr_pending_tail = skb;
 }
 
@@ -529,8 +529,8 @@ static inline struct sk_buff *dequeue_wr(struct s3_conn *c3cn)
 
        if (likely(skb)) {
                /* Don't bother clearing the tail */
-               c3cn->wr_pending_head = (struct sk_buff *)skb->sp;
-               skb->sp = NULL;
+               c3cn->wr_pending_head = skb_wr_data(skb);
+               skb_wr_data(skb) = NULL;
        }
        return skb;
 }