diff options
author | Ross Lagerwall <ross.lagerwall@citrix.com> | 2015-05-27 11:44:32 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-05-27 12:56:55 -0400 |
commit | ce0e5c522d3924090c20e774359809a7aa08c44c (patch) | |
tree | e8403fbefb62a33f7a84e9810930b89afff07bb7 /drivers/net/xen-netback | |
parent | 748a7295d7242bc1aaaec0e245cc61f2be754766 (diff) |
xen/netback: Properly initialize credit_bytes
Commit e9ce7cb6b107 ("xen-netback: Factor queue-specific data into queue
struct") introduced a regression when moving queue-specific data into
the queue struct by failing to set the credit_bytes field. This
prevented bandwidth limiting from working. Initialize the field as it
was done before multiqueue support was added.
Signed-off-by: Ross Lagerwall <ross.lagerwall@citrix.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/xen-netback')
-rw-r--r-- | drivers/net/xen-netback/xenbus.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/xen-netback/xenbus.c b/drivers/net/xen-netback/xenbus.c index 3d8dbf5f2d39..fee02414529e 100644 --- a/drivers/net/xen-netback/xenbus.c +++ b/drivers/net/xen-netback/xenbus.c @@ -793,6 +793,7 @@ static void connect(struct backend_info *be) goto err; } + queue->credit_bytes = credit_bytes; queue->remaining_credit = credit_bytes; queue->credit_usec = credit_usec; |