Blame SOURCES/v0.9.2-backport-MR-1281-create-diff-object-add-suppo.patch

93c8d4
From d98f100dc979f87296ec88b63a0d506aaf4cd2bd Mon Sep 17 00:00:00 2001
93c8d4
From: Joe Lawrence <joe.lawrence@redhat.com>
93c8d4
Date: Thu, 8 Dec 2022 12:31:17 -0500
93c8d4
Subject: [PATCH] v0.9.2 backport: MR!1281 ("create-diff-object: add support
93c8d4
 for .return_sites section (x86)")
93c8d4
Content-type: text/plain
93c8d4
93c8d4
commit 33368a88cdf875b0edd02b0dfd3356a7e93b24db
93c8d4
Author: Jonathan Dobson <jdobson@redhat.com>
93c8d4
Date:   Sat Jul 16 15:46:54 2022 -0600
93c8d4
93c8d4
    create-diff-object: add support for .return_sites section (x86)
93c8d4
93c8d4
    Conflicts:
93c8d4
    	kpatch-build/create-diff-object.c
93c8d4
	- Manually apply patch to avoid diff context, v0.9.2 structure
93c8d4
	  special_section structure doesn't have .arch
93c8d4
93c8d4
Signed-off-by: Joe Lawrence <joe.lawrence@redhat.com>
93c8d4
---
93c8d4
 kpatch-build/create-diff-object.c | 10 ++++++++++
93c8d4
 1 file changed, 10 insertions(+)
93c8d4
93c8d4
diff --git a/kpatch-build/create-diff-object.c b/kpatch-build/create-diff-object.c
93c8d4
index cee8adf333dc..c9afe33bbdae 100644
93c8d4
--- a/kpatch-build/create-diff-object.c
93c8d4
+++ b/kpatch-build/create-diff-object.c
93c8d4
@@ -1991,6 +1991,11 @@ static int altinstructions_group_size(struct kpatch_elf *kelf, int offset)
93c8d4
 	return size;
93c8d4
 }
93c8d4
 
93c8d4
+static int return_sites_group_size(struct kpatch_elf *kelf, int offset)
93c8d4
+{
93c8d4
+	return 4;
93c8d4
+}
93c8d4
+
93c8d4
 static int smp_locks_group_size(struct kpatch_elf *kelf, int offset)
93c8d4
 {
93c8d4
 	return 4;
93c8d4
@@ -2103,6 +2108,11 @@ static struct special_section special_sections[] = {
93c8d4
 		.name		= ".altinstructions",
93c8d4
 		.group_size	= altinstructions_group_size,
93c8d4
 	},
93c8d4
+	{
93c8d4
+		.name		= ".return_sites",
93c8d4
+		.group_size	= return_sites_group_size,
93c8d4
+	},
93c8d4
+
93c8d4
 #endif
93c8d4
 #ifdef __powerpc64__
93c8d4
 	{
93c8d4
-- 
93c8d4
2.38.1
93c8d4