From patchwork Mon Feb 17 09:25:03 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxim Uvarov X-Patchwork-Id: 24748 Return-Path: X-Original-To: linaro@patches.linaro.org Delivered-To: linaro@patches.linaro.org Received: from mail-fa0-f70.google.com (mail-fa0-f70.google.com [209.85.161.70]) by ip-10-151-82-157.ec2.internal (Postfix) with ESMTPS id 6F3F8202B2 for ; Mon, 17 Feb 2014 09:25:08 +0000 (UTC) Received: by mail-fa0-f70.google.com with SMTP id x10sf30063598fax.5 for ; Mon, 17 Feb 2014 01:25:06 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:references:in-reply-to:x-original-sender :x-original-authentication-results:precedence:mailing-list:list-id :list-post:list-help:list-archive:list-unsubscribe:content-type; bh=8sDTQT4HOkyqLN3LGnltKye/nUc8NKLgSm4deKs3uiE=; b=GLuAKFr/ZBXyrrnc5Uhe/oSXFICH8YxcU8Nzpq7R2p4VIAbMeU0I1krujRqi/WLUR5 9kU/wrTtYQV3RKqiYwWFt+nbi4ZLhxf2eR3VWZkL+MJA3Air2mW6vLUQFBPDj5VITVTE 2r+2Fbz0or2EZ9SQoZyRTEVWB2UFFUnAF7rz1Cyt+X9aL6/E9z9Lu+Foy5ZhtH696dRu f4qJik+qzbTxqQlSglhIDKwWTbZF2+3y13dEIELT9MUACXvzvKxyUjw3igakW14SynUy oDPdMMggKQ6cSxVEPRHJkKtvQh+5EXiDDOZLvSnOo76ne4rp/X/ShqUQ71UFGLQvCFZv kHQg== X-Gm-Message-State: ALoCoQmLFYvHCmhMbPjujxfL5yD+Bvm+weQqlPSd58RnnXSorn1PsA5pNoFlC4L6xZOUZl/RqlXk X-Received: by 10.180.149.141 with SMTP id ua13mr9934833wib.5.1392629106244; Mon, 17 Feb 2014 01:25:06 -0800 (PST) X-BeenThere: lng-odp@linaro.org Received: by 10.152.170.168 with SMTP id an8ls222998lac.33.gmail; Mon, 17 Feb 2014 01:25:05 -0800 (PST) X-Received: by 10.152.180.4 with SMTP id dk4mr803911lac.49.1392629105969; Mon, 17 Feb 2014 01:25:05 -0800 (PST) Received: from mail-lb0-f171.google.com (mail-lb0-f171.google.com [209.85.217.171]) by mx.google.com with ESMTPS id w4si23555333lal.37.2014.02.17.01.25.05 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 17 Feb 2014 01:25:05 -0800 (PST) Received-SPF: neutral (google.com: 209.85.217.171 is neither permitted nor denied by best guess record for domain of maxim.uvarov@linaro.org) client-ip=209.85.217.171; Received: by mail-lb0-f171.google.com with SMTP id c11so11290918lbj.30 for ; Mon, 17 Feb 2014 01:25:05 -0800 (PST) X-Received: by 10.112.211.233 with SMTP id nf9mr837717lbc.50.1392629105632; Mon, 17 Feb 2014 01:25:05 -0800 (PST) Received: from [192.168.1.108] ([92.39.133.154]) by mx.google.com with ESMTPSA id dm8sm24645164lad.7.2014.02.17.01.25.04 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 17 Feb 2014 01:25:04 -0800 (PST) Message-ID: <5301D56F.2050808@linaro.org> Date: Mon, 17 Feb 2014 13:25:03 +0400 From: Maxim Uvarov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.0 MIME-Version: 1.0 To: Petri Savolainen , lng-odp@linaro.org Subject: Re: [lng-odp] [PATCH] Multi-enq and deq operations References: <1392386205-27276-1-git-send-email-petri.savolainen@linaro.org> <20140214161847.GA29284@8470w> <751fc807-8f87-47ab-9490-70f98aadde5a@linaro.org> In-Reply-To: <751fc807-8f87-47ab-9490-70f98aadde5a@linaro.org> X-Original-Sender: maxim.uvarov@linaro.org X-Original-Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.217.171 is neither permitted nor denied by best guess record for domain of maxim.uvarov@linaro.org) smtp.mail=maxim.uvarov@linaro.org Precedence: list Mailing-list: list lng-odp@linaro.org; contact lng-odp+owners@linaro.org List-ID: X-Google-Group-Id: 474323889996 List-Post: , List-Help: , List-Archive: List-Unsubscribe: , I'm not sure which optimization version we should have now. Because we do not have performance tests now looks like debug version is more preferred. this patch changes: --- a/Makefile.inc +++ b/Makefile.inc @@ -5,8 +5,8 @@ PLATFORM ?= linux-generic CFLAGS += -DODP_DEBUG=1 -#CFLAGS += -O3 -CFLAGS += -O0 -g +CFLAGS += -O3 +#CFLAGS += -O0 -g Maxim.