Re: [PATCH v2] btrfs-progs: Replace usage of list_for_each with list_for_each_entry

2017-12-07 Thread Qu Wenruo
On 2017年12月07日 17:10, Nikolay Borisov wrote: > There are a couple of places where instead of the more succinct > list_for_each_entry the code uses list_for_each. This results in > slightly more code with no additional benefit as well as no > coherent pattern. This patch makes the code uniform.

[PATCH v2] btrfs-progs: Replace usage of list_for_each with list_for_each_entry

2017-12-07 Thread Nikolay Borisov
There are a couple of places where instead of the more succinct list_for_each_entry the code uses list_for_each. This results in slightly more code with no additional benefit as well as no coherent pattern. This patch makes the code uniform. No functional changes Signed-off-by: Nikolay Borisov