Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Sep 2017 07:34:08 +0000 (UTC)
From:      Toomas Soome <tsoome@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r323906 - head/sys/boot/efi/libefi
Message-ID:  <201709220734.v8M7Y8xi005178@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tsoome
Date: Fri Sep 22 07:34:08 2017
New Revision: 323906
URL: https://svnweb.freebsd.org/changeset/base/323906

Log:
  libefi: efipart_strategy() should return ENXIO when there is no media
  
  We should return ENXIO to indicate the situation with device present,
  but no media.

Modified:
  head/sys/boot/efi/libefi/efipart.c

Modified: head/sys/boot/efi/libefi/efipart.c
==============================================================================
--- head/sys/boot/efi/libefi/efipart.c	Fri Sep 22 07:29:26 2017	(r323905)
+++ head/sys/boot/efi/libefi/efipart.c	Fri Sep 22 07:34:08 2017	(r323906)
@@ -857,7 +857,7 @@ efipart_strategy(void *devdata, int rw, daddr_t blk, s
 
 	if (pd->pd_blkio->Media->RemovableMedia &&
 	    !pd->pd_blkio->Media->MediaPresent)
-		return (EIO);
+		return (ENXIO);
 
 	bcd.dv_strategy = efipart_realstrategy;
 	bcd.dv_devdata = devdata;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709220734.v8M7Y8xi005178>