lib: dynamic_queue_limits: delete duplicated words + fix typo
authorRandy Dunlap <rdunlap@infradead.org>
Fri, 16 Oct 2020 03:10:57 +0000 (20:10 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 16 Oct 2020 18:11:20 +0000 (11:11 -0700)
Drop the repeated word "the".
Fix spelling of "excess".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Link: https://lkml.kernel.org/r/20200823040449.25946-1-rdunlap@infradead.org
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
lib/dynamic_queue_limits.c

index e659a02..fde0aa2 100644 (file)
@@ -60,8 +60,8 @@ void dql_completed(struct dql *dql, unsigned int count)
                 * A decrease is only considered if the queue has been busy in
                 * the whole interval (the check above).
                 *
-                * If there is slack, the amount of execess data queued above
-                * the the amount needed to prevent starvation, the queue limit
+                * If there is slack, the amount of excess data queued above
+                * the amount needed to prevent starvation, the queue limit
                 * can be decreased.  To avoid hysteresis we consider the
                 * minimum amount of slack found over several iterations of the
                 * completion routine.