aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/s390/net
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/s390/net')
-rw-r--r--drivers/s390/net/ctcmain.c11
-rw-r--r--drivers/s390/net/netiucv.c10
2 files changed, 13 insertions, 8 deletions
diff --git a/drivers/s390/net/ctcmain.c b/drivers/s390/net/ctcmain.c
index 787c01317042..54e3f806cd52 100644
--- a/drivers/s390/net/ctcmain.c
+++ b/drivers/s390/net/ctcmain.c
@@ -706,7 +706,8 @@ ch_action_txdone(fsm_instance * fi, int event, void *arg)
706 spin_unlock(&ch->collect_lock); 706 spin_unlock(&ch->collect_lock);
707 return; 707 return;
708 } 708 }
709 ch->trans_skb->tail = ch->trans_skb->data = ch->trans_skb_data; 709 ch->trans_skb->data = ch->trans_skb_data;
710 skb_reset_tail_pointer(ch->trans_skb);
710 ch->trans_skb->len = 0; 711 ch->trans_skb->len = 0;
711 if (ch->prof.maxmulti < (ch->collect_len + 2)) 712 if (ch->prof.maxmulti < (ch->collect_len + 2))
712 ch->prof.maxmulti = ch->collect_len + 2; 713 ch->prof.maxmulti = ch->collect_len + 2;
@@ -831,7 +832,8 @@ ch_action_rx(fsm_instance * fi, int event, void *arg)
831 ctc_unpack_skb(ch, skb); 832 ctc_unpack_skb(ch, skb);
832 } 833 }
833 again: 834 again:
834 skb->data = skb->tail = ch->trans_skb_data; 835 skb->data = ch->trans_skb_data;
836 skb_reset_tail_pointer(skb);
835 skb->len = 0; 837 skb->len = 0;
836 if (ctc_checkalloc_buffer(ch, 1)) 838 if (ctc_checkalloc_buffer(ch, 1))
837 return; 839 return;
@@ -2226,7 +2228,8 @@ transmit_skb(struct channel *ch, struct sk_buff *skb)
2226 * IDAL support in CTC is broken, so we have to 2228 * IDAL support in CTC is broken, so we have to
2227 * care about skb's above 2G ourselves. 2229 * care about skb's above 2G ourselves.
2228 */ 2230 */
2229 hi = ((unsigned long) skb->tail + LL_HEADER_LENGTH) >> 31; 2231 hi = ((unsigned long)skb_tail_pointer(skb) +
2232 LL_HEADER_LENGTH) >> 31;
2230 if (hi) { 2233 if (hi) {
2231 nskb = alloc_skb(skb->len, GFP_ATOMIC | GFP_DMA); 2234 nskb = alloc_skb(skb->len, GFP_ATOMIC | GFP_DMA);
2232 if (!nskb) { 2235 if (!nskb) {
@@ -2262,7 +2265,7 @@ transmit_skb(struct channel *ch, struct sk_buff *skb)
2262 return -EBUSY; 2265 return -EBUSY;
2263 } 2266 }
2264 2267
2265 ch->trans_skb->tail = ch->trans_skb->data; 2268 skb_reset_tail_pointer(ch->trans_skb);
2266 ch->trans_skb->len = 0; 2269 ch->trans_skb->len = 0;
2267 ch->ccw[1].count = skb->len; 2270 ch->ccw[1].count = skb->len;
2268 memcpy(skb_put(ch->trans_skb, skb->len), skb->data, 2271 memcpy(skb_put(ch->trans_skb, skb->len), skb->data,
diff --git a/drivers/s390/net/netiucv.c b/drivers/s390/net/netiucv.c
index 82edf2014402..cd42bd54988c 100644
--- a/drivers/s390/net/netiucv.c
+++ b/drivers/s390/net/netiucv.c
@@ -689,7 +689,8 @@ static void conn_action_rx(fsm_instance *fi, int event, void *arg)
689 msg->length, conn->max_buffsize); 689 msg->length, conn->max_buffsize);
690 return; 690 return;
691 } 691 }
692 conn->rx_buff->data = conn->rx_buff->tail = conn->rx_buff->head; 692 conn->rx_buff->data = conn->rx_buff->head;
693 skb_reset_tail_pointer(conn->rx_buff);
693 conn->rx_buff->len = 0; 694 conn->rx_buff->len = 0;
694 rc = iucv_message_receive(conn->path, msg, 0, conn->rx_buff->data, 695 rc = iucv_message_receive(conn->path, msg, 0, conn->rx_buff->data,
695 msg->length, NULL); 696 msg->length, NULL);
@@ -735,7 +736,8 @@ static void conn_action_txdone(fsm_instance *fi, int event, void *arg)
735 } 736 }
736 } 737 }
737 } 738 }
738 conn->tx_buff->data = conn->tx_buff->tail = conn->tx_buff->head; 739 conn->tx_buff->data = conn->tx_buff->head;
740 skb_reset_tail_pointer(conn->tx_buff);
739 conn->tx_buff->len = 0; 741 conn->tx_buff->len = 0;
740 spin_lock_irqsave(&conn->collect_lock, saveflags); 742 spin_lock_irqsave(&conn->collect_lock, saveflags);
741 while ((skb = skb_dequeue(&conn->collect_queue))) { 743 while ((skb = skb_dequeue(&conn->collect_queue))) {
@@ -1164,8 +1166,8 @@ static int netiucv_transmit_skb(struct iucv_connection *conn,
1164 * Copy the skb to a new allocated skb in lowmem only if the 1166 * Copy the skb to a new allocated skb in lowmem only if the
1165 * data is located above 2G in memory or tailroom is < 2. 1167 * data is located above 2G in memory or tailroom is < 2.
1166 */ 1168 */
1167 unsigned long hi = 1169 unsigned long hi = ((unsigned long)(skb_tail_pointer(skb) +
1168 ((unsigned long)(skb->tail + NETIUCV_HDRLEN)) >> 31; 1170 NETIUCV_HDRLEN)) >> 31;
1169 int copied = 0; 1171 int copied = 0;
1170 if (hi || (skb_tailroom(skb) < 2)) { 1172 if (hi || (skb_tailroom(skb) < 2)) {
1171 nskb = alloc_skb(skb->len + NETIUCV_HDRLEN + 1173 nskb = alloc_skb(skb->len + NETIUCV_HDRLEN +