From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f51.google.com (mail-wg0-f51.google.com [74.125.82.51]) by dpdk.org (Postfix) with ESMTP id D77F137AF for ; Fri, 3 Jul 2015 22:28:15 +0200 (CEST) Received: by wgqq4 with SMTP id q4so95878946wgq.1 for ; Fri, 03 Jul 2015 13:28:15 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=ZUa+7/G5YxZu+4RaEVgm74GemK/YmJOJqNWueosx3a4=; b=cilpaa12ndYwHFKGeYjM3B3DeU7FOu/ivNGi3yDNzmPQALR15o0v3xYnBKFz3h9fNq byZ2E3KobNtB5nYpdDTVblAgJy7BIQyrSvmMkv8ltlW71j9WhcXENQtAuVr0k1ZJTARt fiz7UIPEcslVjT5TxZXnYSqbxqClz4T3T8j1k8QjZpQiwtWFomtJs8nSgO/iD78hL9OR DVupmg2UjkxmZtcnWwct6xfcftt8p/vkvcmFbnpAGZJWhKeVEJXuCZGTgoCILaQ17D9S CXFnddp8DKsN/Xq5ss6WGECwKHM+h9HMLJ+Y0BQgBx01kOyUo79RreTict4QDG9AY5mp n/Vg== X-Gm-Message-State: ALoCoQmlOpXQTKFU1ty/Cs/BKQLIaRB3qnks5Hx2/AENNXSz9DbsnXn1Zg4IErvLCZJOF29um1vY X-Received: by 10.194.78.175 with SMTP id c15mr69631679wjx.136.1435955295639; Fri, 03 Jul 2015 13:28:15 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id fm8sm15425403wib.9.2015.07.03.13.28.13 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 03 Jul 2015 13:28:14 -0700 (PDT) From: Thomas Monjalon To: Maciej Gajdzica , Jasvinder Singh Date: Fri, 03 Jul 2015 22:27:04 +0200 Message-ID: <2394438.7nXkfRJIlT@xps13> Organization: 6WIND User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; ) In-Reply-To: <1435913919-13196-3-git-send-email-maciejx.t.gajdzica@intel.com> References: <1435913919-13196-1-git-send-email-maciejx.t.gajdzica@intel.com> <1435913919-13196-3-git-send-email-maciejx.t.gajdzica@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v4 02/11] ip_pipeline: added config checks X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jul 2015 20:28:16 -0000 There is an error with clang (tested with 3.6.1): examples/ip_pipeline/config_check.c:63:26: error: comparison of integers of different signs: 'uint32_t' (aka 'unsigned int') and 'int' [-Werror,-Wsign-compare] APP_CHECK((app->n_links == __builtin_popcountll(app->port_mask)), ~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/thomas/projects/dpdk/dpdk/examples/ip_pipeline/app.h:518:8: note: expanded from macro 'APP_CHECK' if (!(exp)) { \ ^