From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Widawsky Subject: Re: [PATCH 8/8] gem_ring_sync_loop.c: fix an operator error Date: Sat, 27 Apr 2013 11:50:19 -0700 Message-ID: <20130427185018.GD27969@intel.com> References: <1366700809-18143-1-git-send-email-zhong.li@intel.com> <1366700809-18143-9-git-send-email-zhong.li@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail-pa0-f42.google.com (mail-pa0-f42.google.com [209.85.220.42]) by gabe.freedesktop.org (Postfix) with ESMTP id AFA3DE5D13 for ; Sat, 27 Apr 2013 11:50:22 -0700 (PDT) Received: by mail-pa0-f42.google.com with SMTP id kl13so3032946pab.29 for ; Sat, 27 Apr 2013 11:50:22 -0700 (PDT) Content-Disposition: inline In-Reply-To: <1366700809-18143-9-git-send-email-zhong.li@intel.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: intel-gfx-bounces+gcfxdi-intel-gfx=m.gmane.org@lists.freedesktop.org Errors-To: intel-gfx-bounces+gcfxdi-intel-gfx=m.gmane.org@lists.freedesktop.org To: Zhong Li Cc: daniel.vetter@intel.com, intel-gfx@lists.freedesktop.org List-Id: intel-gfx@lists.freedesktop.org On Tue, Apr 23, 2013 at 03:06:48PM +0800, Zhong Li wrote: > Signed-off-by: Zhong Li > --- > tests/gem_ring_sync_loop.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/tests/gem_ring_sync_loop.c b/tests/gem_ring_sync_loop.c > index 955bf34..cb79e7c 100644 > --- a/tests/gem_ring_sync_loop.c > +++ b/tests/gem_ring_sync_loop.c > @@ -68,7 +68,7 @@ get_num_rings(int fd) > gp.param = I915_PARAM_HAS_BSD; > ret = drmIoctl(fd, DRM_IOCTL_I915_GETPARAM, &gp); > > - if ((ret == 0) & (*gp.value > 0)) > + if ((ret == 0) && (*gp.value > 0)) > num_rings++; > else > goto skip; > @@ -76,7 +76,7 @@ get_num_rings(int fd) > gp.param = I915_PARAM_HAS_BLT; > ret = drmIoctl(fd, DRM_IOCTL_I915_GETPARAM, &gp); > > - if ((ret == 0) & (*gp.value > 0)) > + if ((ret == 0) && (*gp.value > 0)) > num_rings++; > else > goto skip; > @@ -86,7 +86,7 @@ get_num_rings(int fd) > gp.param = I915_PARAM_HAS_VEBOX; > ret = drmIoctl(fd, DRM_IOCTL_I915_GETPARAM, &gp); > > - if ((ret == 0) & (*gp.value > 0)) > + if ((ret == 0) && (*gp.value > 0)) > num_rings++; > else > goto skip; > -- > 1.7.9.5 > So when I went through the series initially, I had this squashed into patch 2. Unfortunately, I messed this up before I ended up pushing, so now we have broken get_num_rings for several patches. In the future when you submit a series like this, please add this kind of fix directly into the patch it fixes. Thanks. -- Ben Widawsky, Intel Open Source Technology Center