diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2008-03-30 21:03:40 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-04-18 12:48:08 -0400 |
commit | 43ac9e62c4a0a47fe3de1f1eb9ca7b8c91dce234 (patch) | |
tree | 9c7f042739e3d16c6704be508adff6a7fe1f9c52 /block | |
parent | c3ff1b90d8924dd1c55c3b56a79bfc563ace4a42 (diff) |
[SCSI] bsg: use better helper list functions
This replace hlist_for_each and list_entry with hlist_for_each_entry
and list_first_entry respectively.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'block')
-rw-r--r-- | block/bsg.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/block/bsg.c b/block/bsg.c index e2c65a150a79..b413318a7c5d 100644 --- a/block/bsg.c +++ b/block/bsg.c | |||
@@ -368,7 +368,7 @@ static struct bsg_command *bsg_next_done_cmd(struct bsg_device *bd) | |||
368 | 368 | ||
369 | spin_lock_irq(&bd->lock); | 369 | spin_lock_irq(&bd->lock); |
370 | if (bd->done_cmds) { | 370 | if (bd->done_cmds) { |
371 | bc = list_entry(bd->done_list.next, struct bsg_command, list); | 371 | bc = list_first_entry(&bd->done_list, struct bsg_command, list); |
372 | list_del(&bc->list); | 372 | list_del(&bc->list); |
373 | bd->done_cmds--; | 373 | bd->done_cmds--; |
374 | } | 374 | } |
@@ -772,21 +772,19 @@ static struct bsg_device *bsg_add_device(struct inode *inode, | |||
772 | 772 | ||
773 | static struct bsg_device *__bsg_get_device(int minor) | 773 | static struct bsg_device *__bsg_get_device(int minor) |
774 | { | 774 | { |
775 | struct bsg_device *bd = NULL; | 775 | struct bsg_device *bd; |
776 | struct hlist_node *entry; | 776 | struct hlist_node *entry; |
777 | 777 | ||
778 | mutex_lock(&bsg_mutex); | 778 | mutex_lock(&bsg_mutex); |
779 | 779 | ||
780 | hlist_for_each(entry, bsg_dev_idx_hash(minor)) { | 780 | hlist_for_each_entry(bd, entry, bsg_dev_idx_hash(minor), dev_list) { |
781 | bd = hlist_entry(entry, struct bsg_device, dev_list); | ||
782 | if (bd->minor == minor) { | 781 | if (bd->minor == minor) { |
783 | atomic_inc(&bd->ref_count); | 782 | atomic_inc(&bd->ref_count); |
784 | break; | 783 | goto found; |
785 | } | 784 | } |
786 | |||
787 | bd = NULL; | ||
788 | } | 785 | } |
789 | 786 | bd = NULL; | |
787 | found: | ||
790 | mutex_unlock(&bsg_mutex); | 788 | mutex_unlock(&bsg_mutex); |
791 | return bd; | 789 | return bd; |
792 | } | 790 | } |