diff options
author | Ed Cashin <ecashin@coraid.com> | 2012-12-17 16:04:01 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-17 17:15:25 -0800 |
commit | 72837600ee8b0d09618f7fcbe36aab08c3ba8890 (patch) | |
tree | 8d29b47c698c4d40955cd33adaa40f9363aa7028 | |
parent | 7b6ccc5f975f68d96f941c67eab001b390a7cd1a (diff) | |
download | linux-72837600ee8b0d09618f7fcbe36aab08c3ba8890.tar.bz2 |
aoe: cleanup: correct comment for aoetgt nout
A misplaced comment was attached to the nout member of the aoetgt. This
change corrects the comment.
Signed-off-by: Ed Cashin <ecashin@coraid.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/block/aoe/aoe.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/aoe/aoe.h b/drivers/block/aoe/aoe.h index 9655ce38e6eb..bfd765cf0eb7 100644 --- a/drivers/block/aoe/aoe.h +++ b/drivers/block/aoe/aoe.h @@ -133,7 +133,7 @@ struct aoetgt { struct list_head ffree; /* list of free frames */ struct aoeif ifs[NAOEIFS]; struct aoeif *ifp; /* current aoeif in use */ - ushort nout; /* value of nout when skb was sent */ + ushort nout; /* number of AoE commands outstanding */ ushort maxout; /* current value for max outstanding */ ushort next_cwnd; /* incr maxout after decrementing to zero */ ushort ssthresh; /* slow start threshold */ |