mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 09:36:22 +02:00
drbd.h and drbd_limits.h contain only type definitions, enums, and constants shared between kernel and userspace. These should be part of UAPI. Split the genl_api header into two: the genlmsghdr and the enums are UAPI, the rest stays there for now (it will be removed by one of the next commits in this series). drbd_config.h is clearly DRBD-internal, so move it there. Signed-off-by: Christoph Böhmwalder <christoph.boehmwalder@linbit.com> Acked-by: Jakub Kicinski <kuba@kernel.org> Link: https://patch.msgid.link/20260506124541.1951772-2-christoph.boehmwalder@linbit.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
17 lines
285 B
C
17 lines
285 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* drbd_config.h
|
|
* DRBD's compile time configuration.
|
|
*/
|
|
|
|
#ifndef DRBD_CONFIG_H
|
|
#define DRBD_CONFIG_H
|
|
|
|
extern const char *drbd_buildtag(void);
|
|
|
|
#define REL_VERSION "8.4.11"
|
|
#define PRO_VERSION_MIN 86
|
|
#define PRO_VERSION_MAX 101
|
|
|
|
#endif
|