From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8F8B3C34047 for ; Tue, 18 Feb 2020 16:41:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 6798422B48 for ; Tue, 18 Feb 2020 16:41:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1582044089; bh=dD5KRg2uLdDE3+hMdalgNdDA0xhlDBXqzKR2/8ImprI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=MxJM2YlTusuw0Lg4KgJKiIhKQXcVec/2ShKIbYdAs6ibgYn3uHtOHZN4t4sdCdT3W lELUrk1nJoBYHueZu0cE8tdxVjHfhaUiNwPrav4Xor5rra71UyKgTS5u+JY0577U4V JV2pDKB2mm1DWI7me6b7mqifZqRduJfNSKeFoPTk= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726528AbgBRQl2 (ORCPT ); Tue, 18 Feb 2020 11:41:28 -0500 Received: from mail.kernel.org ([198.145.29.99]:59696 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726360AbgBRQl2 (ORCPT ); Tue, 18 Feb 2020 11:41:28 -0500 Received: from localhost (unknown [213.57.247.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 8F23021D56; Tue, 18 Feb 2020 16:41:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1582044088; bh=dD5KRg2uLdDE3+hMdalgNdDA0xhlDBXqzKR2/8ImprI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=rz55yuz9WDKOFO181jLC9yfs45zXzmH2ii41PAz04D4upVxBWTT4gFlyzJKp1LGrF VMmX81iAzPCQJ0ILqdgNULZD9qbUqEFY8qJ/LKq6WMpAiLqUTPDGgSSLRz2n7hdbpC 2DnLSMAM28+UhcOFd7hYzsoEDEXUw15/DXr7IFVg= Date: Tue, 18 Feb 2020 18:41:24 +0200 From: Leon Romanovsky To: Dan Carpenter Cc: Doug Ledford , Jason Gunthorpe , Erez Alfasi , Maor Gottlieb , Mohamad Heib , linux-rdma@vger.kernel.org, kernel-janitors@vger.kernel.org Subject: Re: [PATCH] IB/core: Fix a bitwise vs logical OR typo Message-ID: <20200218164124.GA14557@unreal> References: <20200218055801.cosg4fylgfxhk67s@kili.mountain> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200218055801.cosg4fylgfxhk67s@kili.mountain> Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org On Tue, Feb 18, 2020 at 08:58:01AM +0300, Dan Carpenter wrote: > This was supposed to be a bitwise | instead of a logical ||. > > Fixes: 1dd017882e01 ("RDMA/core: Fix protection fault in get_pkey_idx_qp_list") > Signed-off-by: Dan Carpenter > --- > drivers/infiniband/core/security.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Thanks, There is an extra patch for that. https://lore.kernel.org/lkml/20200217204318.13609-1-natechancellor@gmail.com Reviewed-by: Leon Romanovsky