summaryrefslogtreecommitdiffstats
path: root/sys/dev/sfxge
diff options
context:
space:
mode:
authorarybchik <arybchik@FreeBSD.org>2016-12-31 11:19:40 +0000
committerarybchik <arybchik@FreeBSD.org>2016-12-31 11:19:40 +0000
commit710822c89aec17b0f57e008bfe0550bd06426db7 (patch)
tree271b77a9111397940c9c3c707cecb29100ee4b66 /sys/dev/sfxge
parent33e9c8ed2ff0d2db7108c8616656de67b64f6ccb (diff)
downloadFreeBSD-src-710822c89aec17b0f57e008bfe0550bd06426db7.zip
FreeBSD-src-710822c89aec17b0f57e008bfe0550bd06426db7.tar.gz
MFC r310709
sfxge(4): fix invalid type of eft_unicst_filter_count Found by clang when boolean_t is defined as bool for DPDK PMD. Sponsored by: Solarflare Communications, Inc.
Diffstat (limited to 'sys/dev/sfxge')
-rw-r--r--sys/dev/sfxge/common/ef10_impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sfxge/common/ef10_impl.h b/sys/dev/sfxge/common/ef10_impl.h
index 427fb45..1ca9d1a 100644
--- a/sys/dev/sfxge/common/ef10_impl.h
+++ b/sys/dev/sfxge/common/ef10_impl.h
@@ -954,7 +954,7 @@ typedef struct ef10_filter_table_s {
boolean_t eft_using_rss;
uint32_t eft_unicst_filter_indexes[
EFX_EF10_FILTER_UNICAST_FILTERS_MAX];
- boolean_t eft_unicst_filter_count;
+ uint32_t eft_unicst_filter_count;
uint32_t eft_mulcst_filter_indexes[
EFX_EF10_FILTER_MULTICAST_FILTERS_MAX];
uint32_t eft_mulcst_filter_count;
OpenPOWER on IntegriCloud