lkml.org 
[lkml]   [2016]   [Dec]   [20]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] dm bufio: use rb_entry()
Date
To make the code clearer, use rb_entry() instead of container_of() to
deal with rbtree.

Signed-off-by: Geliang Tang <geliangtang@gmail.com>
---
drivers/md/dm-bufio.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/md/dm-bufio.c b/drivers/md/dm-bufio.c
index 84d2f0e..ae3c396 100644
--- a/drivers/md/dm-bufio.c
+++ b/drivers/md/dm-bufio.c
@@ -266,7 +266,7 @@ static struct dm_buffer *__find(struct dm_bufio_client *c, sector_t block)
struct dm_buffer *b;

while (n) {
- b = container_of(n, struct dm_buffer, node);
+ b = rb_entry(n, struct dm_buffer, node);

if (b->block == block)
return b;
@@ -283,7 +283,7 @@ static void __insert(struct dm_bufio_client *c, struct dm_buffer *b)
struct dm_buffer *found;

while (*new) {
- found = container_of(*new, struct dm_buffer, node);
+ found = rb_entry(*new, struct dm_buffer, node);

if (found->block == b->block) {
BUG_ON(found != b);
--
2.9.3
\
 
 \ /
  Last update: 2016-12-20 15:11    [W:0.178 / U:0.396 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site