You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
2.1 KiB
52 lines
2.1 KiB
/****************************************************************************
|
|
****************************************************************************
|
|
***
|
|
*** This header was automatically generated from a Linux kernel header
|
|
*** of the same name, to make information necessary for userspace to
|
|
*** call into the kernel available to libc. It contains only constants,
|
|
*** structures, and macros generated from the original header, and thus,
|
|
*** contains no copyrightable information.
|
|
***
|
|
*** To edit the content of this header, modify the corresponding
|
|
*** source file (e.g. under external/kernel-headers/original/) then
|
|
*** run bionic/libc/kernel/tools/update_all.py
|
|
***
|
|
*** Any manual change here will be lost the next time this script will
|
|
*** be run. You've been warned!
|
|
***
|
|
****************************************************************************
|
|
****************************************************************************/
|
|
#ifndef SCSI_NETLINK_H
|
|
#define SCSI_NETLINK_H
|
|
#include <linux/netlink.h>
|
|
#include <linux/types.h>
|
|
#define SCSI_TRANSPORT_MSG NLMSG_MIN_TYPE + 1
|
|
#define SCSI_NL_GRP_FC_EVENTS (1 << 2)
|
|
#define SCSI_NL_GRP_CNT 3
|
|
struct scsi_nl_hdr {
|
|
__u8 version;
|
|
__u8 transport;
|
|
__u16 magic;
|
|
__u16 msgtype;
|
|
__u16 msglen;
|
|
} __attribute__((aligned(sizeof(__u64))));
|
|
#define SCSI_NL_VERSION 1
|
|
#define SCSI_NL_MAGIC 0xA1B2
|
|
#define SCSI_NL_TRANSPORT 0
|
|
#define SCSI_NL_TRANSPORT_FC 1
|
|
#define SCSI_NL_MAX_TRANSPORTS 2
|
|
#define SCSI_NL_SHOST_VENDOR 0x0001
|
|
#define SCSI_NL_MSGALIGN(len) (((len) + 7) & ~7)
|
|
struct scsi_nl_host_vendor_msg {
|
|
struct scsi_nl_hdr snlh;
|
|
__u64 vendor_id;
|
|
__u16 host_no;
|
|
__u16 vmsg_datalen;
|
|
} __attribute__((aligned(sizeof(__u64))));
|
|
#define SCSI_NL_VID_TYPE_SHIFT 56
|
|
#define SCSI_NL_VID_TYPE_MASK ((__u64) 0xFF << SCSI_NL_VID_TYPE_SHIFT)
|
|
#define SCSI_NL_VID_TYPE_PCI ((__u64) 0x01 << SCSI_NL_VID_TYPE_SHIFT)
|
|
#define SCSI_NL_VID_ID_MASK (~SCSI_NL_VID_TYPE_MASK)
|
|
#define INIT_SCSI_NL_HDR(hdr,t,mtype,mlen) { (hdr)->version = SCSI_NL_VERSION; (hdr)->transport = t; (hdr)->magic = SCSI_NL_MAGIC; (hdr)->msgtype = mtype; (hdr)->msglen = mlen; }
|
|
#endif
|