diff mbox series

ublk: fix command op code check

Message ID 20230505153142.1258336-1-ming.lei@redhat.com (mailing list archive)
State New, archived
Headers show
Series ublk: fix command op code check | expand

Commit Message

Ming Lei May 5, 2023, 3:31 p.m. UTC
In case of CONFIG_BLKDEV_UBLK_LEGACY_OPCODES, type of cmd opcode could
be 0 or 'u'; and type can only be 'u' if CONFIG_BLKDEV_UBLK_LEGACY_OPCODES
isn't set.

So fix the wrong check.

Fixes: 2d786e66c966 ("block: ublk: switch to ioctl command encoding")
Signed-off-by: Ming Lei <ming.lei@redhat.com>
---
 drivers/block/ublk_drv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Ming Lei May 12, 2023, 3:08 p.m. UTC | #1
On Fri, May 05, 2023 at 11:31:42PM +0800, Ming Lei wrote:
> In case of CONFIG_BLKDEV_UBLK_LEGACY_OPCODES, type of cmd opcode could
> be 0 or 'u'; and type can only be 'u' if CONFIG_BLKDEV_UBLK_LEGACY_OPCODES
> isn't set.
> 
> So fix the wrong check.
> 
> Fixes: 2d786e66c966 ("block: ublk: switch to ioctl command encoding")
> Signed-off-by: Ming Lei <ming.lei@redhat.com>

Hello Jens,

Can you queue this fix for 6.3?


Thanks,
Ming
Jens Axboe May 12, 2023, 3:09 p.m. UTC | #2
On 5/12/23 9:08 AM, Ming Lei wrote:
> On Fri, May 05, 2023 at 11:31:42PM +0800, Ming Lei wrote:
>> In case of CONFIG_BLKDEV_UBLK_LEGACY_OPCODES, type of cmd opcode could
>> be 0 or 'u'; and type can only be 'u' if CONFIG_BLKDEV_UBLK_LEGACY_OPCODES
>> isn't set.
>>
>> So fix the wrong check.
>>
>> Fixes: 2d786e66c966 ("block: ublk: switch to ioctl command encoding")
>> Signed-off-by: Ming Lei <ming.lei@redhat.com>
> 
> Hello Jens,
> 
> Can you queue this fix for 6.3?

Done, for 6.4 though.
Jens Axboe May 12, 2023, 3:09 p.m. UTC | #3
On Fri, 05 May 2023 23:31:42 +0800, Ming Lei wrote:
> In case of CONFIG_BLKDEV_UBLK_LEGACY_OPCODES, type of cmd opcode could
> be 0 or 'u'; and type can only be 'u' if CONFIG_BLKDEV_UBLK_LEGACY_OPCODES
> isn't set.
> 
> So fix the wrong check.
> 
> 
> [...]

Applied, thanks!

[1/1] ublk: fix command op code check
      commit: e485bd9e2c419142430ae6fe3e8f64e3059aef50

Best regards,
diff mbox series

Patch

diff --git a/drivers/block/ublk_drv.c b/drivers/block/ublk_drv.c
index 72a5cde9a5af..92cb2eb384f2 100644
--- a/drivers/block/ublk_drv.c
+++ b/drivers/block/ublk_drv.c
@@ -1281,7 +1281,7 @@  static inline int ublk_check_cmd_op(u32 cmd_op)
 {
 	u32 ioc_type = _IOC_TYPE(cmd_op);
 
-	if (IS_ENABLED(CONFIG_BLKDEV_UBLK_LEGACY_OPCODES) && ioc_type != 'u')
+	if (!IS_ENABLED(CONFIG_BLKDEV_UBLK_LEGACY_OPCODES) && ioc_type != 'u')
 		return -EOPNOTSUPP;
 
 	if (ioc_type != 'u' && ioc_type != 0)