Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 30 Aug 2005 16:47:54 +0000
From:      "Christian S.J. Peron" <csjp@FreeBSD.org>
To:        Dario Freni <saturnero@freesbie.org>
Cc:        freebsd-current@FreeBSD.org, pjd@FreeBSD.org
Subject:   Re: mdconfig recently broken?
Message-ID:  <20050830164754.GA53629@freefall.freebsd.org>
In-Reply-To: <43139AC9.50705@freesbie.org>
References:  <20050829205638.GA2458@freefall.freebsd.org> <20050829214131.GA2855@freefall.freebsd.org> <43139AC9.50705@freesbie.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Tue, Aug 30, 2005 at 01:31:21AM +0200, Dario Freni wrote:
> 
> -o readonly seems to help:
> 
> # mdconfig -a -t vnode -f usr.uzip
> mdconfig: ioctl(/dev/mdctl): Read-only file system
> # mdconfig -a -t vnode -o readonly -f usr.uzip
> md0
> 
> Anyway, imho, the readonly option should be automatically set if the
> backing store is readonly. Otherwise, this behaviour should be well
> documented in mdconfig(8) and/or md(4).
> 

Fixed in revision 1.44 of mdconfig(8)

I have included the commit log for your reference:

When using files as backing stores for devices, and the user has requested the
device be created read+write, check to see if the backing store is read only
through the use of the access(2) system call. If this check fails returning
EACCES, EPERM or EROFS then gracefully downgrade the access to read only. Also
print a warning message to stderr, informing the user that the access mode
they requested is not available.

This behavior used to be handled by md(4) but was changed in revision 1.154

Discussed with:	pjd, phk, Dario Freni <saturnero at freesbie dot org>
Reviewed by:	phk

-- 
Christian S.J. Peron
csjp@FreeBSD.ORG
FreeBSD Committer



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