From nobody Thu Mar 23 11:56:07 2023 X-Original-To: freebsd-fs@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Pj3hc48gLz41FjD for ; Thu, 23 Mar 2023 11:56:16 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4Pj3hb0dzjz4GWW for ; Thu, 23 Mar 2023 11:56:14 +0000 (UTC) (envelope-from kostikbel@gmail.com) Authentication-Results: mx1.freebsd.org; dkim=none; spf=softfail (mx1.freebsd.org: 2001:470:d5e7:1::1 is neither permitted nor denied by domain of kostikbel@gmail.com) smtp.mailfrom=kostikbel@gmail.com; dmarc=fail reason="No valid SPF, No valid DKIM" header.from=gmail.com (policy=none) Received: from tom.home (kib@localhost [127.0.0.1]) by kib.kiev.ua (8.17.1/8.17.1) with ESMTPS id 32NBu852095009 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NO); Thu, 23 Mar 2023 13:56:11 +0200 (EET) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua 32NBu852095009 Received: (from kostik@localhost) by tom.home (8.17.1/8.17.1/Submit) id 32NBu7N3095008; Thu, 23 Mar 2023 13:56:07 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Thu, 23 Mar 2023 13:56:07 +0200 From: Konstantin Belousov To: Alexander Lochmann Cc: freebsd-fs@freebsd.org Subject: Re: Understanding locking for buf Message-ID: References: <1743b9f5-69be-b775-fb57-92b8115d4a81@tu-dortmund.de> <6b1181f7-a58f-8d71-a05e-2dcb0a66ae4c@tu-dortmund.de> <2c5e6f8d-037b-9bfe-bdad-4a367bdbc65d@tu-dortmund.de> List-Id: Filesystems List-Archive: https://lists.freebsd.org/archives/freebsd-fs List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-fs@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Spam-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FORGED_GMAIL_RCVD,FREEMAIL_FROM, NML_ADSP_CUSTOM_MED autolearn=no autolearn_force=no version=4.0.0 X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-14) on tom.home X-Spamd-Result: default: False [-1.18 / 15.00]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_SPAM_SHORT(0.82)[0.816]; MIME_GOOD(-0.10)[text/plain]; DMARC_POLICY_SOFTFAIL(0.10)[gmail.com : No valid SPF, No valid DKIM,none]; FREEMAIL_FROM(0.00)[gmail.com]; FROM_EQ_ENVFROM(0.00)[]; MLMMJ_DEST(0.00)[freebsd-fs@freebsd.org]; RCPT_COUNT_TWO(0.00)[2]; R_DKIM_NA(0.00)[]; ASN(0.00)[asn:6939, ipnet:2001:470::/32, country:US]; FREEMAIL_ENVFROM(0.00)[gmail.com]; TO_DN_SOME(0.00)[]; TO_MATCH_ENVRCPT_SOME(0.00)[]; MIME_TRACE(0.00)[0:+]; FROM_HAS_DN(0.00)[]; RCVD_COUNT_THREE(0.00)[3]; ARC_NA(0.00)[]; R_SPF_SOFTFAIL(0.00)[~all]; HAS_XAW(0.00)[]; RCVD_TLS_LAST(0.00)[] X-Rspamd-Queue-Id: 4Pj3hb0dzjz4GWW X-Spamd-Bar: - X-ThisMailContainsUnwantedMimeParts: N On Tue, Mar 21, 2023 at 02:54:35PM +0100, Alexander Lochmann wrote: > > > On 20.03.23 19:07, Konstantin Belousov wrote: > > On Mon, Mar 20, 2023 at 11:25:30AM +0100, Alexander Lochmann wrote: > > > > > > > > > On 16.03.23 12:24, Konstantin Belousov wrote: > > > > > Is the following correct? > > > > > The aforementioned accesses by 100033 in g_vfs_done() are no violations with > > > > > respect to the locking rule because from a global perspective the buf is > > > > > locked. It is the only concurrent access at that moment. > > > > I would formulate it differently: > > > > No other thread might legitimately get access to the buffer using > > > > either bread() or getblk() until current io operation finishes. > > > > The io operation is handled in two contexts: top-level, where a thread > > > > used getblk() as usual to claim buffer ownership, and completion > > > > thread context (geom up thread). The completion code legitimately > > > > manipulates the buffer, because the top-level code expects that after > > > > the buffer strategy routine is called, effectively moving the ownership > > > > to the geom up thread. > > > Thx. But the top-level thread, using getblk(), legitimately releases the > > > lock. Am I right? > > No. It does not, please re-read what I wrote. > Yeah, but that's what I meant a few mails ago. > The lock is acquired *and* released by the top-level thread. Although some > accesses happen from the geom thread. Sometimes yes, the buffer lifecycle is managed in the way you demonstrated below. I do not understand the goal of this conversation. Can you formulate what you are trying to achieve, please? > > (The numbers are the logged thread ids.) > In our log, I see the following: > - Kernel tries to mount the rootfs via readsuper(). The thread id is 100002. > - 100002 allocates an instance of struct buf. > - The b_lock is acquired by 100002 in buf_alloc(). > - Various accesses to buf by 100002. > - Various accesses to buf by 100033 during g_vfs_done(). > - Again various accesses to buf by 100002. > - The instances is unlocked and freed by 100002. (readsuper() -> > ffs_use_bread() -> brelse() -> buf_free()[ -> BUF_UNLOCK()]) From nobody Sun Mar 26 21:01:37 2023 X-Original-To: fs@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Pl7fT673Hz418Tq for ; Sun, 26 Mar 2023 21:01:37 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Pl7fT2Bzjz4Ctl for ; Sun, 26 Mar 2023 21:01:37 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1679864497; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=a5PJAZr2jgtaG4wCNH4y15MRkKpAIy5naV7hPkN9z/A=; b=SgGSB22lXRaP5fNocVsQoG4FOHSJ+/KJo72UOZrqOqBdC9JeE+iuBteWCZw8eaQuZtxK24 l5/mEn9iWETwmFLH0fUK5rbd6XVi7VVh1oSGonhSTjXA/phxQpgtl70O3hAwyJT1j9J1Ot W52/rJkE1TKpUznsVyIewLrdu3/dAiqwbpAiuMmTb4QfO/bQENdpXz1o7VyxTjDzQcSKCd twy2+DTLX5GDmhP4UJLB+eYqeRDqh2p4Tm1IaANxLeiQIWiv9aVYgVO6CiPVv7GkDMjryc YdO2xygJKFbAUZGbSB6Y0XpxR0dOSo1QbWNp58ifidcb1v1UNutX65HGTerS+g== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1679864497; a=rsa-sha256; cv=none; b=MxiwaUU4aFB8Btscv4JpF/AaxdUhDUNekfyLuKAlSltH5CSJoVk/YMdYpyd4++LhG/w1I7 sHHTuI1p4K+Go4Lqgm32ChuQmqQgNcOncEEV+4JzJ7D3fhxJTQocxHF2csmTPNLNHBhWt8 TkONJolsZwLioeAmsDKVEC5n+uWZOisvrPdCCu9dv3xs2wmRL+CcselZWUu7M8ZkPjxh7i hODSHFUEANeNZSZKlH9Ei1GZ03sMqGgGNv5lwHr/mXHIZywJ0dqOA2qg1YL2CLQOon+BT1 KnpZJhDavik5vbpeq1Eqx6W8BldzxBwbqU5KNK2i15bNIBP5XdZh9rzP7/V8yQ== Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4Pl7fT1JbxzvYV for ; Sun, 26 Mar 2023 21:01:37 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 32QL1b42028660 for ; Sun, 26 Mar 2023 21:01:37 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 32QL1bGq028659 for fs@FreeBSD.org; Sun, 26 Mar 2023 21:01:37 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <202303262101.32QL1bGq028659@kenobi.freebsd.org> X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@FreeBSD.org using -f From: bugzilla-noreply@FreeBSD.org To: fs@FreeBSD.org Subject: Problem reports for fs@FreeBSD.org that need special attention Date: Sun, 26 Mar 2023 21:01:37 +0000 List-Id: Filesystems List-Archive: https://lists.freebsd.org/archives/freebsd-fs List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-fs@freebsd.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="16798644971.6DB75.22095" Content-Transfer-Encoding: 7bit X-ThisMailContainsUnwantedMimeParts: N --16798644971.6DB75.22095 Date: Sun, 26 Mar 2023 21:01:37 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- Open | 211491 | System hangs after "Uptime" on reboot with ZFS Open | 237067 | ZFS: Crash in vdev_dtl_reassess when using GELI w Open | 240831 | zfs: Panic during snapshot on 12.1-STABLE r352648 Open | 243973 | [zfs] rollback segmentation fault Open | 244656 | zfs: resilver doesn't provide enough information Open | 244692 | gjournal: Does not support TRIM Open | 251035 | ZFS: Allow 64 bit ZFS to support 32 bit ioctls (W Open | 269503 | docs.freebsd.org: default vfs.zfs.arc.meta_limit 8 problems total for which you should take action. --16798644971.6DB75.22095 Date: Sun, 26 Mar 2023 21:01:37 +0000 MIME-Version: 1.0 Content-Type: text/html; charset="UTF-8"
The following is a listing of current problems submitted by FreeBSD users,
which need special attention. These represent problem reports covering
all versions including experimental development code and obsolete releases.

