static int driver_registered;
 
 static void eth_configure(int n, void *init, char *mac,
-                         struct transport *transport)
+                         struct transport *transport, gfp_t gfp_mask)
 {
        struct uml_net *device;
        struct net_device *dev;
 
        size = transport->private_size + sizeof(struct uml_net_private);
 
-       device = kzalloc(sizeof(*device), GFP_KERNEL);
+       device = kzalloc(sizeof(*device), gfp_mask);
        if (device == NULL) {
                printk(KERN_ERR "eth_configure failed to allocate struct "
                       "uml_net\n");
 static LIST_HEAD(eth_cmd_line);
 
 static int check_transport(struct transport *transport, char *eth, int n,
-                          void **init_out, char **mac_out)
+                          void **init_out, char **mac_out, gfp_t gfp_mask)
 {
        int len;
 
        else if (*eth != '\0')
                return 0;
 
-       *init_out = kmalloc(transport->setup_size, GFP_KERNEL);
+       *init_out = kmalloc(transport->setup_size, gfp_mask);
        if (*init_out == NULL)
                return 1;
 
        list_for_each_safe(ele, next, ð_cmd_line) {
                eth = list_entry(ele, struct eth_init, list);
                match = check_transport(new, eth->init, eth->index, &init,
-                                       &mac);
+                                       &mac, GFP_KERNEL);
                if (!match)
                        continue;
                else if (init != NULL) {
-                       eth_configure(eth->index, init, mac, new);
+                       eth_configure(eth->index, init, mac, new, GFP_KERNEL);
                        kfree(init);
                }
                list_del(ð->list);
        spin_lock(&transports_lock);
        list_for_each(ele, &transports) {
                transport = list_entry(ele, struct transport, list);
-               if (!check_transport(transport, str, index, &init, &mac))
+               if (!check_transport(transport, str, index, &init,
+                                       &mac, GFP_ATOMIC))
                        continue;
                if (init != NULL) {
-                       eth_configure(index, init, mac, transport);
+                       eth_configure(index, init, mac, transport, GFP_ATOMIC);
                        kfree(init);
                }
                found = 1;