[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAHp75VfXPxoQjeOTMRmO=Yf3YSsGJh2xRRSm9U7wTpRx9N8Bgw@mail.gmail.com>
Date: Thu, 9 Jul 2020 19:32:17 +0300
From: Andy Shevchenko <andy.shevchenko@...il.com>
To: Vadim Pasternak <vadimp@...lanox.com>
Cc: Andy Shevchenko <andy@...radead.org>,
Darren Hart <dvhart@...radead.org>,
Platform Driver <platform-driver-x86@...r.kernel.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH platform-next v1 2/8] platform/mellanox: mlxreg-hotplug:
Add environmental data to uevent
On Mon, Jun 1, 2020 at 12:19 PM Vadim Pasternak <vadimp@...lanox.com> wrote:
>
> Send "udev" event with environmental data in order to allow handling
> "ENV{}" variables in "udev" rules.
...
> +static int
> +mlxreg_hotplug_udev_event_send(struct kobject *kobj,
> + struct mlxreg_core_data *data, bool action)
> +{
> + char event_str[MLXREG_CORE_LABEL_MAX_SIZE + 2];
> + char label[MLXREG_CORE_LABEL_MAX_SIZE] = { 0 };
> + int i;
> +
> + mlxreg_hotplug_udev_envp[0] = event_str;
> + for (i = 0; data->label[i]; i++)
> + label[i] = toupper(data->label[i]);
Sounds like a candidate to be in string_helpers.h
#include <ctype.h>
...
static inline void string_upper(char *dst, const char *src)
{
do {
*dst++ = toupper(*src);
} while (*src++);
}
// similar for tolower
...
There are plenty existing users that can benefit and I can imagine how
many more will come.
So, If you add the first patch in the series to bring this in, I will take it.
> + if (action)
> + snprintf(event_str, MLXREG_CORE_LABEL_MAX_SIZE, "%s=1", label);
> + else
> + snprintf(event_str, MLXREG_CORE_LABEL_MAX_SIZE, "%s=0", label);
Wouldn't be easier to have
..."%s=%d" ... !!action...
?
> +
> + return kobject_uevent_env(kobj, KOBJ_CHANGE, mlxreg_hotplug_udev_envp);
> +}
--
With Best Regards,
Andy Shevchenko
Powered by blists - more mailing lists