linux-usb.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] usb: gadget: mass_storage: add READ_TOC cmd mask check
@ 2022-01-26 10:08 Neal Liu
  2022-01-26 10:51 ` Greg Kroah-Hartman
  2022-01-26 16:00 ` Alan Stern
  0 siblings, 2 replies; 5+ messages in thread
From: Neal Liu @ 2022-01-26 10:08 UTC (permalink / raw)
  To: Felipe Balbi, Greg Kroah-Hartman, Alan Stern, Chen Lin,
	Wesley Cheng, Nikita Yushchenko, Cai Huoqing, linux-usb,
	linux-kernel, linux-aspeed
  Cc: Neal Liu, BMC-SW

READ_TOC cmnd[2] specifies Format Field which is defined
in SCSI-3 spec. Add command mask to avoid marking this
sense data as invalid.

Signed-off-by: Neal Liu <neal_liu@aspeedtech.com>
---
 drivers/usb/gadget/function/f_mass_storage.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/usb/gadget/function/f_mass_storage.c b/drivers/usb/gadget/function/f_mass_storage.c
index 46dd11dcb3a8..14d51695b8ae 100644
--- a/drivers/usb/gadget/function/f_mass_storage.c
+++ b/drivers/usb/gadget/function/f_mass_storage.c
@@ -1944,7 +1944,7 @@ static int do_scsi_command(struct fsg_common *common)
 		common->data_size_from_cmnd =
 			get_unaligned_be16(&common->cmnd[7]);
 		reply = check_command(common, 10, DATA_DIR_TO_HOST,
-				      (7<<6) | (1<<1), 1,
+				      (7<<6) | (1<<1) | (1<<2), 1,
 				      "READ TOC");
 		if (reply == 0)
 			reply = do_read_toc(common, bh);
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-01-27  2:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-26 10:08 [PATCH] usb: gadget: mass_storage: add READ_TOC cmd mask check Neal Liu
2022-01-26 10:51 ` Greg Kroah-Hartman
2022-01-27  2:11   ` Neal Liu
2022-01-26 16:00 ` Alan Stern
2022-01-27  2:11   ` Neal Liu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).