From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nikolay Aleksandrov Subject: Re: [PATCH next v4 4/6] bonding: Allow userspace to set actors' system_priority in AD system Date: Wed, 18 Feb 2015 13:50:35 +0100 Message-ID: <54E48A9B.3020409@redhat.com> References: <1424243874-27109-1-git-send-email-maheshb@google.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Cc: Maciej Zenczykowski , netdev , Eric Dumazet To: Mahesh Bandewar , Jay Vosburgh , Andy Gospodarek , Veaceslav Falico , David Miller Return-path: Received: from mx1.redhat.com ([209.132.183.28]:44097 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751136AbbBRMuq (ORCPT ); Wed, 18 Feb 2015 07:50:46 -0500 In-Reply-To: <1424243874-27109-1-git-send-email-maheshb@google.com> Sender: netdev-owner@vger.kernel.org List-ID: On 02/18/2015 08:17 AM, Mahesh Bandewar wrote: > This patch allows user to randomize the system-priority in an ad-system. > The allowed range is 1 - 0xFFFF while default value is 0xFFFF. If user > does not specify this value, the system defaults to 0xFFFF, which is > what it was before this patch. > > Following example code could set the value - > # modprobe bonding mode=4 > # sys_prio=$(( 1 + RANDOM + RANDOM )) > # echo $sys_prio > /sys/class/net/bond0/bonding/ad_actor_sys_prio > # echo +eth1 > /sys/class/net/bond0/bonding/slaves > ... > # ip link set bond0 up > > Signed-off-by: Mahesh Bandewar > --- > v1: > Initial version > v2: > Rename ad_actor_system_priority to ad_actor_sys_prio > v3-v4: > Rebase > > Documentation/networking/bonding.txt | 9 +++++++++ > drivers/net/bonding/bond_3ad.c | 5 ++++- > drivers/net/bonding/bond_main.c | 14 ++++++++++++++ > drivers/net/bonding/bond_options.c | 29 ++++++++++++++++++++++++++++- > drivers/net/bonding/bond_procfs.c | 2 ++ > drivers/net/bonding/bond_sysfs.c | 15 +++++++++++++++ > include/net/bond_options.h | 1 + > include/net/bonding.h | 1 + > 8 files changed, 74 insertions(+), 2 deletions(-) > > diff --git a/Documentation/networking/bonding.txt b/Documentation/networking/bonding.txt > index 83bf4986baea..f19d888651b8 100644 > --- a/Documentation/networking/bonding.txt > +++ b/Documentation/networking/bonding.txt > @@ -178,6 +178,15 @@ active_slave > active slave, or the empty string if there is no active slave or > the current mode does not use an active slave. > > +ad_actor_sys_prio > + > + In an AD system, this specifies the system priority. The allowed range > + is 1 - 65535. If the value is not specified, it takes 65535 as the > + default value. > + > + This paramter has effect only in 802.3ad mode and is available through ^^^^^^^^^^^^^^^^^^^^^ s/paramter/parameter/ > + SysFs interface. > +