Re: [PATCH] rhashtable: Fix missing elements when inserting.

2017-05-24 Thread Taehee Yoo
2017-05-25 1:13 GMT+09:00 Taehee Yoo : > 2017-05-24 13:36 GMT+09:00 Herbert Xu : >> Taehee Yoo wrote: >>> rhltable_insert_key() inserts a node into list of element, >>> if node's key is duplicated, so that it becomes the chain

Re: [PATCH] rhashtable: Fix missing elements when inserting.

2017-05-24 Thread Taehee Yoo
2017-05-24 13:36 GMT+09:00 Herbert Xu : > Taehee Yoo wrote: >> rhltable_insert_key() inserts a node into list of element, >> if node's key is duplicated, so that it becomes the chain of >> element(as known as rhead). Also bucket table points that

Re: [PATCH] rhashtable: Fix missing elements when inserting.

2017-05-23 Thread Herbert Xu
Taehee Yoo wrote: > rhltable_insert_key() inserts a node into list of element, > if node's key is duplicated, so that it becomes the chain of > element(as known as rhead). Also bucket table points that element directly. > If a inserted node's element chain is located at third,

[PATCH] rhashtable: Fix missing elements when inserting.

2017-05-23 Thread Taehee Yoo
rhltable_insert_key() inserts a node into list of element, if node's key is duplicated, so that it becomes the chain of element(as known as rhead). Also bucket table points that element directly. If a inserted node's element chain is located at third, rhltable misses first and second element