Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 171822
b: refs/heads/master
c: 9bc183d
h: refs/heads/master
v: v3
  • Loading branch information
Ben Hutchings authored and David S. Miller committed Nov 24, 2009
1 parent 541bbcb commit fdfc573
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: eb50c0d67fe3c5513c717c2dee6d9771c51be703
refs/heads/master: 9bc183d7f90793e5e72f4dfd21a5877c6cd4da78
6 changes: 3 additions & 3 deletions trunk/drivers/net/sfc/tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ static netdev_tx_t efx_enqueue_skb(struct efx_tx_queue *tx_queue,

EFX_BUG_ON_PARANOID(tx_queue->write_count != tx_queue->insert_count);

if (skb_shinfo((struct sk_buff *)skb)->gso_size)
if (skb_shinfo(skb)->gso_size)
return efx_enqueue_skb_tso(tx_queue, skb);

/* Get size of the initial fragment */
Expand Down Expand Up @@ -287,7 +287,7 @@ static netdev_tx_t efx_enqueue_skb(struct efx_tx_queue *tx_queue,
skb_shinfo(skb)->nr_frags + 1);

/* Mark the packet as transmitted, and free the SKB ourselves */
dev_kfree_skb_any((struct sk_buff *)skb);
dev_kfree_skb_any(skb);
goto unwind;

stop:
Expand Down Expand Up @@ -1102,7 +1102,7 @@ static int efx_enqueue_skb_tso(struct efx_tx_queue *tx_queue,

mem_err:
EFX_ERR(efx, "Out of memory for TSO headers, or PCI mapping error\n");
dev_kfree_skb_any((struct sk_buff *)skb);
dev_kfree_skb_any(skb);
goto unwind;

stop:
Expand Down

0 comments on commit fdfc573

Please sign in to comment.