lkml.org 
[lkml]   [2022]   [Jun]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 5.17 134/772] ipmi: Add an intializer for ipmi_smi_msg struct
    Date
    From: Corey Minyard <cminyard@mvista.com>

    [ Upstream commit 9824117dd964ecebf5d81990dbf21dfb56445049 ]

    There was a "type" element added to this structure, but some static
    values were missed. The default value will be zero, which is correct,
    but create an initializer for the type and initialize the type properly
    in the initializer to avoid future issues.

    Reported-by: Joe Wiese <jwiese@rackspace.com>
    Signed-off-by: Corey Minyard <cminyard@mvista.com>
    Signed-off-by: Sasha Levin <sashal@kernel.org>
    ---
    drivers/char/ipmi/ipmi_poweroff.c | 4 +---
    drivers/char/ipmi/ipmi_watchdog.c | 14 +++++---------
    include/linux/ipmi_smi.h | 6 ++++++
    3 files changed, 12 insertions(+), 12 deletions(-)

    diff --git a/drivers/char/ipmi/ipmi_poweroff.c b/drivers/char/ipmi/ipmi_poweroff.c
    index bc3a18daf97a..62e71c46ac5f 100644
    --- a/drivers/char/ipmi/ipmi_poweroff.c
    +++ b/drivers/char/ipmi/ipmi_poweroff.c
    @@ -94,9 +94,7 @@ static void dummy_recv_free(struct ipmi_recv_msg *msg)
    {
    atomic_dec(&dummy_count);
    }
    -static struct ipmi_smi_msg halt_smi_msg = {
    - .done = dummy_smi_free
    -};
    +static struct ipmi_smi_msg halt_smi_msg = INIT_IPMI_SMI_MSG(dummy_smi_free);
    static struct ipmi_recv_msg halt_recv_msg = {
    .done = dummy_recv_free
    };
    diff --git a/drivers/char/ipmi/ipmi_watchdog.c b/drivers/char/ipmi/ipmi_watchdog.c
    index 883b4a341012..8e536ce0a5d2 100644
    --- a/drivers/char/ipmi/ipmi_watchdog.c
    +++ b/drivers/char/ipmi/ipmi_watchdog.c
    @@ -354,9 +354,7 @@ static void msg_free_recv(struct ipmi_recv_msg *msg)
    complete(&msg_wait);
    }
    }
    -static struct ipmi_smi_msg smi_msg = {
    - .done = msg_free_smi
    -};
    +static struct ipmi_smi_msg smi_msg = INIT_IPMI_SMI_MSG(msg_free_smi);
    static struct ipmi_recv_msg recv_msg = {
    .done = msg_free_recv
    };
    @@ -475,9 +473,8 @@ static void panic_recv_free(struct ipmi_recv_msg *msg)
    atomic_dec(&panic_done_count);
    }

    -static struct ipmi_smi_msg panic_halt_heartbeat_smi_msg = {
    - .done = panic_smi_free
    -};
    +static struct ipmi_smi_msg panic_halt_heartbeat_smi_msg =
    + INIT_IPMI_SMI_MSG(panic_smi_free);
    static struct ipmi_recv_msg panic_halt_heartbeat_recv_msg = {
    .done = panic_recv_free
    };
    @@ -516,9 +513,8 @@ static void panic_halt_ipmi_heartbeat(void)
    atomic_sub(2, &panic_done_count);
    }

    -static struct ipmi_smi_msg panic_halt_smi_msg = {
    - .done = panic_smi_free
    -};
    +static struct ipmi_smi_msg panic_halt_smi_msg =
    + INIT_IPMI_SMI_MSG(panic_smi_free);
    static struct ipmi_recv_msg panic_halt_recv_msg = {
    .done = panic_recv_free
    };
    diff --git a/include/linux/ipmi_smi.h b/include/linux/ipmi_smi.h
    index 9277d21c2690..5d69820d8b02 100644
    --- a/include/linux/ipmi_smi.h
    +++ b/include/linux/ipmi_smi.h
    @@ -125,6 +125,12 @@ struct ipmi_smi_msg {
    void (*done)(struct ipmi_smi_msg *msg);
    };

    +#define INIT_IPMI_SMI_MSG(done_handler) \
    +{ \
    + .done = done_handler, \
    + .type = IPMI_SMI_MSG_TYPE_NORMAL \
    +}
    +
    struct ipmi_smi_handlers {
    struct module *owner;

    --
    2.35.1


    \
     
     \ /
      Last update: 2022-06-07 22:43    [W:3.119 / U:0.564 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site