From patchwork Thu Nov 26 16:37:39 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sasha Khapyorsky X-Patchwork-Id: 63208 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id nAQGY72I030580 for ; Thu, 26 Nov 2009 16:35:10 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750892AbZKZQfC (ORCPT ); Thu, 26 Nov 2009 11:35:02 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753333AbZKZQfC (ORCPT ); Thu, 26 Nov 2009 11:35:02 -0500 Received: from mail-fx0-f213.google.com ([209.85.220.213]:48360 "EHLO mail-fx0-f213.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750892AbZKZQfB (ORCPT ); Thu, 26 Nov 2009 11:35:01 -0500 Received: by fxm5 with SMTP id 5so891768fxm.28 for ; Thu, 26 Nov 2009 08:35:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:received:date:from:to :cc:subject:message-id:references:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=Tm8DujulHaKL6+08G/Id4+QUG1WIOMn32VwqFVFiC1s=; b=miDZxkhYjh0oP/w+r+OhtcWw8gmlQZun5EY/WHszyppmK7N+WCXT5ifgDwBbckJAJ1 8gTavL3dlEi/x897PgWzzGTuQpgylAx7KndbrPetl17FEhZNbJI7GUulWwfc1eldEAUT vZgBkA1uoQ0veweej3p0p/CmAkCJ1YlvgdNjs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=DDU8jNiQmj8Fn5RJd+sr/ieeP6ZWkfMofQOub/8/gS5/yqEL/k6sa96j9aQMyOTQAJ FTRmGdL8S8pdPBEaktkLB24OTF0OjgLm81qREGiZE3H1+kSLu0UJmDEBsmOFzDQBvXyM ilB+CZqf0U/f0OwoxRj/rjGtt+/pwsAff4rPY= Received: by 10.103.122.37 with SMTP id z37mr3880806mum.86.1259253305770; Thu, 26 Nov 2009 08:35:05 -0800 (PST) Received: from me.localdomain (85.64.35.106.dynamic.barak-online.net [85.64.35.106]) by mx.google.com with ESMTPS id i5sm2172804mue.27.2009.11.26.08.35.05 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 26 Nov 2009 08:35:05 -0800 (PST) Received: by me.localdomain (Postfix, from userid 1000) id 8F1E211DD2; Thu, 26 Nov 2009 18:37:39 +0200 (IST) Date: Thu, 26 Nov 2009 18:37:39 +0200 From: Sasha Khapyorsky To: linux-rdma Cc: Hal Rosenstock , Eli Dorfman , Slava Strebkov , Ira Weiny Subject: [PATCH] opensm: IPv6 SNM update for man page and usage Message-ID: <20091126163739.GK13817@me> References: <20091113061948.GJ7192@me> <20091113062104.GK7192@me> <20091113201144.GS7192@me> <20091113203856.GT7192@me> <20091113204041.GU7192@me> <20091126163634.GJ13817@me> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20091126163634.GJ13817@me> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org diff --git a/opensm/man/opensm.8.in b/opensm/man/opensm.8.in index bd8ab4e..0baee7d 100644 --- a/opensm/man/opensm.8.in +++ b/opensm/man/opensm.8.in @@ -342,8 +342,8 @@ Specify the sweep time for the performance manager in seconds effect if --enable-perfmgr was specified at configure time. .TP .BI --consolidate_ipv6_snm_req -Consolidate IPv6 Solicited Node Multicast group join requests into one -multicast group per MGID PKey. +Use shared MLID for IPv6 Solicited Node Multicast groups per MGID scope +and P_Key. .TP \fB\-v\fR, \fB\-\-verbose\fR This option increases the log verbosity level. diff --git a/opensm/opensm/main.c b/opensm/opensm/main.c index 18efde1..fc002d8 100644 --- a/opensm/opensm/main.c +++ b/opensm/opensm/main.c @@ -322,8 +322,8 @@ static void show_usage(void) " queries for off-subnet DGIDs. Default file is:\n" " " OSM_DEFAULT_PREFIX_ROUTES_FILE "\n\n"); printf("--consolidate_ipv6_snm_req\n" - " Consolidate IPv6 Solicited Node Multicast group joins\n" - " into 1 IB multicast group.\n\n"); + " Use shared MLID for IPv6 Solicited Node Multicast groups\n" + " per MGID scope and P_Key.\n\n"); printf("--verbose, -v\n" " This option increases the log verbosity level.\n" " The -v option may be specified multiple times\n"