Skip to content

Commit

Permalink
cnic: Add cnic_free_uio()
Browse files Browse the repository at this point in the history
to free all UIO related structures.

Signed-off-by: Michael Chan <mchan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Michael Chan authored and David S. Miller committed Oct 14, 2010
1 parent fdf2408 commit c06c046
Showing 1 changed file with 27 additions and 10 deletions.
37 changes: 27 additions & 10 deletions drivers/net/cnic.c
Original file line number Diff line number Diff line change
Expand Up @@ -770,20 +770,15 @@ static void cnic_free_context(struct cnic_dev *dev)
}
}

static void cnic_free_resc(struct cnic_dev *dev)
static void __cnic_free_uio(struct cnic_dev *dev)
{
struct cnic_local *cp = dev->cnic_priv;
int i = 0;

if (cp->cnic_uinfo) {
while (cp->uio_dev != -1 && i < 15) {
msleep(100);
i++;
}
if (cp->cnic_uinfo)
uio_unregister_device(cp->cnic_uinfo);
kfree(cp->cnic_uinfo);
cp->cnic_uinfo = NULL;
}

kfree(cp->cnic_uinfo);
cp->cnic_uinfo = NULL;

if (cp->l2_buf) {
dma_free_coherent(&dev->pcidev->dev, cp->l2_buf_size,
Expand All @@ -796,6 +791,28 @@ static void cnic_free_resc(struct cnic_dev *dev)
cp->l2_ring, cp->l2_ring_map);
cp->l2_ring = NULL;
}
}

static void cnic_free_uio(struct cnic_dev *dev)
{
if (!dev)
return;

__cnic_free_uio(dev);
}

static void cnic_free_resc(struct cnic_dev *dev)
{
struct cnic_local *cp = dev->cnic_priv;
int i = 0;

if (cp->cnic_uinfo) {
while (cp->uio_dev != -1 && i < 15) {
msleep(100);
i++;
}
cnic_free_uio(dev);
}

cnic_free_context(dev);
kfree(cp->ctx_arr);
Expand Down

0 comments on commit c06c046

Please sign in to comment.