lvs-devel
|
To: | lvs-devel@xxxxxxxxxxxxxxx, netdev@xxxxxxxxxxxxxxx, netfilter@xxxxxxxxxxxxxxx, netfilter-devel@xxxxxxxxxxxxxxx |
---|---|
Subject: | [patch v2 1/2] [PATCH 1/2] Slightly simplify options conflicts logic |
Cc: | Jan Engelhardt <jengelh@xxxxxxxxxx>, Stephen Hemminger <shemminger@xxxxxxxxxx>, Wensong Zhang <wensong@xxxxxxxxxxxx>, Julian Anastasov <ja@xxxxxx>, Patrick McHardy <kaber@xxxxxxxxx> |
From: | Simon Horman <horms@xxxxxxxxxxxx> |
Date: | Fri, 01 Oct 2010 23:40:42 +0900 |
Signed-off-by: Simon Horman <horms@xxxxxxxxxxxx> diff --git a/ipvsadm.c b/ipvsadm.c index 76ec7c4..1ac6c7f 100644 --- a/ipvsadm.c +++ b/ipvsadm.c @@ -763,11 +763,9 @@ static int process_options(int argc, char **argv, int reading_stdin) switch (ce.cmd) { case CMD_LIST: - if ((options & OPT_CONNECTION || - options & OPT_TIMEOUT || options & OPT_DAEMON) && - (options & OPT_STATS || - options & OPT_PERSISTENTCONN || - options & OPT_RATE || options & OPT_THRESHOLDS)) + if (options & (OPT_CONNECTION|OPT_TIMEOUT|OPT_DAEMON) && + options & (OPT_STATS|OPT_PERSISTENTCONN| + OPT_RATE|OPT_THRESHOLDS)) fail(2, "options conflicts in the list command"); if (options & OPT_CONNECTION) -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe lvs-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html |
<Prev in Thread] | Current Thread | [Next in Thread> |
---|---|---|
|
Previous by Date: | [patch v2 00/12] IPVS: SIP Persistence Engine, Simon Horman |
---|---|
Next by Date: | [patch v2 01/12] [PATCH 01/12] netfilter: nf_conntrack_sip: Allow ct_sip_get_header() to be called with a null ct argument, Simon Horman |
Previous by Thread: | [patch v2 0/2] [patch v1 0/2] ipvsadm: SIP Persistence Engine, Simon Horman |
Next by Thread: | [patch v2 2/2] [PATCH 2/2] Add support for persistence engines., Simon Horman |
Indexes: | [Date] [Thread] [Top] [All Lists] |