Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=WHYL/UBZ; dkim=fail reason="signature verification failed" (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=QX7ZHQ16 Received: by mail.netbsd.org (Postfix, from userid 605) id DB9C584EEA; Wed, 17 Apr 2024 18:52:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713379961; bh=ZSFWDOpwOJm5mdGV3qRu3HmM4wVza7Vma1NzC5Tp6Bo=; h=Date:From:Subject:To:List-Id:Reply-To:List-Unsubscribe; b=WHYL/UBZEenycoyVKYM04zfylhzfKs9qH3+9Do5M/YJ8/mUZuLTUuamKyq/VRLGMS iGGwKx9jQpGKV7HIfi1IudfW+dqAW5d7qN03TpJj5vnxYJaL/8womq1273nejSh9w6 TKaC86F+XVYulhXBs/zMTv7UJ7u0vZ+Z/BuPR+DQ= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BA68B84EEF for ; Wed, 17 Apr 2024 18:52:39 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id dmyo48bgWjDQ for ; Wed, 17 Apr 2024 18:52:39 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5828F84D01 for ; Wed, 17 Apr 2024 18:52:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713379959; bh=ZSFWDOpwOJm5mdGV3qRu3HmM4wVza7Vma1NzC5Tp6Bo=; h=Date:From:Subject:To:Reply-To; b=QX7ZHQ166R12k9/Y9U45v0KkoddppUt8MMFjIUU2tCe1FocG7r5CR8dipzDtaKmRD V9PY2NqzAyQD6NEKXOJp6nAQBpjiCFMmyBkRhaTALSh3SMJJdB8i9e001VtCXS40z+ fO/W+yq1df4Sno6UvuTlj6y5TFyLcdjXxkcC62aw= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 514DBFA2C; Wed, 17 Apr 2024 18:52:39 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Wed, 17 Apr 2024 18:52:39 +0000 From: "Taylor R Campbell" Subject: CVS commit: src/sys/net To: source-changes@NetBSD.org X-Mailer: log_accum Message-Id: <20240417185239.514DBFA2C@cvs.NetBSD.org> Sender: source-changes-owner@NetBSD.org List-Id: Precedence: bulk Reply-To: source-changes-d@NetBSD.org Mail-Reply-To: "Taylor R Campbell" Mail-Followup-To: source-changes-d@NetBSD.org List-Unsubscribe: Module Name: src Committed By: riastradh Date: Wed Apr 17 18:52:39 UTC 2024 Modified Files: src/sys/net: if_tap.c Log Message: tap(4): Use DETACH_FORCE with config_detach. It doesn't make a difference here, because tap_detach never fails, but let's make it more obvious at the call site that failure is forbidden here. No functional change intended. PR kern/58166 To generate a diff of this commit: cvs rdiff -u -r1.130 -r1.131 src/sys/net/if_tap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.