mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-20 13:41:30 +00:00
lib: rhashtable - Remove weird non-ASCII characters from comments
My editor spewed garbage that looked like memory corruption on my screen. It turns out that a number of occurences of "fi" got turned into a ligature. This patch replaces these ligatures with the ASCII letters "fi". Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Cheers, Acked-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6ff53fd371
commit
0c828f2f83
1 changed files with 5 additions and 5 deletions
|
@ -230,7 +230,7 @@ int rhashtable_expand(struct rhashtable *ht, gfp_t flags)
|
||||||
ht->shift++;
|
ht->shift++;
|
||||||
|
|
||||||
/* For each new bucket, search the corresponding old bucket
|
/* For each new bucket, search the corresponding old bucket
|
||||||
* for the first 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
|
* link the new bucket to that entry. Since all the entries
|
||||||
* which will end up in the new bucket appear in the same
|
* which will end up in the new bucket appear in the same
|
||||||
* old bucket, this constructs an entirely valid new hash
|
* old bucket, this constructs an entirely valid new hash
|
||||||
|
@ -248,8 +248,8 @@ int rhashtable_expand(struct rhashtable *ht, gfp_t flags)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Publish the new table pointer. Lookups may now traverse
|
/* Publish the new table pointer. Lookups may now traverse
|
||||||
* the new table, but they will not benefit from any
|
* the new table, but they will not benefit from any
|
||||||
* additional efficiency until later steps unzip the buckets.
|
* additional efficiency until later steps unzip the buckets.
|
||||||
*/
|
*/
|
||||||
rcu_assign_pointer(ht->tbl, new_tbl);
|
rcu_assign_pointer(ht->tbl, new_tbl);
|
||||||
|
|
||||||
|
@ -306,14 +306,14 @@ int rhashtable_shrink(struct rhashtable *ht, gfp_t flags)
|
||||||
|
|
||||||
ht->shift--;
|
ht->shift--;
|
||||||
|
|
||||||
/* Link each bucket in the new table to the first bucket
|
/* Link each bucket in the new table to the first bucket
|
||||||
* in the old table that contains entries which will hash
|
* in the old table that contains entries which will hash
|
||||||
* to the new bucket.
|
* to the new bucket.
|
||||||
*/
|
*/
|
||||||
for (i = 0; i < ntbl->size; i++) {
|
for (i = 0; i < ntbl->size; i++) {
|
||||||
ntbl->buckets[i] = tbl->buckets[i];
|
ntbl->buckets[i] = tbl->buckets[i];
|
||||||
|
|
||||||
/* Link each bucket in the new table to the first bucket
|
/* Link each bucket in the new table to the first bucket
|
||||||
* in the old table that contains entries which will hash
|
* in the old table that contains entries which will hash
|
||||||
* to the new bucket.
|
* to the new bucket.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue