Lines Matching defs:super
236 * @super: pointer to the arena's info block being tested
245 bool nd_btt_arena_is_valid(struct nd_btt *nd_btt, struct btt_sb *super)
250 if (memcmp(super->signature, BTT_SIG, BTT_SIG_LEN) != 0)
253 if (!guid_is_null((guid_t *)&super->parent_uuid))
254 if (memcmp(super->parent_uuid, parent_uuid, 16) != 0)
257 checksum = le64_to_cpu(super->checksum);
258 super->checksum = 0;
259 if (checksum != nd_sb_checksum((struct nd_gen_sb *) super))
261 super->checksum = cpu_to_le64(checksum);
264 if ((le32_to_cpu(super->flags) & IB_FLAG_ERROR_MASK) != 0)