On Tuesday, July 11, 2017 11:08:15 PM Peter Wemm wrote:
> On Wednesday, June 28, 2017 01:59:20 PM Andriy Gapon wrote:
> > A side bonus of this change is that now a vdev zio has a pointer
> > to its corresponding bio while the zio is active.
> fault virtual address = 0x28
>
> db> where
> Tr
On Wednesday, June 28, 2017 01:59:20 PM Andriy Gapon wrote:
> A side bonus of this change is that now a vdev zio has a pointer
> to its corresponding bio while the zio is active.
> @@ -1094,6 +1088,15 @@ sendreq:
> static void
> vdev_geom_io_done(zio_t *zio)
> {
> + struct bio *bp = zi
Author: ian
Date: Wed Jul 12 02:53:54 2017
New Revision: 320902
URL: https://svnweb.freebsd.org/changeset/base/320902
Log:
Support multiple realtime clocks, and remove locking/sleeping restrictions
on clock drivers.
This tracks multiple concurrent realtime clock drivers in a list sorted b
Author: ian
Date: Wed Jul 12 02:42:57 2017
New Revision: 320901
URL: https://svnweb.freebsd.org/changeset/base/320901
Log:
Protect access to the AT realtime clock with its own mutex.
The mutex protecting access to the registered realtime clock should not be
overloaded to protect access to
Author: jhb
Date: Tue Jul 11 21:55:20 2017
New Revision: 320900
URL: https://svnweb.freebsd.org/changeset/base/320900
Log:
Consistently use vop_stdpathconf() for default pathconf values.
Update filesystems not currently using vop_stdpathconf() in pathconf
VOPs to use vop_stdpathconf() for
On Tuesday, July 11, 2017 02:35:15 PM Ian Lepore wrote:
> I think the docs on this are pretty clear... under -u it says:
>
> The set of options is determined by applying the options specified
> in the argument to -o and finally applying the -r or -w option.
>
> To me, that says that nothi
On Tue, 2017-07-11 at 21:12 +0100, Edward Tomasz Napierala wrote:
> On 0708T1034, Rodney W. Grimes wrote:
> >
> > [ Charset ISO-8859-1 unsupported, converting... ]
> > >
> > > On 0708T1102, Ian Lepore wrote:
> > > >
> > > > On Sat, 2017-07-08 at 09:50 -0700, Rodney W. Grimes wrote:
> > > > >
>
On 0708T1034, Rodney W. Grimes wrote:
> [ Charset ISO-8859-1 unsupported, converting... ]
> > On 0708T1102, Ian Lepore wrote:
> > > On Sat, 2017-07-08 at 09:50 -0700, Rodney W. Grimes wrote:
> > > > [ Charset UTF-8 unsupported, converting... ]
> > > > >
> > > > > Author: trasz
> > > > > Date: Sat
Am Mon, 10 Jul 2017 14:05:58 -0600
Warner Losh schrieb:
> On Mon, Jul 10, 2017 at 10:21 AM, O. Hartmann
> wrote:
>
> > Am Sun, 9 Jul 2017 20:42:21 +0200
> > Marius Strobl schrieb:
> >
> > > On Sun, Jul 09, 2017 at 04:57:24PM +, Warner Losh wrote:
> > > > Author: imp
> > > > Date: Sun J
So the answer is "magic!" ;-)
Fair enough; I'll RTFSource if I'm still sufficiently curious tomorrow. :-)
Thanks again,
Ravi (rpokala@)
-Original Message-
From: on behalf of Edward Napierala
Date: 2017-07-11, Tuesday at 11:46
To: Ravi Pokala
Cc: "src-committ...@freebsd.org" ,
"svn-
2017-07-11 18:02 GMT+01:00 Rodney W. Grimes
:
> [ Charset UTF-8 unsupported, converting... ]
> > Author: trasz
> > Date: Tue Jul 11 12:32:40 2017
> > New Revision: 320892
> > URL: https://svnweb.freebsd.org/changeset/base/320892
> >
> > Log:
> > Make fsck_y_enable default to passing pass -R to
Well, fsck(8) is a bit weird.
Assuming you don't have /dev/md0 in your fstab(5):
[trasz@v2:~]% fsck -d -t ffs -T ufs:-R /dev/md0
start (null) wait fsck_ffs /dev/md0
[trasz@v2:~]% fsck -d -t ufs -T ufs:-R /dev/md0
start (null) wait fsck_ufs -R /dev/md0
However (/ is defined as ufs in my fstab(5))
Author: markj
Date: Tue Jul 11 18:24:05 2017
New Revision: 320896
URL: https://svnweb.freebsd.org/changeset/base/320896
Log:
Add a subroutine for comparing kerneldump identifiers.
MFC after:2 weeks
Modified:
head/sbin/savecore/savecore.c
Modified: head/sbin/savecore/savecore.c
=
Author: markj
Date: Tue Jul 11 17:59:15 2017
New Revision: 320895
URL: https://svnweb.freebsd.org/changeset/base/320895
Log:
Don't dlclose NSS modules from nss_atexit().
As hinted in the commit log message for r259042, this is unnecessary.
Moreover, as a result of that change we may invok
[ Charset UTF-8 unsupported, converting... ]
> Author: trasz
> Date: Tue Jul 11 12:32:40 2017
> New Revision: 320892
> URL: https://svnweb.freebsd.org/changeset/base/320892
>
> Log:
> Make fsck_y_enable default to passing pass -R to fsck_ffs(8) in addition
> to -y. To me, fsck_y_enable means
Author: andrew
Date: Tue Jul 11 16:30:16 2017
New Revision: 320894
URL: https://svnweb.freebsd.org/changeset/base/320894
Log:
Add external PLATFORM access on arm, and use it in the pl310 driver.
This allows multiple instances of SoCs that use the pl310 driver to be
built within the same k
I appreciate the spirit of this change; thanks Trasz!
A question though: you're telling the generic `fsck' to pass "-R" to either
`fsck_ffs' or `fsck_ufs', as needed. But those are both names for the same
executable. Won't the generic `fsck' always end up invoking (per
sbin/fsck/fsck.c::ptype_m
Author: kib
Date: Tue Jul 11 12:35:44 2017
New Revision: 320893
URL: https://svnweb.freebsd.org/changeset/base/320893
Log:
Fix BIT_FLS().
The iteration index is unsigned, so testing for larger than or equal
to zero makes little sense.
Submitted by: Sebastian Huber
MFC after:3
Author: trasz
Date: Tue Jul 11 12:32:40 2017
New Revision: 320892
URL: https://svnweb.freebsd.org/changeset/base/320892
Log:
Make fsck_y_enable default to passing pass -R to fsck_ffs(8) in addition
to -y. To me, fsck_y_enable means "try as hard as possible", and without
-R, it... well, does
19 matches
Mail list logo