~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/drbd_genl_api.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef DRBD_GENL_STRUCT_H
  3 #define DRBD_GENL_STRUCT_H
  4 
  5 /**
  6  * struct drbd_genlmsghdr - DRBD specific header used in NETLINK_GENERIC requests
  7  * @minor:
  8  *     For admin requests (user -> kernel): which minor device to operate on.
  9  *     For (unicast) replies or informational (broadcast) messages
 10  *     (kernel -> user): which minor device the information is about.
 11  *     If we do not operate on minors, but on connections or resources,
 12  *     the minor value shall be (~0), and the attribute DRBD_NLA_CFG_CONTEXT
 13  *     is used instead.
 14  * @flags: possible operation modifiers (relevant only for user->kernel):
 15  *     DRBD_GENL_F_SET_DEFAULTS
 16  * @volume:
 17  *     When creating a new minor (adding it to a resource), the resource needs
 18  *     to know which volume number within the resource this is supposed to be.
 19  *     The volume number corresponds to the same volume number on the remote side,
 20  *     whereas the minor number on the remote side may be different
 21  *     (union with flags).
 22  * @ret_code: kernel->userland unicast cfg reply return code (union with flags);
 23  */
 24 struct drbd_genlmsghdr {
 25         __u32 minor;
 26         union {
 27         __u32 flags;
 28         __s32 ret_code;
 29         };
 30 };
 31 
 32 /* To be used in drbd_genlmsghdr.flags */
 33 enum {
 34         DRBD_GENL_F_SET_DEFAULTS = 1,
 35 };
 36 
 37 enum drbd_state_info_bcast_reason {
 38         SIB_GET_STATUS_REPLY = 1,
 39         SIB_STATE_CHANGE = 2,
 40         SIB_HELPER_PRE = 3,
 41         SIB_HELPER_POST = 4,
 42         SIB_SYNC_PROGRESS = 5,
 43 };
 44 
 45 /* hack around predefined gcc/cpp "linux=1",
 46  * we cannot possibly include <1/drbd_genl.h> */
 47 #undef linux
 48 
 49 #include <linux/drbd.h>
 50 #define GENL_MAGIC_VERSION      1
 51 #define GENL_MAGIC_FAMILY       drbd
 52 #define GENL_MAGIC_FAMILY_HDRSZ sizeof(struct drbd_genlmsghdr)
 53 #define GENL_MAGIC_INCLUDE_FILE <linux/drbd_genl.h>
 54 #include <linux/genl_magic_struct.h>
 55 
 56 #endif
 57 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php