1
0

Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net

Conflicts:
	drivers/net/ethernet/chelsio/cxgb4vf/sge.c
	drivers/net/ethernet/intel/ixgbe/ixgbe_phy.c

sge.c was overlapping two changes, one to use the new
__dev_alloc_page() in net-next, and one to use s->fl_pg_order in net.

ixgbe_phy.c was a set of overlapping whitespace changes.

Signed-off-by: David S. Miller <davem@davemloft.net>
Este cometimento está contido em:
David S. Miller
2014-11-14 01:01:12 -05:00
ascendente d649a7a81f b23dc5a7cc
cometimento 076ce44825
419 ficheiros modificados com 3960 adições e 2481 eliminações

Ver ficheiro

@@ -229,7 +229,7 @@ int rhashtable_expand(struct rhashtable *ht)
ht->shift++;
/* For each new bucket, search the corresponding old bucket
* for the rst entry that hashes to the new bucket, and
* for the first entry that hashes to the new bucket, and
* link the new bucket to that entry. Since all the entries
* which will end up in the new bucket appear in the same
* old bucket, this constructs an entirely valid new hash
@@ -247,8 +247,8 @@ int rhashtable_expand(struct rhashtable *ht)
}
/* Publish the new table pointer. Lookups may now traverse
* the new table, but they will not benet from any
* additional efciency until later steps unzip the buckets.
* the new table, but they will not benefit from any
* additional efficiency until later steps unzip the buckets.
*/
rcu_assign_pointer(ht->tbl, new_tbl);
@@ -304,14 +304,14 @@ int rhashtable_shrink(struct rhashtable *ht)
ht->shift--;
/* Link each bucket in the new table to the rst bucket
/* Link each bucket in the new table to the first bucket
* in the old table that contains entries which will hash
* to the new bucket.
*/
for (i = 0; i < ntbl->size; i++) {
ntbl->buckets[i] = tbl->buckets[i];
/* Link each bucket in the new table to the rst bucket
/* Link each bucket in the new table to the first bucket
* in the old table that contains entries which will hash
* to the new bucket.
*/