From owner-freebsd-fs@freebsd.org Sun Jan 13 21:19:33 2019 Return-Path: Delivered-To: freebsd-fs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 23F7A1488F14 for ; Sun, 13 Jan 2019 21:19:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id AF03892322 for ; Sun, 13 Jan 2019 21:19:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 700FA1488F13; Sun, 13 Jan 2019 21:19:32 +0000 (UTC) Delivered-To: fs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4D6FB1488F11 for ; Sun, 13 Jan 2019 21:19:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DAEFD92320 for ; Sun, 13 Jan 2019 21:19:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 09E62A374 for ; Sun, 13 Jan 2019 21:19:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x0DLJUQi094851 for ; Sun, 13 Jan 2019 21:19:30 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x0DLJUSw094844 for fs@FreeBSD.org; Sun, 13 Jan 2019 21:19:30 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: fs@FreeBSD.org Subject: [Bug 234906] kernel panic: softdep_setup_inomapdep: dependency 0xfffff80107d15c00 for newinode already exists Date: Sun, 13 Jan 2019 21:19:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 12.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: johanvz816@giantfoo.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: fs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jan 2019 21:19:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D234906 --- Comment #13 from johan van Zanten --- regarding the memory testing: =3D memtest86+ -- my laptop can't boot the ISO image on a USB stick ; maybe= a UEFI compat problem. I installed the memtest86+ package and tried to boot = from the FreeBSD menu (unload ; load /boot/opt/memtest86+). As soon as i hit return, i get a black screen, and then the machine immediately reboots with= out doing any work. =3D memtester -- i ran three instances concurrently to test 6.83 GB of the = 8 GB of RAM (any more RAM and the OS started paging). After four loops, no erro= rs were found. Given that i wasn't have any problems using this same config as a desktop running FreeBSD 10 or 11, with the same sort of workload, it seems less lik= ely that RAM is the problem. Lines 11214 to 11234 from /usr/src/sys/ufs/ffs/ffs_softdep.c: /* * If we have reached the end of the current list without * finding the just finished dependency, then it must be * on the future dependency list. Future dependencies cannot * be freed until they are moved to the current list. */ if (listadp =3D=3D NULL) { #ifdef DEBUG if (adp->ad_state & EXTDATA) listhead =3D &inodedep->id_newextupdt; else listhead =3D &inodedep->id_newinoupdt; TAILQ_FOREACH(listadp, listhead, ad_next) /* found our block */ if (listadp =3D=3D adp) break; if (listadp =3D=3D NULL) panic("handle_allocdirect_partdone: lost dep"); #endif /* DEBUG */ return; } --- That matches the panic sting from Wed Jan 9 23:41:29 CET 2019, but assuming that's where the system is panicking, one still needs to find out how the system is arriving in that state. --=20 You are receiving this mail because: You are the assignee for the bug.=