]> xenbits.xensource.com Git - people/royger/xen.git/commitdiff
x86/mem-sharing: statically initialize audit list head and lock
authorJan Beulich <jbeulich@suse.com>
Mon, 13 May 2019 07:53:22 +0000 (09:53 +0200)
committerJan Beulich <jbeulich@suse.com>
Mon, 13 May 2019 07:53:22 +0000 (09:53 +0200)
There's no need to execute any instructions for doing so. Drop the then
effectively empty mem_sharing_init() altogether.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: George Dunlap <george.dunlap@citrix.com>
Acked-by: Tamas K Lengyel <tamas@tklengyel.com>
xen/arch/x86/mm.c
xen/arch/x86/mm/mem_sharing.c
xen/include/asm-x86/mem_sharing.h

index 45fadbab61f1bf4895357e5f2b6bddd5857f1a66..5e1b061d2a1d8fae2fa608a4dd366c65f915781f 100644 (file)
@@ -368,8 +368,6 @@ void __init arch_init_memory(void)
 
     efi_init_memory();
 
-    mem_sharing_init();
-
 #ifndef NDEBUG
     if ( highmem_start )
     {
index 5ac9d8f54ca8ae852788f444985b943068acc6e4..03aafa57a68027c1cb7645036666901f9674374f 100644 (file)
@@ -65,8 +65,8 @@ static DEFINE_PER_CPU(pg_lock_data_t, __pld);
 
 #if MEM_SHARING_AUDIT
 
-static struct list_head shr_audit_list;
-static spinlock_t shr_audit_lock;
+static LIST_HEAD(shr_audit_list);
+static DEFINE_SPINLOCK(shr_audit_lock);
 static DEFINE_RCU_READ_LOCK(shr_audit_read_lock);
 
 /* RCU delayed free of audit list entry */
@@ -1650,13 +1650,3 @@ int mem_sharing_domctl(struct domain *d, struct xen_domctl_mem_sharing_op *mec)
 
     return rc;
 }
-
-void __init mem_sharing_init(void)
-{
-    printk("Initing memory sharing.\n");
-#if MEM_SHARING_AUDIT
-    spin_lock_init(&shr_audit_lock);
-    INIT_LIST_HEAD(&shr_audit_list);
-#endif
-}
-
index 0e77b7d935e23a797cbdc3c50ab1bfe4460bacf1..9f9f7e93e3ea2c9b623671049f568c1aabe5501e 100644 (file)
@@ -88,7 +88,6 @@ int mem_sharing_notify_enomem(struct domain *d, unsigned long gfn,
 int mem_sharing_memop(XEN_GUEST_HANDLE_PARAM(xen_mem_sharing_op_t) arg);
 int mem_sharing_domctl(struct domain *d, 
                        struct xen_domctl_mem_sharing_op *mec);
-void mem_sharing_init(void);
 
 /* Scans the p2m and relinquishes any shared pages, destroying 
  * those for which this domain holds the final reference.