static LIST_HEAD(tables);
 static DEFINE_SPINLOCK(recent_lock);
+static DEFINE_MUTEX(recent_mutex);
 
 #ifdef CONFIG_PROC_FS
 static struct proc_dir_entry   *proc_dir;
            strnlen(info->name, IPT_RECENT_NAME_LEN) == IPT_RECENT_NAME_LEN)
                return 0;
 
-       spin_lock_bh(&recent_lock);
+       mutex_lock(&recent_mutex);
        t = recent_table_lookup(info->name);
        if (t != NULL) {
                t->refcnt++;
        }
 
        t = kzalloc(sizeof(*t) + sizeof(t->iphash[0]) * ip_list_hash_size,
-                   GFP_ATOMIC);
+                   GFP_KERNEL);
        if (t == NULL)
                goto out;
        strcpy(t->name, info->name);
        t->proc->proc_fops = &recent_fops;
        t->proc->data      = t;
 #endif
+       spin_lock_bh(&recent_lock);
        list_add_tail(&t->list, &tables);
+       spin_unlock_bh(&recent_lock);
        ret = 1;
 out:
-       spin_unlock_bh(&recent_lock);
+       mutex_unlock(&recent_mutex);
        return ret;
 }
 
        const struct ipt_recent_info *info = matchinfo;
        struct recent_table *t;
 
-       spin_lock_bh(&recent_lock);
+       mutex_lock(&recent_mutex);
        t = recent_table_lookup(info->name);
        if (--t->refcnt == 0) {
+               spin_lock_bh(&recent_lock);
                list_del(&t->list);
+               spin_unlock_bh(&recent_lock);
                recent_table_flush(t);
 #ifdef CONFIG_PROC_FS
                remove_proc_entry(t->name, proc_dir);
 #endif
                kfree(t);
        }
-       spin_unlock_bh(&recent_lock);
+       mutex_unlock(&recent_mutex);
 }
 
 #ifdef CONFIG_PROC_FS