diff options
Diffstat (limited to 'drivers/net/sfc/efx.h')
| -rw-r--r-- | drivers/net/sfc/efx.h | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/net/sfc/efx.h b/drivers/net/sfc/efx.h index ffd708c5304..060dc952a0f 100644 --- a/drivers/net/sfc/efx.h +++ b/drivers/net/sfc/efx.h @@ -47,12 +47,12 @@ extern void efx_init_rx_queue(struct efx_rx_queue *rx_queue);  extern void efx_fini_rx_queue(struct efx_rx_queue *rx_queue);  extern void efx_rx_strategy(struct efx_channel *channel);  extern void efx_fast_push_rx_descriptors(struct efx_rx_queue *rx_queue); -extern void efx_rx_work(struct work_struct *data); +extern void efx_rx_slow_fill(unsigned long context);  extern void __efx_rx_packet(struct efx_channel *channel,  			    struct efx_rx_buffer *rx_buf, bool checksummed);  extern void efx_rx_packet(struct efx_rx_queue *rx_queue, unsigned int index,  			  unsigned int len, bool checksummed, bool discard); -extern void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue, int delay); +extern void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue);  #define EFX_RXQ_SIZE 1024  #define EFX_RXQ_MASK (EFX_RXQ_SIZE - 1) @@ -106,8 +106,9 @@ extern unsigned int efx_monitor_interval;  static inline void efx_schedule_channel(struct efx_channel *channel)  { -	EFX_TRACE(channel->efx, "channel %d scheduling NAPI poll on CPU%d\n", -		  channel->channel, raw_smp_processor_id()); +	netif_vdbg(channel->efx, intr, channel->efx->net_dev, +		   "channel %d scheduling NAPI poll on CPU%d\n", +		   channel->channel, raw_smp_processor_id());  	channel->work_pending = true;  	napi_schedule(&channel->napi_str);  |