All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] qemu_find_file: check name as a straight path even if it has no '/'
@ 2012-05-25 12:07 Peter Maydell
  2012-05-25 12:21 ` Andreas Färber
  2012-06-19 15:13 ` Peter Maydell
  0 siblings, 2 replies; 5+ messages in thread
From: Peter Maydell @ 2012-05-25 12:07 UTC (permalink / raw)
  To: qemu-devel; +Cc: Anthony Liguori, patches

Make qemu_find_file() check for the passed in name as a straight
pathname even if it doesn't have any path separator character in it.
This means that "-bios foo", "-dtb foo" etc will find a file 'foo'
in the current directory.
This removes an inconsistency with -kernel and -initrd, which both
accept plain filenames as meaning files in the current directory.
It's also less confusing for the user than an undocumented restriction
that "this option accepts a filename, except for the special case
where the filename you pass happens not to have a '/' in it, in
which case we'll ignore it."

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
 vl.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/vl.c b/vl.c
index 23ab3a3..4639526 100644
--- a/vl.c
+++ b/vl.c
@@ -1801,9 +1801,8 @@ char *qemu_find_file(int type, const char *name)
     const char *subdir;
     char *buf;
 
-    /* If name contains path separators then try it as a straight path.  */
-    if ((strchr(name, '/') || strchr(name, '\\'))
-        && access(name, R_OK) == 0) {
+    /* Try the name as a straight path first */
+    if (access(name, R_OK) == 0) {
         return g_strdup(name);
     }
     switch (type) {
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] qemu_find_file: check name as a straight path even if it has no '/'
  2012-05-25 12:07 [Qemu-devel] [PATCH] qemu_find_file: check name as a straight path even if it has no '/' Peter Maydell
@ 2012-05-25 12:21 ` Andreas Färber
  2012-05-25 12:23   ` Edgar E. Iglesias
  2012-06-19 15:13 ` Peter Maydell
  1 sibling, 1 reply; 5+ messages in thread
From: Andreas Färber @ 2012-05-25 12:21 UTC (permalink / raw)
  To: Edgar E. Iglesias; +Cc: Peter Maydell, Anthony Liguori, qemu-devel, patches

Am 25.05.2012 14:07, schrieb Peter Maydell:
> Make qemu_find_file() check for the passed in name as a straight
> pathname even if it doesn't have any path separator character in it.
> This means that "-bios foo", "-dtb foo" etc will find a file 'foo'
> in the current directory.
> This removes an inconsistency with -kernel and -initrd, which both
> accept plain filenames as meaning files in the current directory.
> It's also less confusing for the user than an undocumented restriction
> that "this option accepts a filename, except for the special case
> where the filename you pass happens not to have a '/' in it, in
> which case we'll ignore it."
> 
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>

Speaking of inconsistencies, I also noticed that the ppc virtex-ml507
machine relies on the .dtb being in the current directory with
apparently no way to override. Any chance this can be fixed, Edgar?
Maybe it can be unified with the dtb handling on ARM or share the same
QemuOpts?

Andreas

-- 
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] qemu_find_file: check name as a straight path even if it has no '/'
  2012-05-25 12:21 ` Andreas Färber
@ 2012-05-25 12:23   ` Edgar E. Iglesias
  0 siblings, 0 replies; 5+ messages in thread
From: Edgar E. Iglesias @ 2012-05-25 12:23 UTC (permalink / raw)
  To: Andreas Färber; +Cc: Peter Maydell, Anthony Liguori, qemu-devel, patches

On Fri, May 25, 2012 at 02:21:55PM +0200, Andreas Färber wrote:
> Am 25.05.2012 14:07, schrieb Peter Maydell:
> > Make qemu_find_file() check for the passed in name as a straight
> > pathname even if it doesn't have any path separator character in it.
> > This means that "-bios foo", "-dtb foo" etc will find a file 'foo'
> > in the current directory.
> > This removes an inconsistency with -kernel and -initrd, which both
> > accept plain filenames as meaning files in the current directory.
> > It's also less confusing for the user than an undocumented restriction
> > that "this option accepts a filename, except for the special case
> > where the filename you pass happens not to have a '/' in it, in
> > which case we'll ignore it."
> > 
> > Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> 
> Speaking of inconsistencies, I also noticed that the ppc virtex-ml507
> machine relies on the .dtb being in the current directory with
> apparently no way to override. Any chance this can be fixed, Edgar?
> Maybe it can be unified with the dtb handling on ARM or share the same
> QemuOpts?

Yes, absolutely!

Best regards,
Edgar

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] qemu_find_file: check name as a straight path even if it has no '/'
  2012-05-25 12:07 [Qemu-devel] [PATCH] qemu_find_file: check name as a straight path even if it has no '/' Peter Maydell
  2012-05-25 12:21 ` Andreas Färber
@ 2012-06-19 15:13 ` Peter Maydell
       [not found]   ` <CAFEAcA9KHcJjrK7pzTd7Pexi1Sq46V1DOosoGPS4XxiF2si-yQ@mail.gmail.com>
  1 sibling, 1 reply; 5+ messages in thread
From: Peter Maydell @ 2012-06-19 15:13 UTC (permalink / raw)
  To: qemu-devel; +Cc: Anthony Liguori, patches

Ping? (patch still applies cleanly to current master; patchwork URL
http://patchwork.ozlabs.org/patch/161324/ )

-- PMM

On 25 May 2012 13:07, Peter Maydell <peter.maydell@linaro.org> wrote:
> Make qemu_find_file() check for the passed in name as a straight
> pathname even if it doesn't have any path separator character in it.
> This means that "-bios foo", "-dtb foo" etc will find a file 'foo'
> in the current directory.
> This removes an inconsistency with -kernel and -initrd, which both
> accept plain filenames as meaning files in the current directory.
> It's also less confusing for the user than an undocumented restriction
> that "this option accepts a filename, except for the special case
> where the filename you pass happens not to have a '/' in it, in
> which case we'll ignore it."
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
>  vl.c |    5 ++---
>  1 files changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/vl.c b/vl.c
> index 23ab3a3..4639526 100644
> --- a/vl.c
> +++ b/vl.c
> @@ -1801,9 +1801,8 @@ char *qemu_find_file(int type, const char *name)
>     const char *subdir;
>     char *buf;
>
> -    /* If name contains path separators then try it as a straight path.  */
> -    if ((strchr(name, '/') || strchr(name, '\\'))
> -        && access(name, R_OK) == 0) {
> +    /* Try the name as a straight path first */
> +    if (access(name, R_OK) == 0) {
>         return g_strdup(name);
>     }
>     switch (type) {
> --
> 1.7.1

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] qemu_find_file: check name as a straight path even if it has no '/'
       [not found]   ` <CAFEAcA9KHcJjrK7pzTd7Pexi1Sq46V1DOosoGPS4XxiF2si-yQ@mail.gmail.com>
@ 2012-07-10 14:18     ` Peter Maydell
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Maydell @ 2012-07-10 14:18 UTC (permalink / raw)
  To: qemu-devel; +Cc: Anthony Liguori, patches

Ping^3? This patch has been on the list over six weeks now...

-- PMM

On 28 June 2012 12:23, Peter Maydell <peter.maydell@linaro.org> wrote:
> Ping^2?
>
> -- PMM
>
> On 19 June 2012 16:13, Peter Maydell <peter.maydell@linaro.org> wrote:
>> Ping? (patch still applies cleanly to current master; patchwork URL
>> http://patchwork.ozlabs.org/patch/161324/ )
>>
>> -- PMM
>>
>> On 25 May 2012 13:07, Peter Maydell <peter.maydell@linaro.org> wrote:
>>> Make qemu_find_file() check for the passed in name as a straight
>>> pathname even if it doesn't have any path separator character in it.
>>> This means that "-bios foo", "-dtb foo" etc will find a file 'foo'
>>> in the current directory.
>>> This removes an inconsistency with -kernel and -initrd, which both
>>> accept plain filenames as meaning files in the current directory.
>>> It's also less confusing for the user than an undocumented restriction
>>> that "this option accepts a filename, except for the special case
>>> where the filename you pass happens not to have a '/' in it, in
>>> which case we'll ignore it."
>>>
>>> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
>>> ---
>>>  vl.c |    5 ++---
>>>  1 files changed, 2 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/vl.c b/vl.c
>>> index 23ab3a3..4639526 100644
>>> --- a/vl.c
>>> +++ b/vl.c
>>> @@ -1801,9 +1801,8 @@ char *qemu_find_file(int type, const char *name)
>>>     const char *subdir;
>>>     char *buf;
>>>
>>> -    /* If name contains path separators then try it as a straight path.  */
>>> -    if ((strchr(name, '/') || strchr(name, '\\'))
>>> -        && access(name, R_OK) == 0) {
>>> +    /* Try the name as a straight path first */
>>> +    if (access(name, R_OK) == 0) {
>>>         return g_strdup(name);
>>>     }
>>>     switch (type) {
>>> --
>>> 1.7.1

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-07-10 14:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-25 12:07 [Qemu-devel] [PATCH] qemu_find_file: check name as a straight path even if it has no '/' Peter Maydell
2012-05-25 12:21 ` Andreas Färber
2012-05-25 12:23   ` Edgar E. Iglesias
2012-06-19 15:13 ` Peter Maydell
     [not found]   ` <CAFEAcA9KHcJjrK7pzTd7Pexi1Sq46V1DOosoGPS4XxiF2si-yQ@mail.gmail.com>
2012-07-10 14:18     ` Peter Maydell

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.