guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: GNU Guix 1.2.0rc1 available for testing!


From: Ludovic Courtès
Subject: Re: GNU Guix 1.2.0rc1 available for testing!
Date: Tue, 17 Nov 2020 10:30:24 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux)

Hi Mathieu,

Mathieu Othacehe <othacehe@gnu.org> skribis:

> From 6fec27303d0f8767ed48c507af67908a0fcf17a0 Mon Sep 17 00:00:00 2001
> From: Mathieu Othacehe <othacehe@gnu.org>
> Date: Mon, 16 Nov 2020 10:10:56 +0100
> Subject: [PATCH] Increase device use delay.
>
> ---
>  gnu/installer/parted.scm | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/gnu/installer/parted.scm b/gnu/installer/parted.scm
> index f2352c5779..ed3af6af85 100644
> --- a/gnu/installer/parted.scm
> +++ b/gnu/installer/parted.scm
> @@ -318,7 +318,7 @@ PARTED-OBJECT field equals PARTITION, return #f if not 
> found."
>  fail. See rereadpt function in wipefs.c of util-linux for an explanation."
>    ;; Kernel always return EINVAL for BLKRRPART on loopdevices.
>    (and (not (string-match "/dev/loop*" file-name))
> -       (let loop ((try 4))
> +       (let loop ((try 16))
>           (usleep 250000)
>           (let ((in-use? (device-in-use? file-name)))
>             (if (and in-use? (> try 0))

Should we go ahead and apply this one?  Not polling would be nicer, but
maybe there’s no real way to do that?

BTW:

  (string-match "/dev/loop*" file-name)

should almost certainly be:

  (string-prefix? "/dev/loop" file-name)

The regexp above would match “/dev/loo”, “qux/dev/looppppppppabc”, etc.

WDYT?

Thanks,
Ludo’.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]