Status      |    Bug Id | Description
------------+-----------+---------------------------------------------------
Open        |    211491 | System hangs after "Uptime" on reboot with ZFS
Open        |    237067 | ZFS: Crash in vdev_dtl_reassess when using GELI w
Open        |    240831 | zfs: Panic during snapshot on 12.1-STABLE r352648
Open        |    243973 | [zfs] rollback segmentation fault
Open        |    244656 | zfs: resilver doesn't provide enough information 
Open        |    244692 | gjournal: Does not support TRIM
Open        |    251035 | ZFS: Allow 64 bit ZFS to support 32 bit ioctls (W
Open        |    269503 | docs.freebsd.org: default vfs.zfs.arc.meta_limit

8 problems total for which you should take action.
--16798644971.6DB75.22095-- From nobody Mon Mar 27 22:25:37 2023 X-Original-To: freebsd-fs@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4PlnXT65vMz4299j for ; Mon, 27 Mar 2023 22:28:41 +0000 (UTC) (envelope-from SRS0=J/ON=7T=quip.cz=000.fbsd@elsa.codelab.cz) Received: from elsa.codelab.cz (elsa.codelab.cz [94.124.105.4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4PlnXS1pQFz3xBx for ; Mon, 27 Mar 2023 22:28:40 +0000 (UTC) (envelope-from SRS0=J/ON=7T=quip.cz=000.fbsd@elsa.codelab.cz) Authentication-Results: mx1.freebsd.org; dkim=none; spf=none (mx1.freebsd.org: domain of "SRS0=J/ON=7T=quip.cz=000.fbsd@elsa.codelab.cz" has no SPF policy when checking 94.124.105.4) smtp.mailfrom="SRS0=J/ON=7T=quip.cz=000.fbsd@elsa.codelab.cz"; dmarc=none Received: from elsa.codelab.cz (localhost [127.0.0.1]) by elsa.codelab.cz (Postfix) with ESMTP id 0A292D794C for ; Tue, 28 Mar 2023 00:28:32 +0200 (CEST) Received: from [192.168.145.50] (ip-89-177-27-225.bb.vodafone.cz [89.177.27.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by elsa.codelab.cz (Postfix) with ESMTPSA id D2584D794D for ; Tue, 28 Mar 2023 00:25:37 +0200 (CEST) Message-ID: <9f29e1d0-b2d1-8e43-0025-45d260cfed67@quip.cz> Date: Tue, 28 Mar 2023 00:25:37 +0200 List-Id: Filesystems List-Archive: https://lists.freebsd.org/archives/freebsd-fs List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-fs@freebsd.org MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:102.0) Gecko/20100101 Thunderbird/102.7.1 To: freebsd-fs@freebsd.org Content-Language: cs-Cestina, en-US From: Miroslav Lachman <000.fbsd@quip.cz> Subject: unknown oid vfs.zfs.scrub_delay & vfs.zfs.resilver_delay Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spamd-Result: default: False [-1.76 / 15.00]; AUTH_NA(1.00)[]; NEURAL_HAM_SHORT(-1.00)[-0.997]; NEURAL_HAM_LONG(-0.99)[-0.988]; NEURAL_HAM_MEDIUM(-0.97)[-0.970]; FORGED_SENDER(0.30)[000.fbsd@quip.cz,SRS0=J/ON=7T=quip.cz=000.fbsd@elsa.codelab.cz]; MIME_GOOD(-0.10)[text/plain]; MLMMJ_DEST(0.00)[freebsd-fs@freebsd.org]; RCVD_TLS_LAST(0.00)[]; R_DKIM_NA(0.00)[]; R_SPF_NA(0.00)[no SPF record]; ASN(0.00)[asn:42000, ipnet:94.124.104.0/21, country:CZ]; MIME_TRACE(0.00)[0:+]; DMARC_NA(0.00)[quip.cz]; RCVD_COUNT_THREE(0.00)[3]; RCPT_COUNT_ONE(0.00)[1]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_NEQ_ENVFROM(0.00)[000.fbsd@quip.cz,SRS0=J/ON=7T=quip.cz=000.fbsd@elsa.codelab.cz]; FROM_HAS_DN(0.00)[]; TO_DN_NONE(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[freebsd-fs@freebsd.org]; MID_RHS_MATCH_FROM(0.00)[] X-Rspamd-Queue-Id: 4PlnXS1pQFz3xBx X-Spamd-Bar: - X-ThisMailContainsUnwantedMimeParts: N We used optimized sysctls for faster scrub and resilver in the past but after upgrade of backup machine to 13.1 the mentioned sysctls no longer exist. Is there any replacement for the vfs.zfs.scrub_delay and vfs.zfs.resilver_delay setting? The original setting was vfs.zfs.scrub_delay=0 #vfs.zfs.top_maxinflight=128 # removed in FreeBSD 12.2 vfs.zfs.resilver_min_time_ms=5000 vfs.zfs.resilver_delay=0 Kind regards Miroslav Lachman From nobody Tue Mar 28 14:43:26 2023 X-Original-To: fs@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4PmC9B1r7cz421h0 for ; Tue, 28 Mar 2023 14:43:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmC996xYbz3Fny for ; Tue, 28 Mar 2023 14:43:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1680014606; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=fg1qBeSmf3pi+zxyyF7jUQedVrosjTctazYL2U/fWK8=; b=XaTDL7kby+53v2hNhBUQ31SxaF3N1iAE5SO1/hVR3zMB9q2hbTaGrryku1kmjRQI2kVEwV REOzTJgecL3W+2vIqO5yW5DtDXOLTcG2oJTtlgBx3qIjKg7x/9Whi6QLuRmmyQmfEV4C0C vBTsWApdBbI1w8xBMeTQpybaoZxzb2JYIyY8Nbvr/AZcOJaVF/i3rGwESpWkSEOwtiQ9+e y1qRoHnKWEswHy0//v3p6C96D5ESzWUI6kgpyZ5DDhWWSRdN2BPTN19zIuqEENIKZuP3W0 /pj5fH+HqAR2SkcR6xqQ/unaWqTL6aitWbOU17qRhwf5sKGTRWg1p5MXjzwnYw== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1680014606; a=rsa-sha256; cv=none; b=crNzOOFwS7cJve9jMH6aXmpSVxyizpI+6DPWcEUds163spb/zwcG2fjIW8SeyntInfk8tf +KUCosqV3YKxyGUY9K0l/Zm7nbXo+SEdAxVjc0dUwOgxn3/9taAILDN+rxRWancvBB3Yj/ bHeTVDZjZdWptv7NcrlDVhPiQs63b+CzgAvLeMAtwz03wGZxPvJMIbSqqHxu2yQIBWAyyF ZGE+inLKkjC5PE0GVATZ2+xthBpA4005P+WksrNT09uWCjUKsbQYy2T+i3b6VgrKzapPdm rWVr5JkmCyKfCbOAAyF7pURv3qd4QUukoB3YI4vChKgYMRx+8WPFv5jgCr4w2g== Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4PmC9961Dcz17Xw for ; Tue, 28 Mar 2023 14:43:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 32SEhPjS082683 for ; Tue, 28 Mar 2023 14:43:25 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 32SEhP3i082682 for fs@FreeBSD.org; Tue, 28 Mar 2023 14:43:25 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 267028] kernel panics when booting with both (zfs,ko or vboxnetflt,ko or acpi_wmi.ko) and amdgpu.ko Date: Tue, 28 Mar 2023 14:43:26 +0000 X-Bugzilla-Reason: AssignedTo CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 13.1-RELEASE X-Bugzilla-Keywords: crash, needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: george@m5p.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: fs@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? maintainer-feedback? 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 List-Id: Filesystems List-Archive: https://lists.freebsd.org/archives/freebsd-fs List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-fs@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D267028 --- Comment #152 from George Mitchell --- As expected, I have had no crashes since avoiding drm-510-kmod and running = in VESA mode. Might it be worth updating 5.10.163_2 to 5.10.163_3? Notes I haven't mentioned recently: Prior to FBSD 13, whenever I tried drm-510-kmod, my machine would lock up hard and not respond to anything oth= er than cycling power. I have a AMD Ryzen 3 2200G with Radeon Vega Graphics running on a Gigabyte B450M D53H motherboard. Every time I boot up, I see = the following ACPI warnings, which don't otherwise seem to affect operation: Firmware Warning (ACPI): Optional FADT field Pm2ControlBlock has valid Leng= th but zero Address: 0x0000000000000000/0x1 (20201113/tbfadt-796) ACPI: \134AOD.WQBA: 1 arguments were passed to a non-method ACPI object (Buffer) (20201113/nsarguments-361) ACPI: \134GSA1.WQCC: 1 arguments were passed to a non-method ACPI object (Buffer) (20201113/nsarguments-361) Do any of you understand these? --=20 You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug.= From nobody Tue Mar 28 16:50:42 2023 X-Original-To: fs@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4PmG032skRz428rQ for ; Tue, 28 Mar 2023 16:50:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmG031j3qz3kfc for ; Tue, 28 Mar 2023 16:50:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1680022243; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=EZC1DERe/sivpWgOG/51cEQrX9UMY5QxHxYQAGAvdsE=; b=JiX11A0+sM9LvT8vpXHtL9ePi4LmW5AjteL3DCHZA48Ekm3ffp3EhLcqK70GFAQ2F+8EfV +5ktos+bHmi0kDzx3/85RwaWKbZVyJnwugAGyKX2fa/Em1B6UdIIKo4Op9U2wrnoXAGeyD IyGqlWsPfMEkadWi8oxFYHMk5h3AzqEERz9+Iy4ssWEgTUa0EJ/NpFLzOFmpckLSyq6R2x wsVNbmXVo7zB8vYGu4yDdpCGQsd5nGpJo8J5XDxm0PZeUHmywFTtYpDEJJF0HPVXYSWGHT g9Q48pkuKqRsvJ0lWt/4uq+gAzX16vSuoA85gu8+u65XiT4cGgY+JKUJb1QUBA== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1680022243; a=rsa-sha256; cv=none; b=qwmI78ppDeD7Wrur/wYz3YsjgKX5eqqJXzyaMgBYB37FMBs+cnfBBCQ3GDFuFZI7WJVYgd e+pqdIVU43udDZnwdEz+bZivgZHwPIMurCAYmovQph5/NhP0wFReK668tHmqPKwGMxg95i GGQYtT5jidJoRUET8X7zyzvyUXkCTJfLImxTbxK28Y6S8Yiy02e5fo0/wS7cVnPGhjzq6F HPKbjtrMgRkMOw/X9EISTPb+VOLpK0nMdCvQZt1jq17kCmNnpO3NV0Gqjal57r/ZYA9htb GDWHH3XzqH9Edga3e2G6L6Fpis9XA174/vc7UU+5v83AAVyLm9fmAUF+PZvfiw== Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4PmG030mp2z1B7m for ; Tue, 28 Mar 2023 16:50:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 32SGoheb057159 for ; Tue, 28 Mar 2023 16:50:43 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 32SGohm9057158 for fs@FreeBSD.org; Tue, 28 Mar 2023 16:50:43 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 267028] kernel panics when booting with both (zfs,ko or vboxnetflt,ko or acpi_wmi.ko) and amdgpu.ko Date: Tue, 28 Mar 2023 16:50:42 +0000 X-Bugzilla-Reason: AssignedTo CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 13.1-RELEASE X-Bugzilla-Keywords: crash, needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: marklmi26-fbsd@yahoo.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: fs@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? maintainer-feedback? 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 List-Id: Filesystems List-Archive: https://lists.freebsd.org/archives/freebsd-fs List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-fs@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D267028 --- Comment #153 from Mark Millard --- (In reply to George Mitchell from comment #152) I'm not sure what all is involved in setting up the VESA usage test, but it sounds like it was a great test for isolating the problem to the material associated with amdgpu loading for your Radeon Vega Graphics context. Are there any negative consequences to the use of VESA? If the notes are simple/short could you supply instructions so that I could try the analogous thing in the Polaris 11 context that I have access to? --=20 You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug.= From nobody Tue Mar 28 17:02:36 2023 X-Original-To: fs@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4PmGFm7340z429sX for ; Tue, 28 Mar 2023 17:02:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmGFm62mtz3mHb for ; Tue, 28 Mar 2023 17:02:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1680022956; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=5oHv1MGWwk41G2K5W6NclWLWaFuD4dQWYPPq827Nr2o=; b=D3Y8jKLuwjjQskLGNrdZ5L6DT3VgDzkliCFQr1i9obWx4is/P2WsEugNg0H3X2hQMXSEKn bo+H5qv0adM5LVwFYYDoWHkA7CJiNC50cvVlnYXwhhLNi56obAOSDThoo+M9c+3JcYir27 4QNMh47LNu8NUrvm5FWh9pdfradJGDJ5ONPbOCYdK7r8qqRIwMqqLPTWrw1oNRAqrGJSlh TQcB4AHNKZ49aVVodeTHIAdyNX6zVH/+Txt3A/pKP3H6Sk63nnXjuXOaKVow2FdKbRB/7R ELiq3fTIXP2WpYKwhr+2b4QbDbWj8c+TGefh6G0r5s1RBczUHIzuYQmhRRWl+g== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1680022956; a=rsa-sha256; cv=none; b=bhdgzZIa6G/ZWBi8vUicG+c+rfTRycAZHFT9VxgPk6i0X8jktQe42uIlnIlEB0CyFGEGTI NB29EdfhENaDKlrVJs4U2UqXuynCeFDX3vK7im6CaHpIDQesiTRNPFPedbioZO7o5i0bO+ u5qoQ4m3j8+82MgjK94zWzLgvKcFurl48c9YHCojstKtB3wAebznG2KSpGb/sv4kKyGhYk G0EKlVuPiVanDlM702Izg9gnHIsDW211/j3WBDyHgymruUZBs0IyoYmn7qOPf7cN7+Ndix XSbDkuLmMa59zn3rijfn6GKkem97g/cE1N26J59eQfyQCrtKr+puIf59FWO/2w== Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4PmGFm56J6z1BZv for ; Tue, 28 Mar 2023 17:02:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 32SH2a9h082330 for ; Tue, 28 Mar 2023 17:02:36 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 32SH2aLN082329 for fs@FreeBSD.org; Tue, 28 Mar 2023 17:02:36 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 267028] kernel panics when booting with both (zfs,ko or vboxnetflt,ko or acpi_wmi.ko) and amdgpu.ko Date: Tue, 28 Mar 2023 17:02:36 +0000 X-Bugzilla-Reason: AssignedTo CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 13.1-RELEASE X-Bugzilla-Keywords: crash, needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: marklmi26-fbsd@yahoo.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: fs@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? maintainer-feedback? 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 List-Id: Filesystems List-Archive: https://lists.freebsd.org/archives/freebsd-fs List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-fs@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D267028 --- Comment #154 from Mark Millard --- (In reply to George Mitchell from comment #152) Looked at my ACPI boot warning/error messages and I get just (with a little context shown from the grep for ACPI lines): acpi_wmi0: on acpi0 ACPI: \134AOD.WQBA: 1 arguments were passed to a non-method ACPI object (Buffer) (20221020/nsarguments-361) acpi_wmi1: on acpi0 ACPI: \134GSA1.WQCC: 1 arguments were passed to a non-method ACPI object (Buffer) (20221020/nsarguments-361) acpi_wmi2: on acpi0 But I do not get anything analogous to your reported: Firmware Warning (ACPI): Optional FADT field Pm2ControlBlock has valid Leng= th but zero Address: 0x0000000000000000/0x1 (20201113/tbfadt-796) So that last has some chance of being involved in your context since I've been unable to reproduce your problems and the message is unioque to your context. (Only suggestive.) Any chance that there is an UEFI update available for your machine? --=20 You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug.= From nobody Tue Mar 28 22:15:02 2023 X-Original-To: fs@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4PmPBH2CZPz42W6x for ; Tue, 28 Mar 2023 22:15:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmPBH1C0pz3HYm for ; Tue, 28 Mar 2023 22:15:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1680041703; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=jBW/z9A4Hh5J/K+FPY+jxJ5lq2N9nC68h5TmHgSUL7s=; b=sBaYKZLyraGmssW5ox/Nt1TizVT9bcYl+RtK68Kel0o+qe05Dj9VmBHbRR9Jmn1W7BqQnw us0FEUQ1Ee+8EUF4KDKNqICqtWX2RW13jNLHU3AQXbZH4VWmhSatW9KOj+npF9DokLb86k 59SXEdbfZxDjnJOMdwulGwz0qobUOC3gDB3yqACTQNOpjIpLBjG7Y4uI78YezbbHm10suX g7a/TFWOttGBg5M15tWOsz/X7mgA2t2GXroWNlAA6pe6u3+VUKCquMXe+ErzLiBXwv5/K/ Uwezc6sT30wXYrBlzlBcFeLfbNirbxB3PyjQQuCvJo8w3KKRqVH6Ln2wsnVglg== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1680041703; a=rsa-sha256; cv=none; b=rFaQDGVnNZOXaJTfjvIFpz4pWwewYzdJRxuHjS9Vu8ABjH80RbE2NlDjGgB7Q86BNTiHka 9bI6itRryuQDo22gIyU4Y3APLvoxXu7o61yZTAPlq+gkKDcaHFt2Mev7ALzva3qalTZxhA MIwTOesJu+Dkb2ULvYAC5/kBnO3MoRGFLaQm0u2+gOtAFeLxbzzLyCKodVRyBVHR72gDKp ncxy9xtYf318gdL+hIYfmLkv3FymBige0Ewis0CdeHFhCmOBxqd8UYUea2TFlR0mEN3ZA4 PciHIPE01MpAdPmzg7FhhVuX1YRyM8bSkjXluJ0g3j6BE01zUrWAPLUkfbwYkA== Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4PmPBH0BLKz1L2V for ; Tue, 28 Mar 2023 22:15:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 32SMF2c8042845 for ; Tue, 28 Mar 2023 22:15:02 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 32SMF2i5042844 for fs@FreeBSD.org; Tue, 28 Mar 2023 22:15:02 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 267028] kernel panics when booting with both (zfs,ko or vboxnetflt,ko or acpi_wmi.ko) and amdgpu.ko Date: Tue, 28 Mar 2023 22:15:02 +0000 X-Bugzilla-Reason: CC AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 13.1-RELEASE X-Bugzilla-Keywords: crash, needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: marklmi26-fbsd@yahoo.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: fs@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? maintainer-feedback? 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 List-Id: Filesystems List-Archive: https://lists.freebsd.org/archives/freebsd-fs List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-fs@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D267028 --- Comment #155 from Mark Millard --- (In reply to Mark Millard from comment #153) Hmm. I see that: https://docs.freebsd.org/en/books/handbook/x11/#x-install reports: "VESA module must be used when booting in BIOS mode and SCFB module must be used when booting in UEFI mode." My context is UEFI so VESA looks to be inappropriate for my context. Your using BIOS (non-UEFI) vs. my using UEFI (not-BIOS) is another context difference relative to my not managing to reproduce the problems. --=20 You are receiving this mail because: You are on the CC list for the bug. You are the assignee for the bug.= From nobody Wed Mar 29 09:38:11 2023 X-Original-To: freebsd-fs@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4PmhLy3z5Zz42JSq for ; Wed, 29 Mar 2023 09:38:34 +0000 (UTC) (envelope-from woodsb02@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmhLy3Fq4z3v9f; Wed, 29 Mar 2023 09:38:34 +0000 (UTC) (envelope-from woodsb02@freebsd.org) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1680082714; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=jo75x3lAOHNM7psaRMWMmkWuorTc6JmBziSFGtQ8fMo=; b=GwpHr/+tSos9xeFQB12uwd/SblMx68AXEzMPK/lGVZyiPCROS5VIlubLN5jY0w+pqf9p1u SYRTz11kSHX47VYrj7mYqst2JClLST00IShovgnga7520W3TYgwg3STLMEADKikcbn1a0f ZHsP2zOvyOl9kGy1GH2YSyamWMTA4jOg19/eLJRY/74OHCUpdeQdYlyjEgzx8CgDA+XWVu SE4Gb2j+y4EzDqUo6tFdwt9PiV3pTKKNwTO5Nz8Eq1xI67rIn323EE3X14Tv61y6mUp2aE mDduEM1WwnnPT0/ism5sfPW/9LbO3e5l+mDC8tk6uX8+/DoVfSxvIQt6ZohVhg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1680082714; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=jo75x3lAOHNM7psaRMWMmkWuorTc6JmBziSFGtQ8fMo=; b=fGXSPwahzOD/Vte0Oay+QJ42MeUvtBMUdwqy0L7VQ75Lzfyc6ChnJ2y4pjjKHoSVMcjEDN eDW8YGt1kO/qjgKXWaY6rlNJFwX88FNwGiPWFZqgxv0ZIXNGkpdgx/USAo/xOvSCp/tzUs OBExZwFVRsFdmyLbGM2f9pXMCIGjQTMwMk+pbe5YxMafRHLEE9Ph48lS5u10NuNNWuXw/e 8JQh51imDTaW/rdGB1mbhE/7VY46jBTROAZTrZR4DVIVvSYtTxsa6ew9KfVSxtJj7HrRkh PlubwmiZgL0DMvJRk79YuSpj4V33PXgQJfXT6UYWTu4jn7sNbsZdb3lUYVYwAA== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1680082714; a=rsa-sha256; cv=none; b=RRNUszLtsBf0rGrVxdnTcMN7uj0MaLbhU6eOCOxpQ/OGWzDtN/nR2oK+Yjp4t/8d0b/QaR nQ1l/EKFX+Dp0dO4tWOJn51u3RZow0amr/mB9QzD2GLl5Gwy+Nnj4T6qUtBb5l3KZS2dXP pqfo0LfxFEfBEWe3x70CUBLD6Mwjeq3fhprieQHXvgojrFdJo/n1rd4VGw6+kXVeO0B7Kz urd4S8l3AowI8c6ZsP1Aa8IU/vjq8o638rvb4ZglbpgyaoiUzQ7czpEXyheUBwLR6UDmIU 3X9vnQOLTBVTaHWhjh+z1xY/SsJSveThPPpcU4AvqI/tES4tVUxp+dq1Z8Uo9w== Received: from auth1-smtp.messagingengine.com (auth1-smtp.messagingengine.com [66.111.4.227]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) (Authenticated sender: woodsb02) by smtp.freebsd.org (Postfix) with ESMTPSA id 4PmhLy25Tlz1400; Wed, 29 Mar 2023 09:38:34 +0000 (UTC) (envelope-from woodsb02@freebsd.org) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailauth.nyi.internal (Postfix) with ESMTP id 588C527C0054; Wed, 29 Mar 2023 05:38:33 -0400 (EDT) Received: from imap46 ([10.202.2.96]) by compute1.internal (MEProxy); Wed, 29 Mar 2023 05:38:33 -0400 X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvhedrvdehiedgudekucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhepofgfggfkjghffffhvfevufgtsehttdertderredtnecuhfhrohhmpedfuegv nhcuhghoohgushdfuceofihoohgushgstddvsehfrhgvvggsshgurdhorhhgqeenucggtf frrghtthgvrhhnpeeludejgefhfeevfedutdfgfeffudevheeujeelieeuudejjedvheej teehvefhieenucffohhmrghinhepfhhrvggvsghsugdrohhrghenucevlhhushhtvghruf hiiigvpedtnecurfgrrhgrmhepmhgrihhlfhhrohhmpegsvghnodhmvghsmhhtphgruhht hhhpvghrshhonhgrlhhithihqddutdelfeeiiedvkeekqddvgeejkedvvdektddqfihooh gushgstddvpeepfhhrvggvsghsugdrohhrghesfihoohgushdrrghm X-ME-Proxy: Feedback-ID: if9c9472a:Fastmail Received: by mailuser.nyi.internal (Postfix, from userid 501) id D6C2A2A20096; Wed, 29 Mar 2023 05:38:32 -0400 (EDT) X-Mailer: MessagingEngine.com Webmail Interface User-Agent: Cyrus-JMAP/3.9.0-alpha0-237-g62623e8e3f-fm-20230327.001-g62623e8e List-Id: Filesystems List-Archive: https://lists.freebsd.org/archives/freebsd-fs List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-fs@freebsd.org Mime-Version: 1.0 Message-Id: <160ca907-c39a-40dc-9715-7ac3520ef00e@app.fastmail.com> In-Reply-To: <25c778f5-f477-5cd1-9a5c-9c02a20dbe56@FreeBSD.org> References: <202303081948.328Jm50O078295@chez.mckusick.com> <25c778f5-f477-5cd1-9a5c-9c02a20dbe56@FreeBSD.org> Date: Wed, 29 Mar 2023 17:38:11 +0800 From: "Ben Woods" To: "Stefan Esser" , "Kirk McKusick" Cc: freebsd-fs@freebsd.org Subject: Re: FAT32 statfs(2) inode usage Content-Type: text/plain X-ThisMailContainsUnwantedMimeParts: N On Thu, 9 Mar 2023, at 3:53 PM, Stefan Esser wrote: > Am 08.03.23 um 20:48 schrieb Kirk McKusi>> Date: Wed, 8 Mar 2023 17:40:34 +0100 >>> From: Stefan Esser >>> Subject: Re: FAT32 statfs(2) inode usage >>> To: Ben Woods >>> Cc: freebsd-fs@freebsd.org >>> >>> Hi Ben, >>> >>> I have created a patch that has been tested with both FAT12 and FAT16 >>> and which has passed all my tests with different file system parameters >>> (e.g. number of root directory entries) and all operations (create, >>> rename and delete files and directories with DOS-8.3 or Win95 names). >>> >>> Could you please create a PR that describes the issue you had (wrong >>> report of no free inodes on a FAT16 file system) and assign it to me? >>> >>> I'll reference the PR in the review I'm going to create and hope that >>> this will help get the issue reviewed and the patch set approved ... >>> >>> Best regards, STefan >> >> Stefan, >> >> I will provide a review for you. Just add me as a reviewer when you >> create the review. >> >> Kirk McKusick > > Hi Kirk, > > thanks, I have already created a review: > > https://reviews.freebsd.org/D38987 > > I'm not happy with the choice of function names for the increment/decrement > macros, and I think that the exact location of their invocation should be > reviewed with regard to error cases. > > Best regards, STefan Hi Stefan, Thanks very much for your work on this, and for committing it today. I owe you a few beers at a conference some time! https://cgit.freebsd.org/src/commit/?id=c33db74b5323480fba7adef58e8aa88f6091d134 Cheers, Ben -- From: Ben Woods woodsb02@freebsd.org From nobody Wed Mar 29 18:34:07 2023 X-Original-To: fs@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4PmwDv4xpLz42vj9 for ; Wed, 29 Mar 2023 18:34:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PmwDv1kFPz3MQD for ; Wed, 29 Mar 2023 18:34:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1680114847; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=adgUMlSy2aP8cE9YlwD8odlIDvk3DWiNgaWqwv7PE/o=; b=WnMASTxmgiskiw9WVCjbgrDlkqE/x1e+GtIRE6NPUk6AUES0VT/1zpPbjqqUxkh9BO3yCp cE90flO+rwEobjU91ZObTvlSXg1uycjTPo2uFenB9IHRsLoh+Ay7qfQ1KUFR1Q44Bbjj6n Sy3eaIH0u0wZ9j5HwA3AemRsD7YDdrXwFZ8BYOIdeWcnJynL6sRawZDGWxMnAbce639hp0 Q6WUbJ4b6OL1UOFT24LfA9o9GerJ64KDym6LEEjF0kJGPLCsJo1jgDV6wcuAH+/JFpP40k 69VOz8mqjpBox6RedXNq56YEWUA6grdRnPhAVx865HykMUf1bNqjmaAILn7y0Q== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1680114847; a=rsa-sha256; cv=none; b=GZCXvGOkJ07iWjqryBu3OnBLXCE7CtJ0twEDBQaBie9qdwio9mVwOLmy2KMvWkha8gyCdJ TTeAgfZtNfiPK59Hz8YUtONm92FOgiKwiX6QQ/AZ46X/BdzPTVH2zM0+BztVl+qsBLwbrr qKgy8Edrq+Xd0xvyf/CNR/aJAEjnhjFI+hmCmkgSTlg933yz/YM4AqG4q2H/JRkGd+nch/ clS5QzuTMyPcq1etjTQAPQ92vhklmWetd5vIwvNwR4bzRkXUjsk0BNyVSx0XXd75z1mia4 Bg/Ma6RgfhrCXCyGf0o1Ch0Ar50F1Jp4l28LMxmoFTJYa5k0QJINLE9tookkHQ== Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4PmwDv0pJqzgtj for ; Wed, 29 Mar 2023 18:34:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 32TIY7JZ037598 for ; Wed, 29 Mar 2023 18:34:07 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 32TIY783037597 for fs@FreeBSD.org; Wed, 29 Mar 2023 18:34:07 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 267028] kernel panics when booting with both (zfs,ko or vboxnetflt,ko or acpi_wmi.ko) and amdgpu.ko Date: Wed, 29 Mar 2023 18:34:07 +0000 X-Bugzilla-Reason: AssignedTo CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 13.1-RELEASE X-Bugzilla-Keywords: crash, needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: george@m5p.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: fs@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? maintainer-feedback? 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 List-Id: Filesystems List-Archive: https://lists.freebsd.org/archives/freebsd-fs List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-fs@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D267028 --- Comment #156 from George Mitchell --- Ironically, I am presently forced back into using amdgpu.ko because the xorg-server update from 21.1.6,1 to 21.1.7,1 broke the VESA driver (bug #270509). --=20 You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug.= From nobody Wed Mar 29 20:34:43 2023 X-Original-To: fs@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Pmyw36lMPz41pw3 for ; Wed, 29 Mar 2023 20:34:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Pmyw35dHlz3ngM for ; Wed, 29 Mar 2023 20:34:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1680122083; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=RxzYd+7fzDeNaKHjde6SvuowHmZa1XkFxfY3Csv+frw=; b=qOYdfSAyRuIw8PwIE0yOkk2RWomuTXGLaS7yIJ+4v1V2OcN3hG2L8rAZAT70LXwgty1Np6 WzxXQFk8Tf/cBBffYYTzP4RL5XQqHMBpnXg9O5iMNOErmMKlYB6oVbtwOHKMopwfrIhSre 2sBPZP3l9BMl15X50F/mNZQNSzcz0X0LU0McAdZP2wlnanjcGmPK2J0i7fYiYljNXBJepr 7NV9DN6OxfUcp1E3HKhot1Mw6bxyPqQLj9v9T7jb8cAGrpCtPTxPTSW85o3ShRzF5t7I+2 j8Rxs+GqrMZAbz3Nx+uyOJrGrsS1L6Mpvy62WihfecbJSsjI6Bgr4RqNOJrOHw== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1680122083; a=rsa-sha256; cv=none; b=FAbQUiZYm42xkXj+9uKxXpR4xxFK1OjXrKbCRyAv0BStmIeZBesllbVDO8AqGohYoMpEla fALG40T6DDP7kOkaEzvhY1j0e18ltH3pdwp28ethgMdz4M/cgxOzZoAJ/gRBX7YUvL2gmG k8nlTLOcPLahJf7qzoLZmK++MwnD67T/HC/EJ5gUxTKCSuq0mgRAPVB2yd4Qz2O4RVKuen BqunpBBQAUHeDKwNbKGpyJWPfkFdWsnXTtsr2N2//rGeIfhNsl63ziKYnRru01xeTlZY2G hgl94k9+0EojxKGExC827nFvwNdYTaoCni0ywwREjSViuohQnZZ4UpUUDPFt8g== Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4Pmyw34jP9zkmN for ; Wed, 29 Mar 2023 20:34:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 32TKYhvd012202 for ; Wed, 29 Mar 2023 20:34:43 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 32TKYhlY012201 for fs@FreeBSD.org; Wed, 29 Mar 2023 20:34:43 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 267028] kernel panics when booting with both (zfs,ko or vboxnetflt,ko or acpi_wmi.ko) and amdgpu.ko Date: Wed, 29 Mar 2023 20:34:43 +0000 X-Bugzilla-Reason: AssignedTo CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 13.1-RELEASE X-Bugzilla-Keywords: crash, needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: george@m5p.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: fs@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? maintainer-feedback? 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 List-Id: Filesystems List-Archive: https://lists.freebsd.org/archives/freebsd-fs List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-fs@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D267028 --- Comment #157 from George Mitchell --- I forgot to mention earlier: Whenever I start chrome from a terminal window= , I see the message: amdgpu: os_same_file_description couldn't determine if two DRM fds reference the same file description. Probably not related to this bug, but I thought I'd better mention it. --=20 You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug.= From nobody Thu Mar 30 22:45:09 2023 X-Original-To: fs@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Pndm61PmMz42SKW for ; Thu, 30 Mar 2023 22:45:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Pndm60Khtz46sl for ; Thu, 30 Mar 2023 22:45:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1680216310; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=IMxWaBmTMAatNEWeQPgJCfC474BTf8zSCqvm9nI6I60=; b=MRCnczK+dWdSm0gTRZEStXNGLRTOETcO63DZz1h1CRu0bYJo0EkABOvzqhuR/q6rxvMTdK D+Zq4J8r7YnFG4v1IO95xJ42wEFmoKrrfnMKIJKnA7e9TjK4tcnW6eS+dOEMbLtG0ojSVZ ougNen0hfHZ6EKef02k6BkdCnEjlzIGKsxsBA9o81kerPQGwf7Jc+34v5zXuDFZD07QvQY aTihCBPxjn9y3ltFWOn4xnip83nWbA8fmM1l8Nzzf63vf2b0LDyQIdQ00yX6vpEJHEAClW P+In5kOOL0ClD/H1y+yRHG6kx8Webv8e8evCVWI9jh3187JZPKi4mxJ7NC9XHA== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1680216310; a=rsa-sha256; cv=none; b=Q72d8mX1t1RsegTMKmNR1prTpKREX/426Lb8Am7gnCD3bSCWw51itazwcUoOllAqPVUW0C jUYGELhfRuafgXvErJmh6fb00FyDV50T4Q9Z+BQY4pD/2ShmNgHwLni8YrCdVDVVsXxIEn eOSVe1RtiVIcZ7aN5x8lPIloKG40indDYyLvfKq1YDrhwsA7nLZGco9Hmy7T4HrqSc9bIr szQSTLLKD3H7XATt+IJZDZUMdgZ/Qed9GkQr4xcwXAR2oDV+ouzdVj3P8MJNSHWbQ3w3Qd yf//aAOdia+iXb7/Ao+9gC+WKWbmevpP07Nkd0NZirP19kBYlb2Q6fro/OLJSg== Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4Pndm56TxszVSb for ; Thu, 30 Mar 2023 22:45:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 32UMj9Qt010183 for ; Thu, 30 Mar 2023 22:45:09 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 32UMj9Fo010182 for fs@FreeBSD.org; Thu, 30 Mar 2023 22:45:09 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 254210] 13.0-RC1: jail: nullfs: deleted files does not free up space Date: Thu, 30 Mar 2023 22:45:09 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 13.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: r4@sovserv.ru X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: jail@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 List-Id: Filesystems List-Archive: https://lists.freebsd.org/archives/freebsd-fs List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-fs@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D254210 --- Comment #4 from Ivan --- this seems to be related https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D245688 --=20 You are receiving this mail because: You are on the CC list for the bug.= From nobody Thu Mar 30 23:09:23 2023 X-Original-To: fs@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4PnfJ35jTcz42V65 for ; Thu, 30 Mar 2023 23:09:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PnfJ34Y9jz49x1 for ; Thu, 30 Mar 2023 23:09:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1680217763; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ciSp7aJRHij7E/FLtQyejFeWJdKu6HQBGWvCrRSXQzI=; b=NYPcJm1+gV2e7MYeEC634igNDmftG1le+3qfx56nDqhedkvKWIxd69OAkQgk8afCcj3ufU YOSaGPRMBtO4M2hjZKLJzzHY2DlcJj3GF8pVFbT2L4xcw2hS6izpF14H2cpocWAAtN6h3a NZEY0Dbo+LFRF4nvQxByMwOJAY0pR7bvNyi+rbb5Ptq11XJM4/nolxt3SmxbPKPTWIEoAn elWzdyQUWWmaGBmtYlvJrMUGYVzWkWITYl6zgIAWAcRw/jgaMo6mBv8bEfKrC1NLw0nMYQ 6V6EWfivcz2Ir0f/InXGU9LdSAwz9nF0Zo29cxBnQhtFIfToSL5ZMzy/S2L1UQ== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1680217763; a=rsa-sha256; cv=none; b=hxKIT19sMS1irtQOrOPfVOIaFeSRLfgn+mvaslOr1FKbvZAl5FnrIuYPT5ynRLP60kCehk ObOvWOHbYl/+aiX1Ov5qSQzIombI9iEc7yPXFd/Dzd96KBdxObOprYA40evOsYhfWefMX+ mL43RsEZCuTp/fz5pbH/WoOIlTKASlBOdZQdhMhfXYxSqvVES9E7IjQe0hkkHQr4pD56LA KgXzADCrHQ9JGiTe2hRpFdkMVU6N+dnSYwKlncNKDmdGKWsaea2Ie10Ws6YGxEgc7I8aWM D9iJSBl8hNsabCdwADdozBcFwd4wCI3zCPBGmf2m57tw23PO37MVUMr74V0e6A== Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4PnfJ33XwbzW9x for ; Thu, 30 Mar 2023 23:09:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 32UN9NvD040356 for ; Thu, 30 Mar 2023 23:09:23 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 32UN9Nue040355 for fs@FreeBSD.org; Thu, 30 Mar 2023 23:09:23 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 254210] 13.0-RC1: jail: nullfs: deleted files does not free up space Date: Thu, 30 Mar 2023 23:09:23 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 13.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: r4@sovserv.ru X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: jail@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 List-Id: Filesystems List-Archive: https://lists.freebsd.org/archives/freebsd-fs List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-fs@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D254210 --- Comment #5 from Ivan --- and this https://marc.info/?l=3Dfreebsd-fs&m=3D150581490210158&w=3D2 Konstantin Belousov, according to the newsletter, this problem has been goi= ng on since at least 2017? --=20 You are receiving this mail because: You are on the CC list for the bug.= From nobody Fri Mar 31 01:01:58 2023 X-Original-To: fs@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Pnhp12ZBjz42dhV for ; Fri, 31 Mar 2023 01:02:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Pnhp10tPTz3MvX for ; Fri, 31 Mar 2023 01:02:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1680224521; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=3H2t4OfX7H4Z3ZrZrHWt6AlRXHMca1caJg3qZCnWyIw=; b=KFJQ+2I209Ba7DlhLNRu1qTOSOGUTAnfYk9EaBE6m7LBdCnEEtspFg21EWO8+b8LtPsHF2 LN4XZvqfZxT1/W59LX/lEOnTm4OfqsFegWX2g4k8gw7HtdXcppEOIf0JfMQV3IiUYWeDH9 hpDPxjVUHuOF/4be+46vVrCxf0PBISz7zUdNs3MDw7IFPvwqnHU2T2K2hkk43566gTPCZ/ 3Hyhzs6JQ/Cyche7X/ayeIkh8PUR3Lj/GSEtvRmdXnnGhcr8M12ZmUv+QOb6TpY1dr8SFY dpnX9bV/2GGfdS4Q84p3BuvUrBFcNhruA9Z6U8s1dMORn+MzFOEMoS6pYhG+dQ== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1680224521; a=rsa-sha256; cv=none; b=sCxGLXRPxMycOKc7CWZWQ+vf1XFwpAXL/r9gF984NYoM/J0SRNZvlRMUcMeoAGD+eEN82Y Wg4yIKnUydTAGT7JeEzsK122Riw/sHoxU5Yy3z+L2qaqTNwjfAd+egl9HYxn+2aKNB6aUA BDa1trxYmjUIivU+fofe+8Z+wPUQNUARs9LNzipqp8+WK0jIFzsuTY0vHYBTFUr0ULaW50 TKVqf/Rh+DdKDbAfqRw4JkSdfxKAywiXulNKJ22qf5vRHRMgYn2Jh0aMcoeIVjfTTP9jBN +CtlAnhP0a4pkH3q16PM/iwcqoftM5qJZRa+GyZBtfKBMi5dBzytgIUWJmHSBw== Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4Pnhp074NQzYhG for ; Fri, 31 Mar 2023 01:02:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 32V120mI020486 for ; Fri, 31 Mar 2023 01:02:00 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 32V120cV020485 for fs@FreeBSD.org; Fri, 31 Mar 2023 01:02:00 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 254210] 13.0-RC1: jail: nullfs: deleted files does not free up space Date: Fri, 31 Mar 2023 01:01:58 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 13.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: grahamperrin@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: jail@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 List-Id: Filesystems List-Archive: https://lists.freebsd.org/archives/freebsd-fs List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-fs@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D254210 --- Comment #6 from Graham Perrin --- *** Bug 270546 has been marked as a duplicate of this bug. *** --=20 You are receiving this mail because: You are on the CC list for the bug.= From nobody Fri Mar 31 01:02:46 2023 X-Original-To: fs@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Pnhpt5rszz42dQW for ; Fri, 31 Mar 2023 01:02:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Pnhpt4HVnz3Nbt for ; Fri, 31 Mar 2023 01:02:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1680224566; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=WcqNoNYYGlEsUlLSP1nwsZgRXBGy8ycPLUsCwvS9X2g=; b=CoQnuq579cKHz4egLc+TrfN3Td4NGn/KkAinpV31iXl8jHKlHdf5hzZTRaQJ/3r9UpPhCo 5sBxw9qrt3dmphdScCv/bO7/ysdnEMMiHhL7CyOQmku01T39ZIlMNFewJEs+NKVNOVOmGa gxYDCDV2Vcsat7JWoYXbeI9J1/a5bsJe13qCj9CrTaZK51ZsJHkxIV+mA9Lx0Dllofhzw/ jzHFEb60fCA1Z3xLWY09LZnZKyCWQqlEqfHx95lH9TZbfeRiYwpwlVR/vpd7r8bVCnn3gU FsYpCudDK1xqo2DX0Yup9X6TkXqUGb0EEof9zc5Pw+pT2kzGoiWIfkuYUnSofw== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1680224566; a=rsa-sha256; cv=none; b=wgjWggap+qgzsEeerA8lJBit5UMu8ZaFqFT6h9rDX2XLQtEINBOeLRWrxGCUB+WeHygxUx 1GPQR+KU00R0AaNv8UHaVc2Oy0ZdbJInGMW87DBsv3kjZGnVxW56SEajcFqXCrCrdFB3Ia wNWYGOFfIVRTXQ/kXseAD8Zgeq9uDuzotllFSsZMOYKf1t48BZHlOtn9tS9RbDN3IyNF0O 2g10cLs1Nd72DfSvRCcFCFjYvEzOIQV+QdNPQIW3hBFYkIphDDAzWVYafe/fSL+4Uqw9pJ uAH9nW69Lfh6AEkRYJy0Gqjg+x/UAuNw1qCBu7myg3q5nCwAKpf11QfbIHEgLg== Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4Pnhpt3MCSzZ44 for ; Fri, 31 Mar 2023 01:02:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 32V12kvD022359 for ; Fri, 31 Mar 2023 01:02:46 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 32V12kw2022358 for fs@FreeBSD.org; Fri, 31 Mar 2023 01:02:46 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 254210] 13.0-RC1: jail: nullfs: deleted files does not free up space Date: Fri, 31 Mar 2023 01:02:46 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 13.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: grahamperrin@freebsd.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: jail@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc bug_status 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 List-Id: Filesystems List-Archive: https://lists.freebsd.org/archives/freebsd-fs List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-fs@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D254210 Graham Perrin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |grahamperrin@freebsd.org Status|New |Open --=20 You are receiving this mail because: You are on the CC list for the bug.= From nobody Sat Apr 1 19:42:15 2023 X-Original-To: fs@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Ppnc817Hyz43Fw2 for ; Sat, 1 Apr 2023 19:42:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Ppnc80710z4LGT for ; Sat, 1 Apr 2023 19:42:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1680378136; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=wrF9XYPYikCHonqjj5GHT02vavw1ugWrgtocwMy+I7E=; b=kH38fcwSxbhmHI62MuGClW3XC/XT5sB4SkJD9ERc1W3Mr3o/kuwxO1Pp3Ex1gHD3i/aTPN dsLwNQB5dtFimC7wTD+jDh83/8nUrdlyVBr7JqJ6HlH47zLdojecxCdYUQYZgZZgUhOHtb 1oIL9VOwO9oZ7PQZOH+bxx97OQVHVT9DKKNDhSGDajRhuXIBd4PT4cWEU/EK+rkt2YWLu3 9dXwxxdhXqlgUpK+2Gip1qkktcqUgpkmZ8rXSXTI6blKRFfCE2WNV3o4lrPySYxDAcCU9O v2EyPd2M23IyKkpET4A66pNnKBtHG5Is9CUlhmhbew+wI3cE+jd/K6GYKz/G0Q== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1680378136; a=rsa-sha256; cv=none; b=u0ykoJi7CtA/aWx1cTQao58p7PDiVM5k6lIFXFflRPOiRVzcI90UxHkp4B2It9/5BR32oE UAGBnRJADqSDdVhTeHQl27Yf1AA7yxUeowssba1E5Ow3nJjcVjrnCHTz4U2u/AjstenOMH Z8y3Y37obxVYQwbxDR0YRC66IuicGKEijeBSCTQ6Ey3RoG5SyEAP+BgLWtiZilWyNigYUl sT5Q6GqkqV/EHGDOjD6tRzTAygyaOnaW2R3ZNmgjIEMq+FBrM5YB7QhfYSx2vx4hyZkAhP 046WENaH6BR3dsFxmTHUFWQ/DsbKJU+XEZKVsD38aeuJPikzFC+B3mSOzgbPbQ== Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4Ppnc76L73znlZ for ; Sat, 1 Apr 2023 19:42:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 331JgFSc043052 for ; Sat, 1 Apr 2023 19:42:15 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 331JgF3U043051 for fs@FreeBSD.org; Sat, 1 Apr 2023 19:42:15 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 267028] kernel panics when booting with both (zfs,ko or vboxnetflt,ko or acpi_wmi.ko) and amdgpu.ko Date: Sat, 01 Apr 2023 19:42:15 +0000 X-Bugzilla-Reason: AssignedTo CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 13.1-RELEASE X-Bugzilla-Keywords: crash, needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: grahamperrin@freebsd.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: fs@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? maintainer-feedback? 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 List-Id: Filesystems List-Archive: https://lists.freebsd.org/archives/freebsd-fs List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-fs@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D267028 --- Comment #158 from Graham Perrin --- (In reply to George Mitchell from comment #32) > =E2=80=A6 I'm doing this testing on a desktop machine, =E2=80=A6 (In reply to George Mitchell from comment #152) > =E2=80=A6 not respond to anything other than cycling power. =E2=80=A6 In that situation, does the system respond to a normal (not long) press on = the power button?=20 ---- On my everyday notebook here, I have this in sysctl.conf(5):=20 hw.acpi.power_button_state=3D"S5" --=20 You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug.=