All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andrei Borzenkov <arvidjaar@gmail.com>
To: Kris Moore <kris@pcbsd.org>
Cc: grub-devel@gnu.org
Subject: Re: Patch to fix kldstat(2) / dtrace when booting FreeBSD
Date: Sun, 11 Jan 2015 21:27:44 +0300	[thread overview]
Message-ID: <20150111212748.153e7951@opensuse.site> (raw)
In-Reply-To: <54B0025E.4020407@pcbsd.org>

В Fri, 09 Jan 2015 11:31:26 -0500
Kris Moore <kris@pcbsd.org> пишет:

> 
> The following patch fixes an important issue when booting FreeBSD.
> FreeBSD's kldstat(2) function expects that the full pathname will be
> provided to kernel / modules. The current GRUB was striping this out and
> only leaving the filename itself. This broke dtrace and other things
> which used the full pathname to locate the kernel or modules on disk.
> 
> The attached patch fixes this behavior.
> 

> diff --git a/grub-core/loader/i386/bsd.c b/grub-core/loader/i386/bsd.c
> index 8f691e0..fb47969 100644
> --- a/grub-core/loader/i386/bsd.c
> +++ b/grub-core/loader/i386/bsd.c
> @@ -415,11 +415,15 @@ grub_freebsd_add_meta_module (const char *filename, const char *type,
>  			      grub_addr_t addr, grub_uint32_t size)
>  {
>    const char *name;
> -  name = grub_strrchr (filename, '/');
> + /* Don't strip the full path, some FreeBSD functionality, such
> +  * as kldstat(2) / dtrace, rely on this. Instead we only need to remove
> +  * any ZFS dataset information first. */
> +  name = grub_strrchr (filename, '@');

What if filename itself contains '@'? Is it possible?

>    if (name)
>      name++;
>    else
>      name = filename;
> +

Please, could we avoid unrelated formatting changes?

>    if (grub_strcmp (type, "/boot/zfs/zpool.cache") == 0)
>      name = "/boot/zfs/zpool.cache";
>  


  reply	other threads:[~2015-01-11 18:27 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-09 16:31 Patch to fix kldstat(2) / dtrace when booting FreeBSD Kris Moore
2015-01-11 18:27 ` Andrei Borzenkov [this message]
2015-01-12 16:11   ` Kris Moore
2015-01-22 19:12     ` Vladimir 'φ-coder/phcoder' Serbinenko

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=20150111212748.153e7951@opensuse.site \
    --to=arvidjaar@gmail.com \
    --cc=grub-devel@gnu.org \
    --cc=kris@pcbsd.org \
    /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.