diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-04-29 04:02:54 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-29 11:06:24 -0400 |
commit | 0302190411c2ba79819303503999cc839d600704 (patch) | |
tree | f5a1f01ca8c95a9b1507822114d46974a296b6e8 /drivers/block/aoe/aoedev.c | |
parent | 10521bd9f74be94b83cfcf639601ece1c8e4faad (diff) |
remove aoedev_isbusy()
Remove the no longer used aoedev_isbusy().
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Cc: "Ed L. Cashin" <ecashin@coraid.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/block/aoe/aoedev.c')
-rw-r--r-- | drivers/block/aoe/aoedev.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/drivers/block/aoe/aoedev.c b/drivers/block/aoe/aoedev.c index f9a1cd9edb77..a1d813ab0d6b 100644 --- a/drivers/block/aoe/aoedev.c +++ b/drivers/block/aoe/aoedev.c | |||
@@ -18,24 +18,6 @@ static void skbpoolfree(struct aoedev *d); | |||
18 | static struct aoedev *devlist; | 18 | static struct aoedev *devlist; |
19 | static DEFINE_SPINLOCK(devlist_lock); | 19 | static DEFINE_SPINLOCK(devlist_lock); |
20 | 20 | ||
21 | int | ||
22 | aoedev_isbusy(struct aoedev *d) | ||
23 | { | ||
24 | struct aoetgt **t, **te; | ||
25 | struct frame *f, *e; | ||
26 | |||
27 | t = d->targets; | ||
28 | te = t + NTARGETS; | ||
29 | for (; t < te && *t; t++) { | ||
30 | f = (*t)->frames; | ||
31 | e = f + (*t)->nframes; | ||
32 | for (; f < e; f++) | ||
33 | if (f->tag != FREETAG) | ||
34 | return 1; | ||
35 | } | ||
36 | return 0; | ||
37 | } | ||
38 | |||
39 | struct aoedev * | 21 | struct aoedev * |
40 | aoedev_by_aoeaddr(int maj, int min) | 22 | aoedev_by_aoeaddr(int maj, int min) |
41 | { | 23 | { |