diff options
author | Chuck Ebbert <cebbert@redhat.com> | 2009-02-11 02:18:17 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-02-11 02:18:17 +0100 |
commit | e672f7db767156bf71adf9c592cfe81b339523d6 (patch) | |
tree | 96ad97a5a3904c069b0f6797bd7f05ef633428ba /include | |
parent | Phonet: do not compute unused value (diff) | |
download | linux-e672f7db767156bf71adf9c592cfe81b339523d6.tar.xz linux-e672f7db767156bf71adf9c592cfe81b339523d6.zip |
pkt_sched: type should be __u32 in header
Using u32 in this header breaks the build of iptables.
Signed-off-by: Chuck Ebbert <cebbert@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/pkt_sched.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/pkt_sched.h b/include/linux/pkt_sched.h index b2648e8e4987..d51a2b3e221e 100644 --- a/include/linux/pkt_sched.h +++ b/include/linux/pkt_sched.h @@ -515,7 +515,7 @@ enum struct tc_drr_stats { - u32 deficit; + __u32 deficit; }; #endif |