From patchwork Wed Sep 30 19:04:29 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hal Rosenstock X-Patchwork-Id: 7301621 Return-Path: X-Original-To: patchwork-linux-rdma@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id A1ABC9F314 for ; Wed, 30 Sep 2015 19:04:58 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id CF0A220632 for ; Wed, 30 Sep 2015 19:04:57 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id AE25720650 for ; Wed, 30 Sep 2015 19:04:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932410AbbI3TEx (ORCPT ); Wed, 30 Sep 2015 15:04:53 -0400 Received: from mail-wi0-f172.google.com ([209.85.212.172]:34116 "EHLO mail-wi0-f172.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933366AbbI3TEd (ORCPT ); Wed, 30 Sep 2015 15:04:33 -0400 Received: by wicfx3 with SMTP id fx3so968429wic.1 for ; Wed, 30 Sep 2015 12:04:31 -0700 (PDT) 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 :cc:subject:content-type:content-transfer-encoding; bh=mHAqasA2Afmkd8HnlMhUzXhiYTTOlc3kaDlp/8O71Es=; b=frMELh/tYEaRjNvY5xLOU4ruavoqfsFOkycVivtDI9mOUm4BxIckLvkJ4G0mH8xLyr ZMvIpCGjalXRCtzzaXLZJhZMr8gFD9TZEtMVq5WJD0nSFDDn0ypj8fTGTlQqtRaWcprS THtGCkcb4Smsop9hPbyh6NKR8+Ubf/Fk7v555i9d9X7t/UfLxrbHQyZjd2nI+IFhbsm+ /u4mavcvChBAhUqn3eQuA+M7tNGYN3pJCJLN7GDfSubCi/79EtqfoEZAutsxZGFmf9r/ VlIzydA2Hepd8S/8HRTJZcjpMwdxFGdJqXsN3JKo1RjMM7/HQIFgHsflxrkvPEZgI29U 18GQ== X-Gm-Message-State: ALoCoQmStluIrgOFQGnVYfwxaerXbabDDwblQU0404nSSlf2ojQ/UXdkdwYf7wjwxgoZxBkUUt6O X-Received: by 10.180.105.135 with SMTP id gm7mr32074993wib.18.1443639871813; Wed, 30 Sep 2015 12:04:31 -0700 (PDT) Received: from [192.168.1.101] (c-71-234-225-223.hsd1.ct.comcast.net. [71.234.225.223]) by smtp.googlemail.com with ESMTPSA id bv2sm2132362wjc.11.2015.09.30.12.04.30 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 30 Sep 2015 12:04:31 -0700 (PDT) Message-ID: <560C323D.1000409@dev.mellanox.co.il> Date: Wed, 30 Sep 2015 15:04:29 -0400 From: Hal Rosenstock User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:9.0) Gecko/20111222 Thunderbird/9.0.1 MIME-Version: 1.0 To: Doug Ledford CC: "linux-rdma (linux-rdma@vger.kernel.org)" Subject: [PATCH TRIVIAL] ib_pack.h: Fix commentary IBA reference for CNP in IB opcode enum Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP IBA spec is now 1.3 not 3.1 and vol 1 should be mentioned as there is also vol 2. Signed-off-by: Hal Rosenstock --- -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/include/rdma/ib_pack.h b/include/rdma/ib_pack.h index 709a533..e99d8f9 100644 --- a/include/rdma/ib_pack.h +++ b/include/rdma/ib_pack.h @@ -76,7 +76,7 @@ enum { IB_OPCODE_UC = 0x20, IB_OPCODE_RD = 0x40, IB_OPCODE_UD = 0x60, - /* per IBTA 3.1 Table 38, A10.3.2 */ + /* per IBTA 1.3 vol 1 Table 38, A10.3.2 */ IB_OPCODE_CNP = 0x80, /* operations -- just used to define real constants */