summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2023-08-17 23:45:01 +0200
committerHelge Deller <deller@gmx.de>2023-08-22 10:24:47 +0200
commit6b3cba375917494d5905c9b9c1ea2acdf73922e8 (patch)
treefc9a7387629780fabe1735d9f9985b2ba071e3c1
parent22de5d626231b9439a92b030fc8c87603739c2d1 (diff)
parisc: Fix comment on Elf64 function descriptor
The format of the Elf64 function descriptor is defined by the ABI. Mention the various use cases in the comment. Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r--arch/parisc/include/asm/elf.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/parisc/include/asm/elf.h b/arch/parisc/include/asm/elf.h
index cc426d365892..140eaa97bf21 100644
--- a/arch/parisc/include/asm/elf.h
+++ b/arch/parisc/include/asm/elf.h
@@ -163,8 +163,7 @@ typedef struct elf32_fdesc {
/* Format for the Elf64 Function descriptor */
typedef struct elf64_fdesc {
- __u64 dummy[2]; /* FIXME: nothing uses these, why waste
- * the space */
+ __u64 dummy[2]; /* used by 64-bit eBPF and tracing functions */
__u64 addr;
__u64 gp;
} Elf64_Fdesc;