Skip to content

Commit

Permalink
um: Kill directly reference of netdev->priv
Browse files Browse the repository at this point in the history
Simply replace netdev->priv with netdev_priv().

Signed-off-by: Wang Chen <wangchen@cn.fujitsu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Wang Chen authored and David S. Miller committed Dec 4, 2008
1 parent 6cbeba5 commit 17c324f
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion arch/um/drivers/daemon_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ static void daemon_init(struct net_device *dev, void *data)
struct daemon_data *dpri;
struct daemon_init *init = data;

pri = dev->priv;
pri = netdev_priv(dev);
dpri = (struct daemon_data *) pri->user;
dpri->sock_type = init->sock_type;
dpri->ctl_sock = init->ctl_sock;
Expand Down
2 changes: 1 addition & 1 deletion arch/um/drivers/mcast_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ static void mcast_init(struct net_device *dev, void *data)
struct mcast_data *dpri;
struct mcast_init *init = data;

pri = dev->priv;
pri = netdev_priv(dev);
dpri = (struct mcast_data *) pri->user;
dpri->addr = init->addr;
dpri->port = init->port;
Expand Down
22 changes: 11 additions & 11 deletions arch/um/drivers/net_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ static int update_drop_skb(int max)

static int uml_net_rx(struct net_device *dev)
{
struct uml_net_private *lp = dev->priv;
struct uml_net_private *lp = netdev_priv(dev);
int pkt_len;
struct sk_buff *skb;

Expand Down Expand Up @@ -119,7 +119,7 @@ static void uml_dev_close(struct work_struct *work)
static irqreturn_t uml_net_interrupt(int irq, void *dev_id)
{
struct net_device *dev = dev_id;
struct uml_net_private *lp = dev->priv;
struct uml_net_private *lp = netdev_priv(dev);
int err;

if (!netif_running(dev))
Expand Down Expand Up @@ -150,7 +150,7 @@ static irqreturn_t uml_net_interrupt(int irq, void *dev_id)

static int uml_net_open(struct net_device *dev)
{
struct uml_net_private *lp = dev->priv;
struct uml_net_private *lp = netdev_priv(dev);
int err;

if (lp->fd >= 0) {
Expand Down Expand Up @@ -195,7 +195,7 @@ static int uml_net_open(struct net_device *dev)

static int uml_net_close(struct net_device *dev)
{
struct uml_net_private *lp = dev->priv;
struct uml_net_private *lp = netdev_priv(dev);

netif_stop_queue(dev);

Expand All @@ -213,7 +213,7 @@ static int uml_net_close(struct net_device *dev)

static int uml_net_start_xmit(struct sk_buff *skb, struct net_device *dev)
{
struct uml_net_private *lp = dev->priv;
struct uml_net_private *lp = netdev_priv(dev);
unsigned long flags;
int len;

Expand Down Expand Up @@ -250,7 +250,7 @@ static int uml_net_start_xmit(struct sk_buff *skb, struct net_device *dev)

static struct net_device_stats *uml_net_get_stats(struct net_device *dev)
{
struct uml_net_private *lp = dev->priv;
struct uml_net_private *lp = netdev_priv(dev);
return &lp->stats;
}

Expand All @@ -267,7 +267,7 @@ static void uml_net_tx_timeout(struct net_device *dev)

static int uml_net_set_mac(struct net_device *dev, void *addr)
{
struct uml_net_private *lp = dev->priv;
struct uml_net_private *lp = netdev_priv(dev);
struct sockaddr *hwaddr = addr;

spin_lock_irq(&lp->lock);
Expand Down Expand Up @@ -368,7 +368,7 @@ static void net_device_release(struct device *dev)
{
struct uml_net *device = dev->driver_data;
struct net_device *netdev = device->dev;
struct uml_net_private *lp = netdev->priv;
struct uml_net_private *lp = netdev_priv(netdev);

if (lp->remove != NULL)
(*lp->remove)(&lp->user);
Expand Down Expand Up @@ -420,7 +420,7 @@ static void eth_configure(int n, void *init, char *mac,

printk(KERN_INFO "Netdevice %d (%pM) : ", n, device->mac);

lp = dev->priv;
lp = netdev_priv(dev);
/* This points to the transport private data. It's still clear, but we
* must memset it to 0 *now*. Let's help the drivers. */
memset(lp, 0, size);
Expand Down Expand Up @@ -730,7 +730,7 @@ static int net_remove(int n, char **error_out)
return -ENODEV;

dev = device->dev;
lp = dev->priv;
lp = netdev_priv(dev);
if (lp->fd > 0)
return -EBUSY;
unregister_netdev(dev);
Expand Down Expand Up @@ -761,7 +761,7 @@ static int uml_inetaddr_event(struct notifier_block *this, unsigned long event,
if (dev->open != uml_net_open)
return NOTIFY_DONE;

lp = dev->priv;
lp = netdev_priv(dev);

proc = NULL;
switch (event) {
Expand Down
2 changes: 1 addition & 1 deletion arch/um/drivers/pcap_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ void pcap_init(struct net_device *dev, void *data)
struct pcap_data *ppri;
struct pcap_init *init = data;

pri = dev->priv;
pri = netdev_priv(dev);
ppri = (struct pcap_data *) pri->user;
ppri->host_if = init->host_if;
ppri->promisc = init->promisc;
Expand Down
2 changes: 1 addition & 1 deletion arch/um/drivers/slip_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ static void slip_init(struct net_device *dev, void *data)
struct slip_data *spri;
struct slip_init *init = data;

private = dev->priv;
private = netdev_priv(dev);
spri = (struct slip_data *) private->user;

memset(spri->name, 0, sizeof(spri->name));
Expand Down
2 changes: 1 addition & 1 deletion arch/um/drivers/slirp_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ void slirp_init(struct net_device *dev, void *data)
struct slirp_init *init = data;
int i;

private = dev->priv;
private = netdev_priv(dev);
spri = (struct slirp_data *) private->user;

spri->argw = init->argw;
Expand Down
2 changes: 1 addition & 1 deletion arch/um/drivers/vde_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ static void vde_init(struct net_device *dev, void *data)
struct uml_net_private *pri;
struct vde_data *vpri;

pri = dev->priv;
pri = netdev_priv(dev);
vpri = (struct vde_data *) pri->user;

vpri->vde_switch = init->vde_switch;
Expand Down
2 changes: 1 addition & 1 deletion arch/um/os-Linux/drivers/ethertap_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ static void etap_init(struct net_device *dev, void *data)
struct ethertap_data *epri;
struct ethertap_init *init = data;

pri = dev->priv;
pri = netdev_priv(dev);
epri = (struct ethertap_data *) pri->user;
epri->dev_name = init->dev_name;
epri->gate_addr = init->gate_addr;
Expand Down
2 changes: 1 addition & 1 deletion arch/um/os-Linux/drivers/tuntap_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ static void tuntap_init(struct net_device *dev, void *data)
struct tuntap_data *tpri;
struct tuntap_init *init = data;

pri = dev->priv;
pri = netdev_priv(dev);
tpri = (struct tuntap_data *) pri->user;
tpri->dev_name = init->dev_name;
tpri->fixed_config = (init->dev_name != NULL);
Expand Down

0 comments on commit 17c324f

Please sign in to comment.