mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-11 00:42:56 -04:00
sfc: Make RX queue descriptor counts unsigned for consistency
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
This commit is contained in:
@@ -272,9 +272,9 @@ struct efx_rx_queue {
|
||||
bool enabled;
|
||||
bool flush_pending;
|
||||
|
||||
int added_count;
|
||||
int notified_count;
|
||||
int removed_count;
|
||||
unsigned int added_count;
|
||||
unsigned int notified_count;
|
||||
unsigned int removed_count;
|
||||
unsigned int max_fill;
|
||||
unsigned int fast_fill_trigger;
|
||||
unsigned int min_fill;
|
||||
|
||||
Reference in New Issue
Block a user