[PATCH] dev->priv to netdev_priv(dev), for drivers/net/wireless
Replacing accesses to dev->priv to netdev_priv(dev). The replacment is safe when netdev_priv is used to access a private structure that is right next to the net_device structure in memory. Cf http://groups.google.com/group/comp.os.linux.development.system/browse_thread/thread/de19321bcd94dbb8/0d74a4adcd6177bd This is the case when the net_device structure was allocated with a call to alloc_netdev or one of its derivative. Signed-off-by: Yoann Padioleau <padator@wanadoo.fr> Cc: mcgrof@gmail.com Cc: linux-wireless@vger.kernel.org Cc: akpm@linux-foundation.org Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
David S. Miller
parent
8951554dba
commit
6dbc9c89fb
@@ -314,7 +314,7 @@ static int ray_probe(struct pcmcia_device *p_dev)
|
||||
if (!dev)
|
||||
goto fail_alloc_dev;
|
||||
|
||||
local = dev->priv;
|
||||
local = netdev_priv(dev);
|
||||
local->finder = p_dev;
|
||||
|
||||
/* The io structure describes IO port mapping. None used here */
|
||||
@@ -388,7 +388,7 @@ static void ray_detach(struct pcmcia_device *link)
|
||||
|
||||
ray_release(link);
|
||||
|
||||
local = (ray_dev_t *)dev->priv;
|
||||
local = netdev_priv(dev);
|
||||
del_timer(&local->timer);
|
||||
|
||||
if (link->priv) {
|
||||
@@ -412,7 +412,7 @@ static int ray_config(struct pcmcia_device *link)
|
||||
win_req_t req;
|
||||
memreq_t mem;
|
||||
struct net_device *dev = (struct net_device *)link->priv;
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
|
||||
DEBUG(1, "ray_config(0x%p)\n", link);
|
||||
|
||||
@@ -520,7 +520,7 @@ static int ray_init(struct net_device *dev)
|
||||
int i;
|
||||
UCHAR *p;
|
||||
struct ccs __iomem *pccs;
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
struct pcmcia_device *link = local->finder;
|
||||
DEBUG(1, "ray_init(0x%p)\n", dev);
|
||||
if (!(pcmcia_dev_present(link))) {
|
||||
@@ -581,7 +581,7 @@ static int ray_init(struct net_device *dev)
|
||||
static int dl_startup_params(struct net_device *dev)
|
||||
{
|
||||
int ccsindex;
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
struct ccs __iomem *pccs;
|
||||
struct pcmcia_device *link = local->finder;
|
||||
|
||||
@@ -786,7 +786,7 @@ static void join_net(u_long data)
|
||||
static void ray_release(struct pcmcia_device *link)
|
||||
{
|
||||
struct net_device *dev = link->priv;
|
||||
ray_dev_t *local = dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
int i;
|
||||
|
||||
DEBUG(1, "ray_release(0x%p)\n", link);
|
||||
@@ -834,7 +834,7 @@ int ray_dev_init(struct net_device *dev)
|
||||
#ifdef RAY_IMMEDIATE_INIT
|
||||
int i;
|
||||
#endif /* RAY_IMMEDIATE_INIT */
|
||||
ray_dev_t *local = dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
struct pcmcia_device *link = local->finder;
|
||||
|
||||
DEBUG(1,"ray_dev_init(dev=%p)\n",dev);
|
||||
@@ -868,7 +868,7 @@ int ray_dev_init(struct net_device *dev)
|
||||
/*===========================================================================*/
|
||||
static int ray_dev_config(struct net_device *dev, struct ifmap *map)
|
||||
{
|
||||
ray_dev_t *local = dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
struct pcmcia_device *link = local->finder;
|
||||
/* Dummy routine to satisfy device structure */
|
||||
DEBUG(1,"ray_dev_config(dev=%p,ifmap=%p)\n",dev,map);
|
||||
@@ -882,7 +882,7 @@ static int ray_dev_config(struct net_device *dev, struct ifmap *map)
|
||||
/*===========================================================================*/
|
||||
static int ray_dev_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
{
|
||||
ray_dev_t *local = dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
struct pcmcia_device *link = local->finder;
|
||||
short length = skb->len;
|
||||
|
||||
@@ -925,7 +925,7 @@ static int ray_dev_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
static int ray_hw_xmit(unsigned char* data, int len, struct net_device* dev,
|
||||
UCHAR msg_type)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
struct ccs __iomem *pccs;
|
||||
int ccsindex;
|
||||
int offset;
|
||||
@@ -1099,7 +1099,7 @@ static int ray_set_freq(struct net_device *dev,
|
||||
struct iw_freq *fwrq,
|
||||
char *extra)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
int err = -EINPROGRESS; /* Call commit handler */
|
||||
|
||||
/* Reject if card is already initialised */
|
||||
@@ -1124,7 +1124,7 @@ static int ray_get_freq(struct net_device *dev,
|
||||
struct iw_freq *fwrq,
|
||||
char *extra)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
|
||||
fwrq->m = local->sparm.b5.a_hop_pattern;
|
||||
fwrq->e = 0;
|
||||
@@ -1140,7 +1140,7 @@ static int ray_set_essid(struct net_device *dev,
|
||||
struct iw_point *dwrq,
|
||||
char *extra)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
|
||||
/* Reject if card is already initialised */
|
||||
if(local->card_status != CARD_AWAITING_PARAM)
|
||||
@@ -1173,7 +1173,7 @@ static int ray_get_essid(struct net_device *dev,
|
||||
struct iw_point *dwrq,
|
||||
char *extra)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
|
||||
/* Get the essid that was set */
|
||||
memcpy(extra, local->sparm.b5.a_current_ess_id, IW_ESSID_MAX_SIZE);
|
||||
@@ -1194,7 +1194,7 @@ static int ray_get_wap(struct net_device *dev,
|
||||
struct sockaddr *awrq,
|
||||
char *extra)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
|
||||
memcpy(awrq->sa_data, local->bss_id, ETH_ALEN);
|
||||
awrq->sa_family = ARPHRD_ETHER;
|
||||
@@ -1211,7 +1211,7 @@ static int ray_set_rate(struct net_device *dev,
|
||||
struct iw_param *vwrq,
|
||||
char *extra)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
|
||||
/* Reject if card is already initialised */
|
||||
if(local->card_status != CARD_AWAITING_PARAM)
|
||||
@@ -1240,7 +1240,7 @@ static int ray_get_rate(struct net_device *dev,
|
||||
struct iw_param *vwrq,
|
||||
char *extra)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
|
||||
if(local->net_default_tx_rate == 3)
|
||||
vwrq->value = 2000000; /* Hum... */
|
||||
@@ -1260,7 +1260,7 @@ static int ray_set_rts(struct net_device *dev,
|
||||
struct iw_param *vwrq,
|
||||
char *extra)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
int rthr = vwrq->value;
|
||||
|
||||
/* Reject if card is already initialised */
|
||||
@@ -1290,7 +1290,7 @@ static int ray_get_rts(struct net_device *dev,
|
||||
struct iw_param *vwrq,
|
||||
char *extra)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
|
||||
vwrq->value = (local->sparm.b5.a_rts_threshold[0] << 8)
|
||||
+ local->sparm.b5.a_rts_threshold[1];
|
||||
@@ -1309,7 +1309,7 @@ static int ray_set_frag(struct net_device *dev,
|
||||
struct iw_param *vwrq,
|
||||
char *extra)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
int fthr = vwrq->value;
|
||||
|
||||
/* Reject if card is already initialised */
|
||||
@@ -1338,7 +1338,7 @@ static int ray_get_frag(struct net_device *dev,
|
||||
struct iw_param *vwrq,
|
||||
char *extra)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
|
||||
vwrq->value = (local->sparm.b5.a_frag_threshold[0] << 8)
|
||||
+ local->sparm.b5.a_frag_threshold[1];
|
||||
@@ -1357,7 +1357,7 @@ static int ray_set_mode(struct net_device *dev,
|
||||
__u32 *uwrq,
|
||||
char *extra)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
int err = -EINPROGRESS; /* Call commit handler */
|
||||
char card_mode = 1;
|
||||
|
||||
@@ -1389,7 +1389,7 @@ static int ray_get_mode(struct net_device *dev,
|
||||
__u32 *uwrq,
|
||||
char *extra)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
|
||||
if(local->sparm.b5.a_network_type)
|
||||
*uwrq = IW_MODE_INFRA;
|
||||
@@ -1492,7 +1492,7 @@ static int ray_commit(struct net_device *dev,
|
||||
*/
|
||||
static iw_stats * ray_get_wireless_stats(struct net_device * dev)
|
||||
{
|
||||
ray_dev_t * local = (ray_dev_t *) dev->priv;
|
||||
ray_dev_t * local = netdev_priv(dev);
|
||||
struct pcmcia_device *link = local->finder;
|
||||
struct status __iomem *p = local->sram + STATUS_BASE;
|
||||
|
||||
@@ -1580,7 +1580,7 @@ static const struct iw_handler_def ray_handler_def =
|
||||
/*===========================================================================*/
|
||||
static int ray_open(struct net_device *dev)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
struct pcmcia_device *link;
|
||||
link = local->finder;
|
||||
|
||||
@@ -1614,7 +1614,7 @@ static int ray_open(struct net_device *dev)
|
||||
/*===========================================================================*/
|
||||
static int ray_dev_close(struct net_device *dev)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
struct pcmcia_device *link;
|
||||
link = local->finder;
|
||||
|
||||
@@ -1773,7 +1773,7 @@ static int parse_addr(char *in_str, UCHAR *out)
|
||||
/*===========================================================================*/
|
||||
static struct net_device_stats *ray_get_stats(struct net_device *dev)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
struct pcmcia_device *link = local->finder;
|
||||
struct status __iomem *p = local->sram + STATUS_BASE;
|
||||
if (!(pcmcia_dev_present(link))) {
|
||||
@@ -1803,7 +1803,7 @@ static struct net_device_stats *ray_get_stats(struct net_device *dev)
|
||||
/*===========================================================================*/
|
||||
static void ray_update_parm(struct net_device *dev, UCHAR objid, UCHAR *value, int len)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
struct pcmcia_device *link = local->finder;
|
||||
int ccsindex;
|
||||
int i;
|
||||
@@ -1840,7 +1840,7 @@ static void ray_update_multi_list(struct net_device *dev, int all)
|
||||
int ccsindex;
|
||||
struct ccs __iomem *pccs;
|
||||
int i = 0;
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
struct pcmcia_device *link = local->finder;
|
||||
void __iomem *p = local->sram + HOST_TO_ECF_BASE;
|
||||
|
||||
@@ -1884,7 +1884,7 @@ static void ray_update_multi_list(struct net_device *dev, int all)
|
||||
/*===========================================================================*/
|
||||
static void set_multicast_list(struct net_device *dev)
|
||||
{
|
||||
ray_dev_t *local = (ray_dev_t *)dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
UCHAR promisc;
|
||||
|
||||
DEBUG(2,"ray_cs set_multicast_list(%p)\n",dev);
|
||||
@@ -1935,7 +1935,7 @@ static irqreturn_t ray_interrupt(int irq, void *dev_id)
|
||||
|
||||
DEBUG(4,"ray_cs: interrupt for *dev=%p\n",dev);
|
||||
|
||||
local = (ray_dev_t *)dev->priv;
|
||||
local = netdev_priv(dev);
|
||||
link = (struct pcmcia_device *)local->finder;
|
||||
if (!pcmcia_dev_present(link)) {
|
||||
DEBUG(2,"ray_cs interrupt from device not present or suspended.\n");
|
||||
@@ -2165,7 +2165,7 @@ static void rx_data(struct net_device *dev, struct rcs __iomem *prcs, unsigned i
|
||||
{
|
||||
struct sk_buff *skb = NULL;
|
||||
struct rcs __iomem *prcslink = prcs;
|
||||
ray_dev_t *local = dev->priv;
|
||||
ray_dev_t *local = netdev_priv(dev);
|
||||
UCHAR *rx_ptr;
|
||||
int total_len;
|
||||
int tmp;
|
||||
@@ -2618,7 +2618,7 @@ static int ray_cs_proc_read(char *buf, char **start, off_t offset, int len)
|
||||
dev = (struct net_device *)link->priv;
|
||||
if (!dev)
|
||||
return 0;
|
||||
local = (ray_dev_t *)dev->priv;
|
||||
local = netdev_priv(dev);
|
||||
if (!local)
|
||||
return 0;
|
||||
|
||||
|
Reference in New Issue
Block a user