Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 95349
b: refs/heads/master
c: 35aeb78
h: refs/heads/master
i:
  95347: a74a744
v: v3
  • Loading branch information
Stephen Hemminger authored and Francois Romieu committed Apr 27, 2008
1 parent 6d9f7c1 commit 605d81a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 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: e3eccad9f6e84656b45bfa07738934145b09e11e
refs/heads/master: 35aeb7809345e0362772a75368a3e62ecd931481
26 changes: 13 additions & 13 deletions trunk/drivers/net/sis190.c
Original file line number Diff line number Diff line change
Expand Up @@ -480,16 +480,17 @@ static inline void sis190_make_unusable_by_asic(struct RxDesc *desc)
desc->status = 0x0;
}

static struct sk_buff *sis190_alloc_rx_skb(struct pci_dev *pdev,
struct RxDesc *desc, u32 rx_buf_sz)
static struct sk_buff *sis190_alloc_rx_skb(struct sis190_private *tp,
struct RxDesc *desc)
{
u32 rx_buf_sz = tp->rx_buf_sz;
struct sk_buff *skb;

skb = dev_alloc_skb(rx_buf_sz);
skb = netdev_alloc_skb(tp->dev, rx_buf_sz);
if (likely(skb)) {
dma_addr_t mapping;

mapping = pci_map_single(pdev, skb->data, rx_buf_sz,
mapping = pci_map_single(tp->pci_dev, skb->data, tp->rx_buf_sz,
PCI_DMA_FROMDEVICE);
sis190_map_to_asic(desc, mapping, rx_buf_sz);
} else
Expand All @@ -509,29 +510,29 @@ static u32 sis190_rx_fill(struct sis190_private *tp, struct net_device *dev,
if (tp->Rx_skbuff[i])
continue;

tp->Rx_skbuff[i] = sis190_alloc_rx_skb(tp->pci_dev,
tp->RxDescRing + i,
tp->rx_buf_sz);
tp->Rx_skbuff[i] = sis190_alloc_rx_skb(tp, tp->RxDescRing + i);

if (!tp->Rx_skbuff[i])
break;
}
return cur - start;
}

static inline int sis190_try_rx_copy(struct sk_buff **sk_buff, int pkt_size,
struct RxDesc *desc, int rx_buf_sz)
static int sis190_try_rx_copy(struct sis190_private *tp,
struct sk_buff **sk_buff, int pkt_size,
struct RxDesc *desc)
{
int ret = -1;

if (pkt_size < rx_copybreak) {
struct sk_buff *skb;

skb = dev_alloc_skb(pkt_size + 2);
skb = netdev_alloc_skb(tp->dev, pkt_size + 2);
if (skb) {
skb_reserve(skb, 2);
skb_copy_to_linear_data(skb, sk_buff[0]->data, pkt_size);
*sk_buff = skb;
sis190_give_to_asic(desc, rx_buf_sz);
sis190_give_to_asic(desc, tp->rx_buf_sz);
ret = 0;
}
}
Expand Down Expand Up @@ -603,8 +604,7 @@ static int sis190_rx_interrupt(struct net_device *dev,
le32_to_cpu(desc->addr), tp->rx_buf_sz,
PCI_DMA_FROMDEVICE);

if (sis190_try_rx_copy(&skb, pkt_size, desc,
tp->rx_buf_sz)) {
if (sis190_try_rx_copy(tp, &skb, pkt_size, desc)) {
pci_action = pci_unmap_single;
tp->Rx_skbuff[entry] = NULL;
sis190_make_unusable_by_asic(desc);
Expand Down

0 comments on commit 605d81a

Please sign in to comment.