LIST_HEAD(fcoe_hostlist);
 DEFINE_RWLOCK(fcoe_hostlist_lock);
 DEFINE_TIMER(fcoe_timer, NULL, 0, 0);
-struct fcoe_percpu_s *fcoe_percpu[NR_CPUS];
+DEFINE_PER_CPU(struct fcoe_percpu_s, fcoe_percpu);
 
 
 /* Function Prototyes */
        fr->fr_dev = lp;
        fr->ptype = ptype;
        cpu_idx = 0;
+
 #ifdef CONFIG_SMP
        /*
         * The incoming frame exchange id(oxid) is ANDed with num of online
         * initialize to first online cpu index.
         */
        cpu_idx = oxid & (num_online_cpus() - 1);
-       if (!fcoe_percpu[cpu_idx] || !cpu_online(cpu_idx))
+       if (!cpu_online(cpu_idx))
                cpu_idx = first_cpu(cpu_online_map);
+
 #endif
-       fps = fcoe_percpu[cpu_idx];
+
+       fps = &per_cpu(fcoe_percpu, cpu_idx);
 
        spin_lock_bh(&fps->fcoe_rx_list.lock);
        __skb_queue_tail(&fps->fcoe_rx_list, skb);
 {
        struct fcoe_percpu_s *fps;
        struct page *page;
-       unsigned int cpu_idx;
 
-       cpu_idx = get_cpu();
-       fps = fcoe_percpu[cpu_idx];
+       fps = &get_cpu_var(fcoe_percpu);
        page = fps->crc_eof_page;
        if (!page) {
                page = alloc_page(GFP_ATOMIC);
                if (!page) {
-                       put_cpu();
+                       put_cpu_var(fcoe_percpu);
                        return -ENOMEM;
                }
                fps->crc_eof_page = page;
                fps->crc_eof_offset = 0;
                put_page(page);
        }
-       put_cpu();
+       put_cpu_var(fcoe_percpu);
        return 0;
 }
 
  */
 void fcoe_percpu_clean(struct fc_lport *lp)
 {
-       int idx;
        struct fcoe_percpu_s *pp;
        struct fcoe_rcv_info *fr;
        struct sk_buff_head *list;
        struct sk_buff *skb, *next;
        struct sk_buff *head;
+       unsigned int cpu;
 
-       for (idx = 0; idx < NR_CPUS; idx++) {
-               if (fcoe_percpu[idx]) {
-                       pp = fcoe_percpu[idx];
-                       spin_lock_bh(&pp->fcoe_rx_list.lock);
-                       list = &pp->fcoe_rx_list;
-                       head = list->next;
-                       for (skb = head; skb != (struct sk_buff *)list;
-                            skb = next) {
-                               next = skb->next;
-                               fr = fcoe_dev_from_skb(skb);
-                               if (fr->fr_dev == lp) {
-                                       __skb_unlink(skb, list);
-                                       kfree_skb(skb);
-                               }
+       for_each_possible_cpu(cpu) {
+               pp = &per_cpu(fcoe_percpu, cpu);
+               spin_lock_bh(&pp->fcoe_rx_list.lock);
+               list = &pp->fcoe_rx_list;
+               head = list->next;
+               for (skb = head; skb != (struct sk_buff *)list;
+                    skb = next) {
+                       next = skb->next;
+                       fr = fcoe_dev_from_skb(skb);
+                       if (fr->fr_dev == lp) {
+                               __skb_unlink(skb, list);
+                               kfree_skb(skb);
                        }
-                       spin_unlock_bh(&pp->fcoe_rx_list.lock);
                }
+               spin_unlock_bh(&pp->fcoe_rx_list.lock);
        }
 }
 EXPORT_SYMBOL_GPL(fcoe_percpu_clean);
 #endif /* CONFIG_HOTPLUG_CPU */
 
        for_each_possible_cpu(cpu) {
-               p = fcoe_percpu[cpu];
-               p->cpu = cpu;
+               p = &per_cpu(fcoe_percpu, cpu);
                skb_queue_head_init(&p->fcoe_rx_list);
        }
 
         * initialize per CPU interrupt thread
         */
        for_each_online_cpu(cpu) {
-               p = kzalloc(sizeof(struct fcoe_percpu_s), GFP_KERNEL);
-               if (p) {
-                       p->thread = kthread_create(fcoe_percpu_receive_thread,
-                                                  (void *)p,
-                                                  "fcoethread/%d", cpu);
+               p = &per_cpu(fcoe_percpu, cpu);
+               p->thread = kthread_create(fcoe_percpu_receive_thread,
+                                          (void *)p, "fcoethread/%d", cpu);
 
-                       /*
-                        * if there is no error then bind the thread to the cpu
-                        * initialize the semaphore and skb queue head
-                        */
-                       if (likely(!IS_ERR(p->thread))) {
-                               fcoe_percpu[cpu] = p;
-                               kthread_bind(p->thread, cpu);
-                               wake_up_process(p->thread);
-                       } else {
-                               fcoe_percpu[cpu] = NULL;
-                               kfree(p);
-                       }
+               /*
+                * If there is no error then bind the thread to the CPU
+                * and wake it up.
+                */
+               if (!IS_ERR(p->thread)) {
+                       kthread_bind(p->thread, cpu);
+                       wake_up_process(p->thread);
+               } else {
+                       p->thread = NULL;
                }
        }
 
  */
 static void __exit fcoe_exit(void)
 {
-       u32 idx;
+       unsigned int cpu;
        struct fcoe_softc *fc, *tmp;
        struct fcoe_percpu_s *p;
        struct sk_buff *skb;
        list_for_each_entry_safe(fc, tmp, &fcoe_hostlist, list)
                fcoe_transport_release(fc->real_dev);
 
-       for (idx = 0; idx < NR_CPUS; idx++) {
-               if (fcoe_percpu[idx]) {
-                       kthread_stop(fcoe_percpu[idx]->thread);
-                       p = fcoe_percpu[idx];
+       for_each_possible_cpu(cpu) {
+               p = &per_cpu(fcoe_percpu, cpu);
+               if (p->thread) {
+                       kthread_stop(p->thread);
                        spin_lock_bh(&p->fcoe_rx_list.lock);
                        while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
                                kfree_skb(skb);
                        spin_unlock_bh(&p->fcoe_rx_list.lock);
-                       if (fcoe_percpu[idx]->crc_eof_page)
-                               put_page(fcoe_percpu[idx]->crc_eof_page);
-                       kfree(fcoe_percpu[idx]);
+                       if (p->crc_eof_page)
+                               put_page(p->crc_eof_page);
                }
        }