From owner-freebsd-hackers@FreeBSD.ORG Tue Oct 1 19:42:58 2013 Return-Path: Delivered-To: freebsd-hackers@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 6553BD5D; Tue, 1 Oct 2013 19:42:58 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 4E0F92415; Tue, 1 Oct 2013 19:42:57 +0000 (UTC) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id WAA27700; Tue, 01 Oct 2013 22:42:32 +0300 (EEST) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1VR5q3-000Flz-HK; Tue, 01 Oct 2013 22:42:31 +0300 Message-ID: <524B2555.7030408@FreeBSD.org> Date: Tue, 01 Oct 2013 22:41:09 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.0 MIME-Version: 1.0 To: Alexey Dokuchaev Subject: Re: what's going on after upgrade to svn-latest 9. References: <20131001192955.GA27965@FreeBSD.org> In-Reply-To: <20131001192955.GA27965@FreeBSD.org> X-Enigmail-Version: 1.5.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-hackers@FreeBSD.org, Konstantin Belousov , Wojciech Puchar X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Oct 2013 19:42:58 -0000 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