aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2024-03-31 10:30:06 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2024-03-31 10:30:06 -0700
commit8d7e76846521440255a15180c6a7a170654fbb5a (patch)
treeab49d9b54e8657bf95ab6e0ebff13b042c5bcdf6
parent1aac9cb7e66e0cde153c90e9b96ac5644285af8b (diff)
parent6205125bd326ed0153e5f9da3c4689fe60ae885a (diff)
downloadrdma-8d7e76846521440255a15180c6a7a170654fbb5a.tar.gz
Merge tag 'objtool_urgent_for_v6.9_rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull objtool fix from Borislav Petkov: - Fix a format specifier build error in objtool during an x32 build * tag 'objtool_urgent_for_v6.9_rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: objtool: Fix compile failure when using the x32 compiler
-rw-r--r--tools/objtool/check.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/objtool/check.c b/tools/objtool/check.c
index 0b10ad00866867..0a33d9195b7a91 100644
--- a/tools/objtool/check.c
+++ b/tools/objtool/check.c
@@ -585,7 +585,7 @@ static int add_dead_ends(struct objtool_file *file)
struct section *rsec;
struct reloc *reloc;
struct instruction *insn;
- unsigned long offset;
+ uint64_t offset;
/*
* Check for manually annotated dead ends.