From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from sipsolutions.net (s3.sipsolutions.net [168.119.38.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id BD78D36AB7A for ; Tue, 17 Feb 2026 14:21:48 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=168.119.38.16 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771338109; cv=none; b=QOCHcRWAXNYiELTqSXoso6oFEw4UzmAg73gqlj47xnYlAkO2D5GnE6Q56lmUmSsOnjpBrtiz5NAUr0ALRs9OD/lo5OPirW0NUVyaWyFwNSiyIE8Xe0RS9qA/d/PFhWaI4Azhm2o16g/4wd++gFAkG3FJa+uZSBxPaQ3Jree0dwE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771338109; c=relaxed/simple; bh=AduYWLpT1kbOT7xBIEbrz2/YRLmTA61HWvD/yWHod+s=; h=Message-ID:Subject:From:To:Date:In-Reply-To:References: Content-Type:MIME-Version; b=OikvGUmaBm0MiW0ygM1gZlwT8yQjPi9z4i7BdMoRDp0TUxhKsVWzQCTZCY7/P5AB++Z+Tbua22pPNro0/XC7z5XQYgupQ3iBAYLYqO6bDQpG0rFHB9h7c5lK/PUdSjU55ZPn8zjIHYEJEBspqiHjHc/bIxr2nWwGwSleUBga0hs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=sipsolutions.net; spf=pass smtp.mailfrom=sipsolutions.net; dkim=pass (2048-bit key) header.d=sipsolutions.net header.i=@sipsolutions.net header.b=jorqEAYX; arc=none smtp.client-ip=168.119.38.16 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=sipsolutions.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=sipsolutions.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=sipsolutions.net header.i=@sipsolutions.net header.b="jorqEAYX" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sipsolutions.net; s=mail; h=MIME-Version:Content-Transfer-Encoding: Content-Type:References:In-Reply-To:Date:To:From:Subject:Message-ID:Sender: Reply-To:Cc:Content-ID:Content-Description:Resent-Date:Resent-From:Resent-To: Resent-Cc:Resent-Message-ID; bh=CUxHkIRkmraeLsyQecCzOOsEHcF2v6Vh+99t9alxL4c=; t=1771338108; x=1772547708; b=jorqEAYXIli5NB6rDG1Qd2DfI5Cp/VQCvAYBFaOp+0J4FtY jt4D4zPBUbnHQnhliDjv311HFN2A7Pj4cnxnmEcnEJSiMF26SK5myAx6+LEeTYnJtUwUQz+q1X9DJ M8eKXy4M2duiqdl3qpNY9jvrJMt7plp9T3zL46I0WqebQJty69YdLWyD7zpA6umy+nCWKMNXSIfOR H7RXaAwIhp5xYdmwAyz/Kl5NhyeBVnqMjsMHpvjlqHIcB8BO1rgnrZLm6jdYuZLwfH5Tn+M2EZvpM oNj83Kr/IuyMIstpCaAQfiHWbGeQLnYlfmNc2liD9lZ4Psel2wWRgNY5q2KbRStA==; Received: by sipsolutions.net with esmtpsa (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.98.2) (envelope-from ) id 1vsLxR-0000000BR09-2i8H; Tue, 17 Feb 2026 15:21:46 +0100 Message-ID: Subject: Re: [PATCH v3 wireless-next 08/15] wifi: cfg80211: add support for NAN data interface From: Johannes Berg To: Miri Korenblit , linux-wireless@vger.kernel.org Date: Tue, 17 Feb 2026 15:21:44 +0100 In-Reply-To: <20260217134342.2d455362bd3b.I92973483e927820ae2297853c141842fdb262747@changeid> References: <20260217115618.2066972-1-miriam.rachel.korenblit@intel.com> <20260217134342.2d455362bd3b.I92973483e927820ae2297853c141842fdb262747@changeid> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.58.3 (3.58.3-1.fc43) Precedence: bulk X-Mailing-List: linux-wireless@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-malware-bazaar: not-scanned On Tue, 2026-02-17 at 13:56 +0200, Miri Korenblit wrote: >=20 > +void cfg80211_leave(struct cfg80211_registered_device *rdev, > + struct wireless_dev *wdev, int link_id) > +{ > + ASSERT_RTNL(); > + > + /* NAN_DATA interfaces must be closed before stopping NAN */ > + cfg80211_close_dependents(rdev, wdev); Turns out an equivalent change is missing in cfg80211_destroy_ifaces(). johannes