All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH RFC net-next 01/16] mctp: Add MCTP base
Date: Thu, 03 Jun 2021 20:34:23 +0800	[thread overview]
Message-ID: <202106032045.rBfTFvV5-lkp@intel.com> (raw)
In-Reply-To: <20210603065218.570867-2-jk@codeconstruct.com.au>

[-- Attachment #1: Type: text/plain, Size: 21119 bytes --]

Hi Jeremy,

[FYI, it's a private test report for your RFC patch.]
[auto build test ERROR on net-next/master]

url:    https://github.com/0day-ci/linux/commits/Jeremy-Kerr/Add-Management-Controller-Transport-Protocol-support/20210603-150138
base:   https://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git 270d47dc1fc4756a0158778084a236bc83c156d2
config: i386-defconfig (attached as .config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
reproduce (this is a W=1 build):
        # https://github.com/0day-ci/linux/commit/4ce09506b18df61db33f182daf3111f060da64fd
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Jeremy-Kerr/Add-Management-Controller-Transport-Protocol-support/20210603-150138
        git checkout 4ce09506b18df61db33f182daf3111f060da64fd
        # save the attached .config to linux build tree
        make W=1 ARCH=i386 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   In file included from security/selinux/avc.c:32:
>> security/selinux/include/classmap.h:259:2: error: #error New address family defined, please update secclass_map.
     259 | #error New address family defined, please update secclass_map.
         |  ^~~~~


vim +259 security/selinux/include/classmap.h

3322d0d64f4e94 Stephen Smalley         2016-11-18   36  
4bc6c2d5d83868 Harry Ciao              2011-03-02   37  /*
4bc6c2d5d83868 Harry Ciao              2011-03-02   38   * Note: The name for any socket class should be suffixed by "socket",
4bc6c2d5d83868 Harry Ciao              2011-03-02   39   *	 and doesn't contain more than one substr of "socket".
4bc6c2d5d83868 Harry Ciao              2011-03-02   40   */
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   41  struct security_class_mapping secclass_map[] = {
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   42  	{ "security",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   43  	  { "compute_av", "compute_create", "compute_member",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   44  	    "check_context", "load_policy", "compute_relabel",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   45  	    "compute_user", "setenforce", "setbool", "setsecparam",
f9df6458218f4f Andrew Perepechko       2015-12-24   46  	    "setcheckreqprot", "read_policy", "validate_trans", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   47  	{ "process",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   48  	  { "fork", "transition", "sigchld", "sigkill",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   49  	    "sigstop", "signull", "signal", "ptrace", "getsched", "setsched",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   50  	    "getsession", "getpgid", "setpgid", "getcap", "setcap", "share",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   51  	    "getattr", "setexec", "setfscreate", "noatsecure", "siginh",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   52  	    "setrlimit", "rlimitinh", "dyntransition", "setcurrent",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   53  	    "execmem", "execstack", "execheap", "setkeycreate",
791ec491c372f4 Stephen Smalley         2017-02-17   54  	    "setsockcreate", "getrlimit", NULL } },
af63f4193f9fbb Stephen Smalley         2017-07-31   55  	{ "process2",
af63f4193f9fbb Stephen Smalley         2017-07-31   56  	  { "nnp_transition", "nosuid_transition", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   57  	{ "system",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   58  	  { "ipc_info", "syslog_read", "syslog_mod",
61d612ea731e57 Jeff Vander Stoep       2016-04-05   59  	    "syslog_console", "module_request", "module_load", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   60  	{ "capability",
8e4ff6f228e472 Stephen Smalley         2016-04-08   61  	  { COMMON_CAP_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   62  	{ "filesystem",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   63  	  { "mount", "remount", "unmount", "getattr",
42a9699a9fa179 Stephen Smalley         2015-06-04   64  	    "relabelfrom", "relabelto", "associate", "quotamod",
ac5656d8a4cdd9 Aaron Goidel            2019-08-12   65  	    "quotaget", "watch", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   66  	{ "file",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   67  	  { COMMON_FILE_PERMS,
b424485abe2b16 Eric Paris              2010-07-23   68  	    "execute_no_trans", "entrypoint", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   69  	{ "dir",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   70  	  { COMMON_FILE_PERMS, "add_name", "remove_name",
49b7b8de46d293 Eric Paris              2010-07-23   71  	    "reparent", "search", "rmdir", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   72  	{ "fd", { "use", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   73  	{ "lnk_file",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   74  	  { COMMON_FILE_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   75  	{ "chr_file",
b424485abe2b16 Eric Paris              2010-07-23   76  	  { COMMON_FILE_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   77  	{ "blk_file",
49b7b8de46d293 Eric Paris              2010-07-23   78  	  { COMMON_FILE_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   79  	{ "sock_file",
49b7b8de46d293 Eric Paris              2010-07-23   80  	  { COMMON_FILE_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   81  	{ "fifo_file",
49b7b8de46d293 Eric Paris              2010-07-23   82  	  { COMMON_FILE_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   83  	{ "socket",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   84  	  { COMMON_SOCK_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   85  	{ "tcp_socket",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   86  	  { COMMON_SOCK_PERMS,
42a9699a9fa179 Stephen Smalley         2015-06-04   87  	    "node_bind", "name_connect",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   88  	    NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   89  	{ "udp_socket",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   90  	  { COMMON_SOCK_PERMS,
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   91  	    "node_bind", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   92  	{ "rawip_socket",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   93  	  { COMMON_SOCK_PERMS,
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   94  	    "node_bind", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   95  	{ "node",
42a9699a9fa179 Stephen Smalley         2015-06-04   96  	  { "recvfrom", "sendto", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   97  	{ "netif",
42a9699a9fa179 Stephen Smalley         2015-06-04   98  	  { "ingress", "egress", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30   99  	{ "netlink_socket",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  100  	  { COMMON_SOCK_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  101  	{ "packet_socket",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  102  	  { COMMON_SOCK_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  103  	{ "key_socket",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  104  	  { COMMON_SOCK_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  105  	{ "unix_stream_socket",
42a9699a9fa179 Stephen Smalley         2015-06-04  106  	  { COMMON_SOCK_PERMS, "connectto", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  107  	{ "unix_dgram_socket",
42a9699a9fa179 Stephen Smalley         2015-06-04  108  	  { COMMON_SOCK_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  109  	{ "sem",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  110  	  { COMMON_IPC_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  111  	{ "msg", { "send", "receive", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  112  	{ "msgq",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  113  	  { COMMON_IPC_PERMS, "enqueue", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  114  	{ "shm",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  115  	  { COMMON_IPC_PERMS, "lock", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  116  	{ "ipc",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  117  	  { COMMON_IPC_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  118  	{ "netlink_route_socket",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  119  	  { COMMON_SOCK_PERMS,
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  120  	    "nlmsg_read", "nlmsg_write", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  121  	{ "netlink_tcpdiag_socket",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  122  	  { COMMON_SOCK_PERMS,
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  123  	    "nlmsg_read", "nlmsg_write", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  124  	{ "netlink_nflog_socket",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  125  	  { COMMON_SOCK_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  126  	{ "netlink_xfrm_socket",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  127  	  { COMMON_SOCK_PERMS,
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  128  	    "nlmsg_read", "nlmsg_write", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  129  	{ "netlink_selinux_socket",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  130  	  { COMMON_SOCK_PERMS, NULL } },
6c6d2e9bde1c1c Stephen Smalley         2015-06-04  131  	{ "netlink_iscsi_socket",
6c6d2e9bde1c1c Stephen Smalley         2015-06-04  132  	  { COMMON_SOCK_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  133  	{ "netlink_audit_socket",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  134  	  { COMMON_SOCK_PERMS,
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  135  	    "nlmsg_read", "nlmsg_write", "nlmsg_relay", "nlmsg_readpriv",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  136  	    "nlmsg_tty_audit", NULL } },
6c6d2e9bde1c1c Stephen Smalley         2015-06-04  137  	{ "netlink_fib_lookup_socket",
6c6d2e9bde1c1c Stephen Smalley         2015-06-04  138  	  { COMMON_SOCK_PERMS, NULL } },
6c6d2e9bde1c1c Stephen Smalley         2015-06-04  139  	{ "netlink_connector_socket",
6c6d2e9bde1c1c Stephen Smalley         2015-06-04  140  	  { COMMON_SOCK_PERMS, NULL } },
6c6d2e9bde1c1c Stephen Smalley         2015-06-04  141  	{ "netlink_netfilter_socket",
6c6d2e9bde1c1c Stephen Smalley         2015-06-04  142  	  { COMMON_SOCK_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  143  	{ "netlink_dnrt_socket",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  144  	  { COMMON_SOCK_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  145  	{ "association",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  146  	  { "sendto", "recvfrom", "setcontext", "polmatch", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  147  	{ "netlink_kobject_uevent_socket",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  148  	  { COMMON_SOCK_PERMS, NULL } },
6c6d2e9bde1c1c Stephen Smalley         2015-06-04  149  	{ "netlink_generic_socket",
6c6d2e9bde1c1c Stephen Smalley         2015-06-04  150  	  { COMMON_SOCK_PERMS, NULL } },
6c6d2e9bde1c1c Stephen Smalley         2015-06-04  151  	{ "netlink_scsitransport_socket",
6c6d2e9bde1c1c Stephen Smalley         2015-06-04  152  	  { COMMON_SOCK_PERMS, NULL } },
6c6d2e9bde1c1c Stephen Smalley         2015-06-04  153  	{ "netlink_rdma_socket",
6c6d2e9bde1c1c Stephen Smalley         2015-06-04  154  	  { COMMON_SOCK_PERMS, NULL } },
6c6d2e9bde1c1c Stephen Smalley         2015-06-04  155  	{ "netlink_crypto_socket",
6c6d2e9bde1c1c Stephen Smalley         2015-06-04  156  	  { COMMON_SOCK_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  157  	{ "appletalk_socket",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  158  	  { COMMON_SOCK_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  159  	{ "packet",
47ac19ea429aee Eric Paris              2011-02-25  160  	  { "send", "recv", "relabelto", "forward_in", "forward_out", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  161  	{ "key",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  162  	  { "view", "read", "write", "search", "link", "setattr", "create",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  163  	    NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  164  	{ "dccp_socket",
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  165  	  { COMMON_SOCK_PERMS,
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  166  	    "node_bind", "name_connect", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  167  	{ "memprotect", { "mmap_zero", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  168  	{ "peer", { "recv", NULL } },
64919e60915c51 Eric Paris              2012-07-06  169  	{ "capability2",
8e4ff6f228e472 Stephen Smalley         2016-04-08  170  	  { COMMON_CAP2_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  171  	{ "kernel_service", { "use_as_override", "create_files_as", NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  172  	{ "tun_socket",
6f96c142f77c96 Paul Moore              2013-01-14  173  	  { COMMON_SOCK_PERMS, "attach_queue", NULL } },
79af73079d753b Stephen Smalley         2015-01-21  174  	{ "binder", { "impersonate", "call", "set_context_mgr", "transfer",
79af73079d753b Stephen Smalley         2015-01-21  175  		      NULL } },
8e4ff6f228e472 Stephen Smalley         2016-04-08  176  	{ "cap_userns",
8e4ff6f228e472 Stephen Smalley         2016-04-08  177  	  { COMMON_CAP_PERMS, NULL } },
8e4ff6f228e472 Stephen Smalley         2016-04-08  178  	{ "cap2_userns",
8e4ff6f228e472 Stephen Smalley         2016-04-08  179  	  { COMMON_CAP2_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  180  	{ "sctp_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  181  	  { COMMON_SOCK_PERMS,
d452930fd3b903 Richard Haines          2018-02-13  182  	    "node_bind", "name_connect", "association", NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  183  	{ "icmp_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  184  	  { COMMON_SOCK_PERMS,
da69a5306ab92e Stephen Smalley         2017-01-09  185  	    "node_bind", NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  186  	{ "ax25_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  187  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  188  	{ "ipx_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  189  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  190  	{ "netrom_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  191  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  192  	{ "atmpvc_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  193  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  194  	{ "x25_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  195  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  196  	{ "rose_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  197  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  198  	{ "decnet_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  199  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  200  	{ "atmsvc_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  201  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  202  	{ "rds_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  203  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  204  	{ "irda_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  205  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  206  	{ "pppox_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  207  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  208  	{ "llc_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  209  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  210  	{ "can_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  211  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  212  	{ "tipc_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  213  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  214  	{ "bluetooth_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  215  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  216  	{ "iucv_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  217  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  218  	{ "rxrpc_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  219  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  220  	{ "isdn_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  221  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  222  	{ "phonet_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  223  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  224  	{ "ieee802154_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  225  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  226  	{ "caif_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  227  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  228  	{ "alg_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  229  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  230  	{ "nfc_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  231  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  232  	{ "vsock_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  233  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  234  	{ "kcm_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  235  	  { COMMON_SOCK_PERMS, NULL } },
da69a5306ab92e Stephen Smalley         2017-01-09  236  	{ "qipcrtr_socket",
da69a5306ab92e Stephen Smalley         2017-01-09  237  	  { COMMON_SOCK_PERMS, NULL } },
3051bf36c25d51 Linus Torvalds          2017-02-22  238  	{ "smc_socket",
3051bf36c25d51 Linus Torvalds          2017-02-22  239  	  { COMMON_SOCK_PERMS, NULL } },
cfc4d882d41780 Daniel Jurgens          2017-05-19  240  	{ "infiniband_pkey",
cfc4d882d41780 Daniel Jurgens          2017-05-19  241  	  { "access", NULL } },
ab861dfca1652a Daniel Jurgens          2017-05-19  242  	{ "infiniband_endport",
ab861dfca1652a Daniel Jurgens          2017-05-19  243  	  { "manage_subnet", NULL } },
ec27c3568a34c7 Chenbo Feng             2017-10-18  244  	{ "bpf",
e4c82eafb609c2 Paul Moore              2021-04-21  245  	  { "map_create", "map_read", "map_write", "prog_load", "prog_run",
e4c82eafb609c2 Paul Moore              2021-04-21  246  	    NULL } },
68e8b849b221b3 Björn Töpel             2018-05-02  247  	{ "xdp_socket",
68e8b849b221b3 Björn Töpel             2018-05-02  248  	  { COMMON_SOCK_PERMS, NULL } },
da97e18458fb42 Joel Fernandes (Google  2019-10-14  249) 	{ "perf_event",
e4c82eafb609c2 Paul Moore              2021-04-21  250  	  { "open", "cpu", "kernel", "tracepoint", "read", "write", NULL } },
59438b46471ae6 Stephen Smalley         2019-11-27  251  	{ "lockdown",
59438b46471ae6 Stephen Smalley         2019-11-27  252  	  { "integrity", "confidentiality", NULL } },
29cd6591ab6fee Daniel Colascione       2021-01-08  253  	{ "anon_inode",
29cd6591ab6fee Daniel Colascione       2021-01-08  254  	  { COMMON_FILE_PERMS, NULL } },
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  255  	{ NULL }
c6d3aaa4e35c71 Stephen Smalley         2009-09-30  256    };
da69a5306ab92e Stephen Smalley         2017-01-09  257  
68e8b849b221b3 Björn Töpel             2018-05-02  258  #if PF_MAX > 45
da69a5306ab92e Stephen Smalley         2017-01-09 @259  #error New address family defined, please update secclass_map.

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 29260 bytes --]

  parent reply	other threads:[~2021-06-03 12:34 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-03  6:52 [PATCH RFC net-next 00/16] Add Management Controller Transport Protocol support Jeremy Kerr
2021-06-03  6:52 ` [PATCH RFC net-next 01/16] mctp: Add MCTP base Jeremy Kerr
2021-06-03  8:41   ` kernel test robot
2021-06-03 12:34   ` kernel test robot [this message]
2021-06-03  6:52 ` [PATCH RFC net-next 02/16] mctp: Add base socket/protocol definitions Jeremy Kerr
2021-06-03  6:52 ` [PATCH RFC net-next 03/16] mctp: Add base packet definitions Jeremy Kerr
2021-06-03  6:52 ` [PATCH RFC net-next 04/16] mctp: Add sockaddr_mctp to uapi Jeremy Kerr
2021-06-03  6:52 ` [PATCH RFC net-next 05/16] mctp: Add initial driver infrastructure Jeremy Kerr
2021-06-03  6:52 ` [PATCH RFC net-next 06/16] mctp: Add device handling and netlink interface Jeremy Kerr
2021-06-03  6:52 ` [PATCH RFC net-next 07/16] mctp: Add initial routing framework Jeremy Kerr
2021-06-03  6:52 ` [PATCH RFC net-next 08/16] mctp: Add netlink route management Jeremy Kerr
2021-06-03  6:52 ` [PATCH RFC net-next 09/16] mctp: Add neighbour implementation Jeremy Kerr
2021-06-03  6:52 ` [PATCH RFC net-next 10/16] mctp: Add neighbour netlink interface Jeremy Kerr
2021-06-03  6:52 ` [PATCH RFC net-next 11/16] mctp: Populate socket implementation Jeremy Kerr
2021-06-03  6:52 ` [PATCH RFC net-next 12/16] mctp: Add dest neighbour lladdr to route output Jeremy Kerr
2021-06-03  6:52 ` [PATCH RFC net-next 13/16] mctp: Implement message fragmentation & reassembly Jeremy Kerr
2021-06-03  6:52 ` [PATCH RFC net-next 14/16] mctp: Allow per-netns default networks Jeremy Kerr
2021-06-03  6:52 ` [PATCH RFC net-next 15/16] mctp: Allow MCTP on tun devices Jeremy Kerr
2021-06-03  6:52 ` [PATCH RFC net-next 16/16] mctp: Add MCTP overview document Jeremy Kerr

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202106032045.rBfTFvV5-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.