* [PATCH 2/2] Don't ignore EBUSY in losetup when the loop device is given
@ 2014-05-27 18:38 Stanislav Brabec
2014-05-28 7:19 ` Karel Zak
0 siblings, 1 reply; 2+ messages in thread
From: Stanislav Brabec @ 2014-05-27 18:38 UTC (permalink / raw)
To: util-linux; +Cc: Takashi Iwai
losetup ignores the EBUSY error. In the loop fo A_CREATE action, it skips
the error handling when errno = EBUSY. It's OK for the case where no loop
device is specified, but the error has to be handled when the device is given
explicitly.
Author: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Stanislav Brabec <sbrabec@suse.cz>
---
sys-utils/losetup.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-utils/losetup.c b/sys-utils/losetup.c
index f6b8685..ecba8a5 100644
--- a/sys-utils/losetup.c
+++ b/sys-utils/losetup.c
@@ -662,7 +662,7 @@ int main(int argc, char **argv)
res = loopcxt_setup_device(&lc);
if (res == 0)
break; /* success */
- if (errno == EBUSY)
+ if (errno == EBUSY && !hasdev)
continue;
/* errors */
--
1.8.4.5
--
Best Regards / S pozdravem,
Stanislav Brabec
software developer
---------------------------------------------------------------------
SUSE LINUX, s. r. o. e-mail: sbrabec@suse.cz
Lihovarská 1060/12 tel: +49 911 7405384547
190 00 Praha 9 fax: +420 284 084 001
Czech Republic http://www.suse.cz/
PGP: 830B 40D5 9E05 35D8 5E27 6FA3 717C 209F A04F CD76
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 2/2] Don't ignore EBUSY in losetup when the loop device is given
2014-05-27 18:38 [PATCH 2/2] Don't ignore EBUSY in losetup when the loop device is given Stanislav Brabec
@ 2014-05-28 7:19 ` Karel Zak
0 siblings, 0 replies; 2+ messages in thread
From: Karel Zak @ 2014-05-28 7:19 UTC (permalink / raw)
To: Stanislav Brabec; +Cc: util-linux, Takashi Iwai
On Tue, May 27, 2014 at 08:38:17PM +0200, Stanislav Brabec wrote:
> sys-utils/losetup.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Applied, thanks.
--
Karel Zak <kzak@redhat.com>
http://karelzak.blogspot.com
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-05-28 7:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-27 18:38 [PATCH 2/2] Don't ignore EBUSY in losetup when the loop device is given Stanislav Brabec
2014-05-28 7:19 ` Karel Zak
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).