2016-05-06 21:09:08 +07:00
|
|
|
#ifndef _LINUX_QRTR_H
|
|
|
|
#define _LINUX_QRTR_H
|
|
|
|
|
|
|
|
#include <linux/socket.h>
|
uapi: includes linux/types.h before exporting files
Some files will be exported after a following patch. 0-day tests report the
following warning/error:
./usr/include/linux/bcache.h:8: include of <linux/types.h> is preferred over <asm/types.h>
./usr/include/linux/bcache.h:11: found __[us]{8,16,32,64} type without #include <linux/types.h>
./usr/include/linux/qrtr.h:8: found __[us]{8,16,32,64} type without #include <linux/types.h>
./usr/include/linux/cryptouser.h:39: found __[us]{8,16,32,64} type without #include <linux/types.h>
./usr/include/linux/pr.h:14: found __[us]{8,16,32,64} type without #include <linux/types.h>
./usr/include/linux/btrfs_tree.h:337: found __[us]{8,16,32,64} type without #include <linux/types.h>
./usr/include/rdma/bnxt_re-abi.h:45: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2017-03-27 19:20:11 +07:00
|
|
|
#include <linux/types.h>
|
2016-05-06 21:09:08 +07:00
|
|
|
|
2017-10-11 13:45:18 +07:00
|
|
|
#define QRTR_NODE_BCAST 0xffffffffu
|
|
|
|
#define QRTR_PORT_CTRL 0xfffffffeu
|
|
|
|
|
2016-05-06 21:09:08 +07:00
|
|
|
struct sockaddr_qrtr {
|
|
|
|
__kernel_sa_family_t sq_family;
|
|
|
|
__u32 sq_node;
|
|
|
|
__u32 sq_port;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _LINUX_QRTR_H */
|