]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
firewire: core: correct range of block for case of switch statement
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>
Sat, 10 Aug 2024 07:04:03 +0000 (16:04 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 4 Oct 2024 14:29:28 +0000 (16:29 +0200)
[ Upstream commit ebb9d3ca8f7efc1b6a2f1750d1058eda444883d0 ]

A commit d8527cab6c31 ("firewire: cdev: implement new event to notify
response subaction with time stamp") adds an additional case,
FW_CDEV_EVENT_RESPONSE2, into switch statement in complete_transaction().
However, the range of block is beyond to the case label and reaches
neibour default label.

This commit corrects the range of block. Fortunately, it has few impacts
in practice since the local variable in the scope under the label is not
used in codes under default label.

Fixes: d8527cab6c31 ("firewire: cdev: implement new event to notify response subaction with time stamp")
Link: https://lore.kernel.org/r/20240810070403.36801-1-o-takashi@sakamocchi.jp
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/firewire/core-cdev.c

index 6274b86eb943774bc9ec9b362c7ef20f7461f1dd..73cc2f2dcbf92358b9686431765224e48dbe52bb 100644 (file)
@@ -598,11 +598,11 @@ static void complete_transaction(struct fw_card *card, int rcode, u32 request_ts
                queue_event(client, &e->event, rsp, sizeof(*rsp) + rsp->length, NULL, 0);
 
                break;
+       }
        default:
                WARN_ON(1);
                break;
        }
-       }
 
        /* Drop the idr's reference */
        client_put(client);