mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 02:24:24 +02:00
A small change to improve type safety/const correctness.
__COMPAT_read_enum() already has const string parameters.
It fixes a warning when using the header in C++ code:
error: ISO C++11 does not allow conversion from string literal
to 'char *' [-Werror,-Wwritable-strings]
That's because string literals have type char[N] in C and
const char[N] in C++.
Signed-off-by: Kuba Piecuch <jpiecuch@google.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
29 lines
583 B
C
29 lines
583 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Define struct scx_enums that stores the load-time values of enums
|
|
* used by the BPF program.
|
|
*
|
|
* Copyright (c) 2024 Meta Platforms, Inc. and affiliates.
|
|
*/
|
|
|
|
#ifndef __SCX_ENUMS_H
|
|
#define __SCX_ENUMS_H
|
|
|
|
static inline void __ENUM_set(u64 *val, const char *type, const char *name)
|
|
{
|
|
bool res;
|
|
|
|
res = __COMPAT_read_enum(type, name, val);
|
|
if (!res)
|
|
*val = 0;
|
|
}
|
|
|
|
#define SCX_ENUM_SET(skel, type, name) do { \
|
|
__ENUM_set(&skel->rodata->__##name, #type, #name); \
|
|
} while (0)
|
|
|
|
|
|
#include "enums.autogen.h"
|
|
|
|
#endif /* __SCX_ENUMS_H */
|