kpatch/test/integration/ubuntu-16.04/module-call-external.patch....

39 lines
1.1 KiB
Plaintext

Disabled:
Original build includes "kzalloc" in af_netlink.c's symbol list, this
does not happen during kpatch build so create-diff-object fails with
find_local_syms.
---
diff -Nupr src.orig/fs/nfsd/export.c src/fs/nfsd/export.c
--- src.orig/fs/nfsd/export.c 2016-12-15 19:55:39.012000000 +0000
+++ src/fs/nfsd/export.c 2016-12-15 19:57:31.068000000 +0000
@@ -1183,6 +1183,8 @@ static void exp_flags(struct seq_file *m
}
}
+extern char *kpatch_string(void);
+
static int e_show(struct seq_file *m, void *p)
{
struct cache_head *cp = p;
@@ -1192,6 +1194,7 @@ static int e_show(struct seq_file *m, vo
if (p == SEQ_START_TOKEN) {
seq_puts(m, "# Version 1.1\n");
seq_puts(m, "# Path Client(Flags) # IPs\n");
+ seq_puts(m, kpatch_string());
return 0;
}
diff -Nupr src.orig/net/netlink/af_netlink.c src/net/netlink/af_netlink.c
--- src.orig/net/netlink/af_netlink.c 2016-12-15 19:55:39.772000000 +0000
+++ src/net/netlink/af_netlink.c 2016-12-15 19:57:31.072000000 +0000
@@ -3353,4 +3353,9 @@ panic:
panic("netlink_init: Cannot allocate nl_table\n");
}
+char *kpatch_string(void)
+{
+ return "# kpatch\n";
+}
+
core_initcall(netlink_proto_init);