Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next
[linux-2.6-microblaze.git] / include / linux / bpf_verifier.h
index 81b1966..2e3bad8 100644 (file)
@@ -345,10 +345,10 @@ struct bpf_verifier_state_list {
 };
 
 struct bpf_loop_inline_state {
-       int initialized:1; /* set to true upon first entry */
-       int fit_for_inline:1; /* true if callback function is the same
-                              * at each call and flags are always zero
-                              */
+       unsigned int initialized:1; /* set to true upon first entry */
+       unsigned int fit_for_inline:1; /* true if callback function is the same
+                                       * at each call and flags are always zero
+                                       */
        u32 callback_subprogno; /* valid when fit_for_inline is true */
 };