lkml.org 
[lkml]   [2022]   [Jun]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 5.17 170/298] amt: fix wrong type string definition
    Date
    From: Taehee Yoo <ap420073@gmail.com>

    [ Upstream commit d7970039d87c926bb648982e920cb9851c19f3e1 ]

    amt message type definition starts from 1, not 0.
    But type_str[] starts from 0.
    So, it prints wrong type information.

    Fixes: cbc21dc1cfe9 ("amt: add data plane of amt interface")
    Signed-off-by: Taehee Yoo <ap420073@gmail.com>
    Signed-off-by: Jakub Kicinski <kuba@kernel.org>
    Signed-off-by: Sasha Levin <sashal@kernel.org>
    ---
    drivers/net/amt.c | 1 +
    1 file changed, 1 insertion(+)

    diff --git a/drivers/net/amt.c b/drivers/net/amt.c
    index e239c0262d56..83e5fe784f5c 100644
    --- a/drivers/net/amt.c
    +++ b/drivers/net/amt.c
    @@ -51,6 +51,7 @@ static char *status_str[] = {
    };

    static char *type_str[] = {
    + "", /* Type 0 is not defined */
    "AMT_MSG_DISCOVERY",
    "AMT_MSG_ADVERTISEMENT",
    "AMT_MSG_REQUEST",
    --
    2.35.1


    \
     
     \ /
      Last update: 2022-06-13 16:35    [W:3.376 / U:0.020 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site