* [PATCH v3] um: net: replace GFP_KERNEL with GFP_ATOMIC when spinlock is held
@ 2015-10-29 9:16 Saurabh Sengar
2015-10-29 14:50 ` Joe Perches
0 siblings, 1 reply; 3+ messages in thread
From: Saurabh Sengar @ 2015-10-29 9:16 UTC (permalink / raw)
To: jdike, richard, user-mode-linux-devel, user-mode-linux-user,
linux-kernel
Cc: Saurabh Sengar
replace GFP_KERNEL with GFP_ATOMIC while spinlock is held,
as code while holding a spinlock should be atomic.
GFP_KERNEL may sleep and can cause deadlock,
where as GFP_ATOMIC may fail but certainly avoids deadlock
Signed-off-by: Saurabh Sengar <saurabh.truth@gmail.com>
---
v3: removed the atomic variable, as per Richard comment
arch/um/drivers/net_kern.c | 21 +++++++++++++--------
1 file changed, 13 insertions(+), 8 deletions(-)
diff --git a/arch/um/drivers/net_kern.c b/arch/um/drivers/net_kern.c
index f70dd54..d898f6c 100644
--- a/arch/um/drivers/net_kern.c
+++ b/arch/um/drivers/net_kern.c
@@ -388,7 +388,7 @@ static const struct net_device_ops uml_netdev_ops = {
static int driver_registered;
static void eth_configure(int n, void *init, char *mac,
- struct transport *transport)
+ struct transport *transport, int gfp_mask)
{
struct uml_net *device;
struct net_device *dev;
@@ -397,7 +397,7 @@ static void eth_configure(int n, void *init, char *mac,
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");
@@ -568,7 +568,7 @@ static LIST_HEAD(transports);
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, int gfp_mask)
{
int len;
@@ -582,7 +582,7 @@ static int check_transport(struct transport *transport, char *eth, int n,
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;
@@ -600,20 +600,22 @@ void register_transport(struct transport *new)
void *init;
char *mac = NULL;
int match;
+ int gfp_mask;
spin_lock(&transports_lock);
BUG_ON(!list_empty(&new->list));
list_add(&new->list, &transports);
spin_unlock(&transports_lock);
+ gfp_mask = GFP_KERNEL;
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_mask);
if (!match)
continue;
else if (init != NULL) {
- eth_configure(eth->index, init, mac, new);
+ eth_configure(eth->index, init, mac, new, gfp_mask);
kfree(init);
}
list_del(ð->list);
@@ -627,14 +629,17 @@ static int eth_setup_common(char *str, int index)
void *init;
char *mac = NULL;
int found = 0;
+ int gfp_mask;
spin_lock(&transports_lock);
+ gfp_mask = GFP_ATOMIC;
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_mask))
continue;
if (init != NULL) {
- eth_configure(index, init, mac, transport);
+ eth_configure(index, init, mac, transport, gfp_mask);
kfree(init);
}
found = 1;
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v3] um: net: replace GFP_KERNEL with GFP_ATOMIC when spinlock is held
2015-10-29 9:16 [PATCH v3] um: net: replace GFP_KERNEL with GFP_ATOMIC when spinlock is held Saurabh Sengar
@ 2015-10-29 14:50 ` Joe Perches
2015-10-29 15:00 ` Richard Weinberger
0 siblings, 1 reply; 3+ messages in thread
From: Joe Perches @ 2015-10-29 14:50 UTC (permalink / raw)
To: Saurabh Sengar
Cc: jdike, richard, user-mode-linux-devel, user-mode-linux-user,
linux-kernel
On Thu, 2015-10-29 at 14:46 +0530, Saurabh Sengar wrote:
> replace GFP_KERNEL with GFP_ATOMIC while spinlock is held,
> as code while holding a spinlock should be atomic.
> GFP_KERNEL may sleep and can cause deadlock,
> where as GFP_ATOMIC may fail but certainly avoids deadlock
>
> Signed-off-by: Saurabh Sengar <saurabh.truth@gmail.com>
> ---
> v3: removed the atomic variable, as per Richard comment
Trivia: You could remove the gfp_mask variables too
and just use GFP_KERNEL and GFP_ATOMIC directly.
> diff --git a/arch/um/drivers/net_kern.c b/arch/um/drivers/net_kern.c
[]
> @@ -600,20 +600,22 @@ void register_transport(struct transport *new)
> void *init;
> char *mac = NULL;
> int match;
> + int gfp_mask;
>
> spin_lock(&transports_lock);
> BUG_ON(!list_empty(&new->list));
> list_add(&new->list, &transports);
> spin_unlock(&transports_lock);
>
> + gfp_mask = GFP_KERNEL;
> 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_mask);
> if (!match)
> continue;
> else if (init != NULL) {
> - eth_configure(eth->index, init, mac, new);
> + eth_configure(eth->index, init, mac, new, gfp_mask);
> kfree(init);
> }
> list_del(ð->list);
> @@ -627,14 +629,17 @@ static int eth_setup_common(char *str, int index)
> void *init;
> char *mac = NULL;
> int found = 0;
> + int gfp_mask;
>
> spin_lock(&transports_lock);
> + gfp_mask = GFP_ATOMIC;
> 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_mask))
> continue;
> if (init != NULL) {
> - eth_configure(index, init, mac, transport);
> + eth_configure(index, init, mac, transport, gfp_mask);
> kfree(init);
> }
> found = 1;
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v3] um: net: replace GFP_KERNEL with GFP_ATOMIC when spinlock is held
2015-10-29 14:50 ` Joe Perches
@ 2015-10-29 15:00 ` Richard Weinberger
0 siblings, 0 replies; 3+ messages in thread
From: Richard Weinberger @ 2015-10-29 15:00 UTC (permalink / raw)
To: Joe Perches, Saurabh Sengar
Cc: jdike, user-mode-linux-devel, user-mode-linux-user, linux-kernel
Am 29.10.2015 um 15:50 schrieb Joe Perches:
> On Thu, 2015-10-29 at 14:46 +0530, Saurabh Sengar wrote:
>> replace GFP_KERNEL with GFP_ATOMIC while spinlock is held,
>> as code while holding a spinlock should be atomic.
>> GFP_KERNEL may sleep and can cause deadlock,
>> where as GFP_ATOMIC may fail but certainly avoids deadlock
>>
>> Signed-off-by: Saurabh Sengar <saurabh.truth@gmail.com>
>> ---
>> v3: removed the atomic variable, as per Richard comment
>
> Trivia: You could remove the gfp_mask variables too
> and just use GFP_KERNEL and GFP_ATOMIC directly.
Yep.
And "int gfp_mask" does also not make sense, GFP_* is of type
gfp_t.
Thanks,
//richard
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-10-29 15:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-29 9:16 [PATCH v3] um: net: replace GFP_KERNEL with GFP_ATOMIC when spinlock is held Saurabh Sengar
2015-10-29 14:50 ` Joe Perches
2015-10-29 15:00 ` Richard Weinberger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).