From: Henning Schild <henning.schild@siemens.com>
To: <isar-users@googlegroups.com>
Subject: Re: [PATCH] lib/oe/path: try hardlinking instead of guessing when it might fail
Date: Tue, 18 Feb 2020 20:24:52 +0100 [thread overview]
Message-ID: <20200218202452.728ac7b4@md1za8fc.ad001.siemens.net> (raw)
In-Reply-To: <20200124145100.3188783f@md1za8fc.ad001.siemens.net>
Merged upstream as f5571bda8327f927feb23b167ab4594b7d0c95bc
Henning
On Fri, 24 Jan 2020 14:51:00 +0100
"[ext] Henning Schild" <henning.schild@siemens.com> wrote:
> This is related to fixing an issue with "--exclude-path" in wic. On
> the Isar side i have everything in place and might send it. But we
> need that upstream fix ... or some workaround if that does not get
> merged.
>
> Henning
>
> On Fri, 24 Jan 2020 14:48:47 +0100
> Henning Schild <henning.schild@siemens.com> wrote:
>
> > From: Henning Schild <henning.schild@siemens.com>
> >
> > The comparison of the stat st_dev is not enough to judge whether
> > hardlinking will work. One example would be where you try and
> > hardlink across two bind-mounts of a directory. The st_dev will be
> > the same and the operation will still fail.
> >
> > Instead of implementing a check to try and figure out hardlink
> > support just try hardlinking and fall back to a copy when running
> > into an exception.
> >
> > Signed-off-by: Henning Schild <henning.schild@siemens.com>
> > ---
> > meta/lib/oe/path.py | 24 ++++++++++++++++++------
> > 1 file changed, 18 insertions(+), 6 deletions(-)
> >
> > diff --git a/meta/lib/oe/path.py b/meta/lib/oe/path.py
> > index fa209b9795..082972457b 100644
> > --- a/meta/lib/oe/path.py
> > +++ b/meta/lib/oe/path.py
> > @@ -99,7 +99,22 @@ def copyhardlinktree(src, dst):
> > if os.path.isdir(src) and not len(os.listdir(src)):
> > return
> >
> > - if (os.stat(src).st_dev == os.stat(dst).st_dev):
> > + canhard = False
> > + testfile = None
> > + for root, dirs, files in os.walk(src):
> > + if len(files):
> > + testfile = os.path.join(root, files[0])
> > + break
> > +
> > + if testfile is not None:
> > + try:
> > + os.link(testfile, os.path.join(dst, 'testfile'))
> > + os.unlink(os.path.join(dst, 'testfile'))
> > + canhard = True
> > + except Exception as e:
> > + bb.debug(2, "Hardlink test failed with " + str(e))
> > +
> > + if (canhard):
> > # Need to copy directories only with tar first since cp
> > will error if two # writers try and create a directory at the same
> > time cmd = "cd %s; find . -type d -print | tar --xattrs
> > --xattrs-include='*' -cf - -S -C %s -p --no-recursion --files-from -
> > | tar --xattrs --xattrs-include='*' -xhf - -C %s" % (src, src, dst)
> > @@ -121,12 +136,9 @@ def copyhardlinktree(src, dst): def
> > copyhardlink(src, dst): """Make a hard link when possible, otherwise
> > copy."""
> > - # We need to stat the destination directory as the destination
> > file probably
> > - # doesn't exist yet.
> > - dstdir = os.path.dirname(dst)
> > - if os.stat(src).st_dev == os.stat(dstdir).st_dev:
> > + try:
> > os.link(src, dst)
> > - else:
> > + except OSError:
> > shutil.copy(src, dst)
> >
> > def remove(path, recurse=True):
>
next prev parent reply other threads:[~2020-02-18 19:24 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-24 13:48 Henning Schild
2020-01-24 13:51 ` Henning Schild
2020-02-18 19:24 ` Henning Schild [this message]
2020-04-05 16:58 ` Baurzhan Ismagulov
2020-04-06 7:42 ` Henning Schild
2020-04-06 7:51 ` Jan Kiszka
2020-04-06 10:03 ` Henning Schild
2020-04-06 20:20 ` Henning Schild
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=20200218202452.728ac7b4@md1za8fc.ad001.siemens.net \
--to=henning.schild@siemens.com \
--cc=isar-users@googlegroups.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox