unsigned int            gro_count;
        int                     (*poll)(struct napi_struct *, int);
 #ifdef CONFIG_NETPOLL
-       spinlock_t              poll_lock;
        int                     poll_owner;
 #endif
        struct net_device       *dev;
 
        struct net_device *dev = napi->dev;
 
        if (dev && dev->npinfo) {
-               spin_lock(&napi->poll_lock);
-               napi->poll_owner = smp_processor_id();
+               int owner = smp_processor_id();
+
+               while (cmpxchg(&napi->poll_owner, -1, owner) != -1)
+                       cpu_relax();
+
                return napi;
        }
        return NULL;
 {
        struct napi_struct *napi = have;
 
-       if (napi) {
-               napi->poll_owner = -1;
-               spin_unlock(&napi->poll_lock);
-       }
+       if (napi)
+               smp_store_release(&napi->poll_owner, -1);
 }
 
 static inline bool netpoll_tx_running(struct net_device *dev)
 
        list_add(&napi->dev_list, &dev->napi_list);
        napi->dev = dev;
 #ifdef CONFIG_NETPOLL
-       spin_lock_init(&napi->poll_lock);
        napi->poll_owner = -1;
 #endif
        set_bit(NAPI_STATE_SCHED, &napi->state);
 
 static void poll_napi(struct net_device *dev)
 {
        struct napi_struct *napi;
+       int cpu = smp_processor_id();
 
        list_for_each_entry(napi, &dev->napi_list, dev_list) {
-               if (napi->poll_owner != smp_processor_id() &&
-                   spin_trylock(&napi->poll_lock)) {
+               if (cmpxchg(&napi->poll_owner, -1, cpu) == -1) {
                        poll_one_napi(napi);
-                       spin_unlock(&napi->poll_lock);
+                       smp_store_release(&napi->poll_owner, -1);
                }
        }
 }