Re: [Qemu-devel] [PATCH 1/4] throttle: Fix wrong variable name in the header documentation

2017-08-21 Thread Alberto Garcia
On Sat 19 Aug 2017 04:29:47 PM CEST, Manos Pitsidianakis wrote: > On Thu, Aug 17, 2017 at 05:28:12PM +0300, Alberto Garcia wrote: >>The level of the burst bucket is stored in bkt.burst_level, not >>bkt.burst_lenght. > > s/lenght/length, otherwise: Oh my, fixing a typo by introducing another typo :

Re: [Qemu-devel] [PATCH 1/4] throttle: Fix wrong variable name in the header documentation

2017-08-19 Thread Manos Pitsidianakis
On Thu, Aug 17, 2017 at 05:28:12PM +0300, Alberto Garcia wrote: The level of the burst bucket is stored in bkt.burst_level, not bkt.burst_lenght. s/lenght/length, otherwise: Reviewed-by: Manos Pitsidianakis Signed-off-by: Alberto Garcia --- include/qemu/throttle.h | 2 +- 1 file changed, 1

[Qemu-devel] [PATCH 1/4] throttle: Fix wrong variable name in the header documentation

2017-08-17 Thread Alberto Garcia
The level of the burst bucket is stored in bkt.burst_level, not bkt.burst_lenght. Signed-off-by: Alberto Garcia --- include/qemu/throttle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/qemu/throttle.h b/include/qemu/throttle.h index d056008c18..66a8ac10a4 100644 --