Date: Tue, 01 Oct 2013 22:41:09 +0300 From: Andriy Gapon <avg@FreeBSD.org> To: Alexey Dokuchaev <danfe@FreeBSD.org> Cc: freebsd-hackers@FreeBSD.org, Konstantin Belousov <kib@FreeBSD.org>, Wojciech Puchar <wojtek@wojtek.tensor.gdynia.pl> Subject: Re: what's going on after upgrade to svn-latest 9. Message-ID: <524B2555.7030408@FreeBSD.org> In-Reply-To: <20131001192955.GA27965@FreeBSD.org> References: <alpine.BSF.2.00.1306211315570.1405@wojtek.tensor.gdynia.pl> <20131001192955.GA27965@FreeBSD.org>
next in thread | previous in thread | raw e-mail | index | archive | help
on 01/10/2013 22:29 Alexey Dokuchaev said the following: > On Fri, Jun 21, 2013 at 01:17:31PM +0200, Wojciech Puchar wrote: >> i'm getting this on my computer. >> disk seems OK, smart shows nothing, dd reads whole partition without >> problem. >> >> no other errors from disk itself (AHCI timeout or so). >> >> started exactly after i rebooted with new kernel. everything >> unchanged. userland is in sync >> >> thanks for help >> >> g_vfs_done():ada0s3d.eli[WRITE(offset=30653186048, >> length=1048576)]error = 11 > > i've just tried recent 10.0-alpha4 on my laptop (normally running 8-stable) > and start to see this shit as well. smart does not report anything wrong > with my disks, and 8-stable never yielded anything like these messages, so > it looks like some kind of false alarm. any clues? > It looks like the error comes from unmapped I/O code in GEOM and is caused by KVA shortage: if (vmem_alloc(transient_arena, size, M_BESTFIT | M_NOWAIT, &addr)) { if (transient_map_retries != 0 && retried >= transient_map_retries) { g_io_deliver(bp, EDEADLK/* XXXKIB */); You could try to experiment with kern.geom.transient_map_retries -- Andriy Gapon
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?524B2555.7030408>