All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jeremy Fitzhardinge <jeremy@goop.org>
To: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	Li Zefan <lizf@cn.fujitsu.com>, Paul Menage <menage@google.com>,
	Jeremy Fitzhardinge <jeremy@xensource.com>,
	LKML <linux-kernel@vger.kernel.org>,
	Rusty Russell <rusty@rustcorp.com.au>
Subject: Re: [PATCH] call_usermodehelper_setup() should use GFP_KERNEL
Date: Thu, 08 May 2008 13:58:12 +0100	[thread overview]
Message-ID: <4822F8E4.4040401@goop.org> (raw)
In-Reply-To: <20080508193224.0EFF.KOSAKI.MOTOHIRO@jp.fujitsu.com>

KOSAKI Motohiro wrote:
> Hi
>
> Thanks good comment!
>
>   
>>> How many times do we have to make this mistake :(
>>>
>>> Only the caller knows what allocation mode the callee can use. 
>>> call_usermodehelper_setup() should be extended to take a gfp_t argument.
>>>       
>> Yeah, but making the caller need to know about the internal 
>> implementation details of the callee (ie, whether it needs to allocate 
>> memory or not) leads to pretty warty interfaces.  In this case, you 
>> could push the gfp_t up to the call_usermodehelper_setup() level, but 
>> pushing it any higher wouldn't make much sense.
>>     
>
> No problem :)
> almost caller doesn't call call_usermodehelper_setup() directly.
>
> thus, call_usermodehelper_setup() chage is hided in call_usermodehelper().
>   

Yep, seems reasonable.  Are there any UMH_NO_WAIT callers who could be 
using GFP_KERNEL?

> ----------------chunk of my current testing patch-----------------------------
>
> @@ -68,8 +69,9 @@ static inline int
>  call_usermodehelper(char *path, char **argv, char **envp, enum umh_wait wait)
>  {
>  	struct subprocess_info *info;
> +	gfp_t gfp_mask = (wait == UMH_NO_WAIT) ? GFP_ATOMIC : GFP_KERNEL;
>  
> -	info = call_usermodehelper_setup(path, argv, envp);
> +	info = call_usermodehelper_setup(path, argv, envp, gfp_mask);
>  	if (info == NULL)
>  		return -ENOMEM;
>  	return call_usermodehelper_exec(info, wait);
>
>   

    J

  reply	other threads:[~2008-05-08 12:58 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-05-08  6:41 [PATCH] call_usermodehelper_setup() should use GFP_KERNEL KOSAKI Motohiro
2008-05-08  7:23 ` Li Zefan
2008-05-08  7:31   ` KOSAKI Motohiro
2008-05-08  8:29     ` Andrew Morton
2008-05-08  9:40       ` KOSAKI Motohiro
2008-05-08 10:16       ` Jeremy Fitzhardinge
2008-05-08 10:38         ` KOSAKI Motohiro
2008-05-08 12:58           ` Jeremy Fitzhardinge [this message]
2008-05-08 23:46             ` KOSAKI Motohiro
2008-05-08 23:53               ` Jeremy Fitzhardinge
2008-05-09  0:04                 ` KOSAKI Motohiro
2008-05-09  0:08                   ` Jeremy Fitzhardinge

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4822F8E4.4040401@goop.org \
    --to=jeremy@goop.org \
    --cc=akpm@linux-foundation.org \
    --cc=jeremy@xensource.com \
    --cc=kosaki.motohiro@jp.fujitsu.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lizf@cn.fujitsu.com \
    --cc=menage@google.com \
    --cc=rusty@rustcorp.com.au \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.