From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jay Vosburgh Subject: Re: [PATCH] bonding-tlb: better balance when choosing slaves Date: Sat, 02 Apr 2011 11:25:03 -0700 Message-ID: <20427.1301768703@death> References: <1301753395-1205-1-git-send-email-panweiping3@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: Andy Gospodarek (supporter:BONDING DRIVER) , netdev@vger.kernel.org (open list:BONDING DRIVER), linux-kernel@vger.kernel.org (open list) To: =?UTF-8?q?Weiping=20Pan=28=E6=BD=98=E5=8D=AB=E5=B9=B3=29?= Return-path: In-reply-to: <1301753395-1205-1-git-send-email-panweiping3@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org >tlb_get_least_loaded_slave() always chooses slave from >bonding->first_slave, that gives the beginnig slaves more chances to b= e used. > >Let tlb_get_least_loaded_slave() chooses slave from a random positon i= n the >slave list, make all slaves transmit packets more balanced. If outgoing traffic is not being starved (i.e., connections are being balanced such that they are stacking up on one slave but under-utilizing another), then I don't understand what benefit this has= =2E There is already some degree of randomness, as peers will be assigned in the order that packets are transmitted to them after each rebalance. The busiest peers will tend to be on the earlier slaves, an= d vice versa, but I'm not sure this is a bad thing. Does this have any real gain other than making the rx/tx statistics for the slaves more equal over time? I haven't measured it, but I would expect that for small numbers of peers, having them tend to stay on the same slaves over time is probably a good thing. -J >Signed-off-by: Weiping Pan(=E6=BD=98=E5=8D=AB=E5=B9=B3) >--- > drivers/net/bonding/bond_alb.c | 17 +++++++++++++++-- > 1 files changed, 15 insertions(+), 2 deletions(-) > >diff --git a/drivers/net/bonding/bond_alb.c b/drivers/net/bonding/bond= _alb.c >index 9bc5de3..9fa64b0 100644 >--- a/drivers/net/bonding/bond_alb.c >+++ b/drivers/net/bonding/bond_alb.c >@@ -36,6 +36,7 @@ > #include > #include > #include >+#include > #include > #include > #include >@@ -206,15 +207,27 @@ static long long compute_gap(struct slave *slave= ) > /* Caller must hold bond lock for read */ > static struct slave *tlb_get_least_loaded_slave(struct bonding *bond) > { >- struct slave *slave, *least_loaded; >+ struct slave *slave, *least_loaded, *start_slave; > long long max_gap; > int i; >+ u8 n; > > least_loaded =3D NULL; >+ start_slave =3D bond->first_slave; > max_gap =3D LLONG_MIN; >+ =20 >+ get_random_bytes(&n, 1); >+ >+ if (bond->slave_cnt =3D=3D 0) >+ return NULL; >+ n =3D n % bond->slave_cnt; >+ >+ for (i=3D0; i+ start_slave =3D start_slave->next; >+ } > > /* Find the slave with the largest gap */ >- bond_for_each_slave(bond, slave, i) { >+ bond_for_each_slave_from(bond, slave, i, start_slave) { > if (SLAVE_IS_OK(slave)) { > long long gap =3D compute_gap(slave); > >--=20 >1.7.4 > --- -Jay Vosburgh, IBM Linux Technology Center, fubar@us.ibm.com