objtool: Rename struct cfi_state

There's going to be a new struct cfi_state, rename this one to make
place.

Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Miroslav Benes <mbenes@suse.cz>
Reviewed-by: Alexandre Chartre <alexandre.chartre@oracle.com>
Acked-by: Josh Poimboeuf <jpoimboe@redhat.com>
Link: https://lkml.kernel.org/r/20200416115118.986441913@infradead.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
Peter Zijlstra 2020-03-25 15:34:50 +01:00 committed by Ingo Molnar
parent c536ed2fff
commit a3608f5954
4 changed files with 4 additions and 4 deletions

View File

@ -70,7 +70,7 @@ struct stack_op {
struct instruction;
void arch_initial_func_cfi_state(struct cfi_state *state);
void arch_initial_func_cfi_state(struct cfi_init_state *state);
int arch_decode_instruction(struct elf *elf, struct section *sec,
unsigned long offset, unsigned int maxlen,

View File

@ -512,7 +512,7 @@ int arch_decode_instruction(struct elf *elf, struct section *sec,
return 0;
}
void arch_initial_func_cfi_state(struct cfi_state *state)
void arch_initial_func_cfi_state(struct cfi_init_state *state)
{
int i;

View File

@ -18,7 +18,7 @@ struct cfi_reg {
int offset;
};
struct cfi_state {
struct cfi_init_state {
struct cfi_reg cfa;
struct cfi_reg regs[CFI_NUM_REGS];
};

View File

@ -27,7 +27,7 @@ struct alternative {
};
const char *objname;
struct cfi_state initial_func_cfi;
struct cfi_init_state initial_func_cfi;
struct instruction *find_insn(struct objtool_file *file,
struct section *sec, unsigned long offset)