/* * Copyright (C) 1997 Martin Mares * * Automatic IP Layer Configuration */ /* The following are initdata: */ extern int ic_proto_enabled; /* Protocols enabled (see IC_xxx) */ extern int ic_set_manually; /* IPconfig parameters set manually */ extern __be32 ic_myaddr; /* My IP address */ extern __be32 ic_gateway; /* Gateway IP address */ extern __be32 ic_servaddr; /* Boot server IP address */ extern __be32 root_server_addr; /* Address of NFS server */ extern u8 root_server_path[]; /* Path to mount as root */ /* bits in ic_proto_{enabled,used} */ #define IC_PROTO 0xFF /* Protocols mask: */ #define IC_BOOTP 0x01 /* BOOTP (or DHCP, see below) */ #define IC_RARP 0x02 /* RARP */ #define IC_USE_DHCP 0x100 /* If on, use DHCP instead of BOOTP */ index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/Documentation/arm
diff options
context:
space:
mode:
authorKees Cook <keescook@chromium.org>2016-05-16 05:55:58 -0700
committerMichal Marek <mmarek@suse.com>2016-05-19 09:56:59 +0200
commit2552a39facb6609007a02eeda5d5edee4fcaca30 (patch)
tree4c75e6b7bc648a7d8b8f3ff058362625960446b6 /Documentation/arm
parent65a9f31c5042e5bb50d30ed8ae374044be561054 (diff)
coccicheck: Fix missing 0 index in kill loop
By default, "seq" counts from 1, but processes were starting counting from 0, so when interrupted, coccicheck would leave the 0th process running. Signed-off-by: Kees Cook <keescook@chromium.org> Acked-by: Nicolas Palix <nicolas.palix@imag.fr> Acked-by: Julia Lawall <julia.lawall@lip6.fr> Signed-off-by: Michal Marek <mmarek@suse.com>
Diffstat (limited to 'Documentation/arm')