#define INIT_STRUCT_none               /**/
 #define INIT_STRUCT_zero               = { }
 #define INIT_STRUCT_static_partial     = { .two = 0, }
-#define INIT_STRUCT_static_all         = { .one = arg->one,            \
-                                           .two = arg->two,            \
-                                           .three = arg->three,        \
-                                           .four = arg->four,          \
+#define INIT_STRUCT_static_all         = { .one = 0,                   \
+                                           .two = 0,                   \
+                                           .three = 0,                 \
+                                           .four = 0,                  \
                                        }
 #define INIT_STRUCT_dynamic_partial    = { .two = arg->two, }
 #define INIT_STRUCT_dynamic_all                = { .one = arg->one,            \
                                        var.one = 0;                    \
                                        var.two = 0;                    \
                                        var.three = 0;                  \
-                                       memset(&var.four, 0,            \
-                                              sizeof(var.four))
+                                       var.four = 0
 
 /*
  * @name: unique string name for the test
        unsigned long four;
 };
 
-/* Try to trigger unhandled padding in a structure. */
-struct test_aligned {
-       u32 internal1;
-       u64 internal2;
-} __aligned(64);
-
+/* Trigger unhandled padding in a structure. */
 struct test_big_hole {
        u8 one;
        u8 two;
        u8 three;
        /* 61 byte padding hole here. */
-       struct test_aligned four;
+       u8 four __aligned(64);
 } __aligned(64);
 
 struct test_trailing_hole {