Skip to content

Commit

Permalink
uapi: includes linux/types.h before exporting files
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Masahiro Yamada <[email protected]>
  • Loading branch information
NicolasDichtel authored and masahir0y committed May 10, 2017
1 parent bd73a32 commit 9078b4e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion include/uapi/linux/bcache.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Bcache on disk data structures
*/

#include <asm/types.h>
#include <linux/types.h>

#define BITMASK(name, type, field, offset, size) \
static inline __u64 name(const type *k) \
Expand Down
2 changes: 2 additions & 0 deletions include/uapi/linux/btrfs_tree.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#ifndef _BTRFS_CTREE_H_
#define _BTRFS_CTREE_H_

#include <linux/types.h>

/*
* This header contains the structure definitions and constants used
* by file system objects that can be retrieved using
Expand Down
2 changes: 2 additions & 0 deletions include/uapi/linux/cryptouser.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
* 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
*/

#include <linux/types.h>

/* Netlink configuration messages. */
enum {
CRYPTO_MSG_BASE = 0x10,
Expand Down
2 changes: 2 additions & 0 deletions include/uapi/linux/pr.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#ifndef _UAPI_PR_H
#define _UAPI_PR_H

#include <linux/types.h>

enum pr_type {
PR_WRITE_EXCLUSIVE = 1,
PR_EXCLUSIVE_ACCESS = 2,
Expand Down
1 change: 1 addition & 0 deletions include/uapi/linux/qrtr.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define _LINUX_QRTR_H

#include <linux/socket.h>
#include <linux/types.h>

struct sockaddr_qrtr {
__kernel_sa_family_t sq_family;
Expand Down
2 changes: 2 additions & 0 deletions include/uapi/rdma/bnxt_re-abi.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
#ifndef __BNXT_RE_UVERBS_ABI_H__
#define __BNXT_RE_UVERBS_ABI_H__

#include <linux/types.h>

#define BNXT_RE_ABI_VERSION 1

struct bnxt_re_uctx_resp {
Expand Down

0 comments on commit 9078b4e

Please sign in to comment.