Re: lib: Introduce priority array area manager

2017-02-23 Thread Geert Uytterhoeven
>>> Committer: David S. Miller >>> CommitDate: Fri Feb 3 16:35:42 2017 -0500 >>> >>> lib: Introduce priority array area manager >>> >>> This introduces a infrastructure for management of linear priority >>> areas. Priority o

Re: lib: Introduce priority array area manager

2017-02-23 Thread Jiri Pirko
refs/heads/master >>>> Author: Jiri Pirko >>>> AuthorDate: Fri Feb 3 10:29:06 2017 +0100 >>>> Committer: David S. Miller >>>> CommitDate: Fri Feb 3 16:35:42 2017 -0500 >>>> >>>> lib: Introduce priority array are

Re: lib: Introduce priority array area manager

2017-02-23 Thread Jiri Pirko
075972aede47ef17e1e70db3d51190 >> Parent: b862815c3ee7b49ec20a9ab25da55a5f0bcbb95e >> Refname:refs/heads/master >> Author: Jiri Pirko >> AuthorDate: Fri Feb 3 10:29:06 2017 +0100 >> Committer: David S. Miller >> CommitDate: Fri Feb 3 16:35:

Re: lib: Introduce priority array area manager

2017-02-22 Thread Geert Uytterhoeven
efname:refs/heads/master > Author: Jiri Pirko > AuthorDate: Fri Feb 3 10:29:06 2017 +0100 > Committer: David S. Miller > CommitDate: Fri Feb 3 16:35:42 2017 -0500 > > lib: Introduce priority array area manager > > This introduces a infrastructure for ma

[patch net-next v2 16/19] lib: Introduce priority array area manager

2017-02-03 Thread Jiri Pirko
From: Jiri Pirko This introduces a infrastructure for management of linear priority areas. Priority order in an array matters, however order of items inside a priority group does not matter. As an initial implementation, L-sort algorithm is used. It is quite trivial. More advanced algorithm call

Re: [patch net-next 16/19] lib: Introduce priority array area manager

2017-02-02 Thread Jiri Pirko
Thu, Feb 02, 2017 at 10:58:15PM CET, t...@herbertland.com wrote: >I have no idea what a "priority array area manager" is. Googling it >comes up with nothing and there are no comments in this whole patch >that either describe what it is or how any of the functions should be >used. Am I missing somet

Re: [patch net-next 16/19] lib: Introduce priority array area manager

2017-02-02 Thread Jiri Pirko
Thu, Feb 02, 2017 at 11:51:10PM CET, j...@perches.com wrote: >On Thu, 2017-02-02 at 16:12 +0100, Jiri Pirko wrote: >> From: Jiri Pirko >> >> This introduces a infrastructure for management of linear priority >> areas. Priority order in an array matters, however order of items inside >> a priority

Re: [patch net-next 16/19] lib: Introduce priority array area manager

2017-02-02 Thread Joe Perches
On Thu, 2017-02-02 at 16:12 +0100, Jiri Pirko wrote: > From: Jiri Pirko > > This introduces a infrastructure for management of linear priority > areas. Priority order in an array matters, however order of items inside > a priority group does not matter. > > As an initial implementation, L-sort a

Re: [patch net-next 16/19] lib: Introduce priority array area manager

2017-02-02 Thread Eric Dumazet
On Thu, 2017-02-02 at 13:58 -0800, Tom Herbert wrote: > I have no idea what a "priority array area manager" is. Googling it > comes up with nothing and there are no comments in this whole patch > that either describe what it is or how any of the functions should be > used. Am I missing something th

Re: [patch net-next 16/19] lib: Introduce priority array area manager

2017-02-02 Thread Tom Herbert
I have no idea what a "priority array area manager" is. Googling it comes up with nothing and there are no comments in this whole patch that either describe what it is or how any of the functions should be used. Am I missing something that is supposed to be obvious? Thanks, Tom On Thu, Feb 2, 201

[patch net-next 16/19] lib: Introduce priority array area manager

2017-02-02 Thread Jiri Pirko
From: Jiri Pirko This introduces a infrastructure for management of linear priority areas. Priority order in an array matters, however order of items inside a priority group does not matter. As an initial implementation, L-sort algorithm is used. It is quite trivial. More advanced algorithm call