Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 361981
b: refs/heads/master
c: 217fd5e
h: refs/heads/master
i:
  361979: 53a2c98
v: v3
  • Loading branch information
Roger Pau Monne authored and Konrad Rzeszutek Wilk committed Mar 19, 2013
1 parent f39fac9 commit b8878b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 29d0b218c87ace1078e08bb32c2e72fc96fa3db3
refs/heads/master: 217fd5e709f029c125a9d39de5f13387407f131a
2 changes: 1 addition & 1 deletion trunk/drivers/block/xen-blkback/blkback.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ static void make_response(struct xen_blkif *blkif, u64 id,

#define foreach_grant_safe(pos, n, rbtree, node) \
for ((pos) = container_of(rb_first((rbtree)), typeof(*(pos)), node), \
(n) = rb_next(&(pos)->node); \
(n) = (&(pos)->node != NULL) ? rb_next(&(pos)->node) : NULL; \
&(pos)->node != NULL; \
(pos) = container_of(n, typeof(*(pos)), node), \
(n) = (&(pos)->node != NULL) ? rb_next(&(pos)->node) : NULL)
Expand Down

0 comments on commit b8878b1

Please sign in to comment.