From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 09A66323417; Thu, 16 Jul 2026 13:49:37 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784209783; cv=none; b=uGE5+0NBGEd7giAkoKlYiFNwSNrJZI0skIDpKjBN05edsHcaK13I/kFQJlnoqafL+te1zqfTVtrz52NIiqWIwjzegwh+TgJ8m/Jyv42SbGZ3kYOL3y1QwYUhyZ9g3XCtLh7ujUPTSK3pEx84OE6x7FeLQDUw6GLFAb18jsDpLGc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784209783; c=relaxed/simple; bh=SAJjGRoerGjfL7SgOAedhRTIEIO2pjGienTIJSUcOXk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=KQj9F5SG8MFWqixCP/c9tkG2ov6E2gFIe8mUVHw93DaKHWK/N6D1e6FJlruTVhNYi76I3q0wtU2DmTsRCKhGaUAOOT1mUIz0G1nZZ/ezJXHaDoc4KBx67VzMFOFOnvh6B7MW4Jwo74o4NZQbt+N/Ws+svXzayzGFdYLHVkmkgNQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=JmWfuOmu; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="JmWfuOmu" Received: by smtp.kernel.org (Postfix) with ESMTPSA id ACBB61F00A3A; Thu, 16 Jul 2026 13:49:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784209773; bh=777dnNbNdgaQ1DIkJ4YdY9uGmK40cVPiFSyposcDu6U=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=JmWfuOmuN0lcRS85x9Gs06lnU1x4vF9CaNMDOsMiD6WiHqimxIY57KlbnG6udW7nV 4P5cP9YRPX0OaaA2gi1jgkP/u6ReRxrBBrpmbojQ2+raZ6fwhAYtG7h2osfbLuP7Zu Qp//ozU8/eta3v4yw5zNQpyQERlfgfmxjBYcTWJc= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, stable , Xu Rao , Alan Stern Subject: [PATCH 7.1 314/518] USB: storage: include US_FL_NO_SAME in quirks mask Date: Thu, 16 Jul 2026 15:29:42 +0200 Message-ID: <20260716133054.694418679@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260716133047.772246337@linuxfoundation.org> References: <20260716133047.772246337@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 7.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Xu Rao commit 2c00e09e3f9f06f8434f5ea2ee6179ce46692ee6 upstream. usb_stor_adjust_quirks() parses the usb-storage.quirks module parameter into a new flag set and then applies it with the quirk mask to override built-in flags. The mask is meant to cover the flags that can be overridden by the module parameter. The 'k' quirk character sets US_FL_NO_SAME, but US_FL_NO_SAME is not included in the mask. As a result, the module parameter can set US_FL_NO_SAME, but it cannot clear a built-in US_FL_NO_SAME flag by providing an override entry that omits 'k'. Add US_FL_NO_SAME to the mask so that the module parameter can override it in the same way as the other supported flags. Fixes: 8010622c86ca ("USB: UAS: introduce a quirk to set no_write_same") Cc: stable Signed-off-by: Xu Rao Reviewed-by: Alan Stern Link: https://patch.msgid.link/3BCE5880F9A45C2E+20260602053842.2920137-1-raoxu@uniontech.com Signed-off-by: Greg Kroah-Hartman --- drivers/usb/storage/usb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/usb/storage/usb.c +++ b/drivers/usb/storage/usb.c @@ -570,7 +570,7 @@ void usb_stor_adjust_quirks(struct usb_d US_FL_INITIAL_READ10 | US_FL_WRITE_CACHE | US_FL_NO_ATA_1X | US_FL_NO_REPORT_OPCODES | US_FL_MAX_SECTORS_240 | US_FL_NO_REPORT_LUNS | - US_FL_ALWAYS_SYNC); + US_FL_ALWAYS_SYNC | US_FL_NO_SAME); p = quirks; while (*p) {