[PATCH] msm: rmnet: msm rmnet smd virtual ethernet driver

Stephen Hemminger shemminger at vyatta.com
Wed Dec 15 16:44:06 EST 2010


On Wed, 15 Dec 2010 10:31:06 -0800
Niranjana Vishwanathapura <nvishwan at codeaurora.org> wrote:

> +
> +static DECLARE_TASKLET(smd_net_data_tasklet, smd_net_data_handler, 0);
> +
> +static void smd_net_notify(void *_dev, unsigned event)
> +{
> +	if (event != SMD_EVENT_DATA)
> +		return;
> +
> +	smd_net_data_tasklet.data = (unsigned long) _dev;
> +
> +	tasklet_schedule(&smd_net_data_tasklet);
> +}
> +

Rather than having private tasklet, maybe using NAPI
would be better?

Also since you are already in tasklet, no need to call netif_rx()
when receiving packet; instead use netif_receive_skb directly.

-- 



More information about the linux-arm-kernel mailing list