Skip to content

Commit

Permalink
Merge branch 'for-next/kspp' of git://git.kernel.org/pub/scm/linux/ke…
Browse files Browse the repository at this point in the history
…rnel/git/gustavoars/linux.git
  • Loading branch information
Mark Brown committed Sep 27, 2022
2 parents b08b115 + 0811296 commit dcfe749
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/linux/exportfs.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ struct fid {
u32 parent_block;
u32 parent_generation;
} udf;
__u32 raw[0];
DECLARE_FLEX_ARRAY(__u32, raw);
};
};

Expand Down
2 changes: 1 addition & 1 deletion include/linux/memremap.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ struct dev_pagemap {
int nr_range;
union {
struct range range;
struct range ranges[0];
DECLARE_FLEX_ARRAY(struct range, ranges);
};
};

Expand Down
2 changes: 1 addition & 1 deletion tools/objtool/check.c
Original file line number Diff line number Diff line change
Expand Up @@ -4128,7 +4128,7 @@ static int validate_ibt(struct objtool_file *file)
!strcmp(sec->name, "__ex_table") ||
!strcmp(sec->name, "__jump_table") ||
!strcmp(sec->name, "__mcount_loc") ||
!strcmp(sec->name, ".kcfi_traps")) ||
!strcmp(sec->name, ".kcfi_traps") ||
strstr(sec->name, "__patchable_function_entries"))
continue;

Expand Down

0 comments on commit dcfe749

Please sign in to comment.