mcctrl: remove rus page cache

Change-Id: Ieed7a2a0077ffde3fec8a64d2051e56a53924a42
This commit is contained in:
Dominique Martinet
2018-08-07 09:46:53 +09:00
committed by Balazs Gerofi
parent ebc702624b
commit 9b8424523a
2 changed files with 0 additions and 138 deletions

View File

@@ -44,8 +44,6 @@ extern void mcctrl_syscall_init(void);
extern void procfs_init(int);
extern void procfs_exit(int);
extern void rus_page_hash_init(void);
extern void rus_page_hash_put_pages(void);
extern void uti_attr_finalize(void);
extern void binfmt_mcexec_init(void);
extern void binfmt_mcexec_exit(void);
@@ -186,9 +184,6 @@ int mcctrl_os_shutdown_notifier(int os_index)
destroy_ikc_channels(os[os_index]);
procfs_exit(os_index);
}
#ifdef POSTK_DEBUG_TEMP_FIX_35 /* in shutdown phase, rus_page_hash_put_pages() call added. */
rus_page_hash_put_pages();
#endif /* POSTK_DEBUG_TEMP_FIX_35 */
os[os_index] = NULL;
@@ -282,8 +277,6 @@ static int __init mcctrl_init(void)
os[i] = NULL;
}
rus_page_hash_init();
binfmt_mcexec_init();
if ((ret = symbols_init()))
@@ -299,7 +292,6 @@ static int __init mcctrl_init(void)
error:
binfmt_mcexec_exit();
rus_page_hash_put_pages();
return ret;
}
@@ -311,7 +303,6 @@ static void __exit mcctrl_exit(void)
}
binfmt_mcexec_exit();
rus_page_hash_put_pages();
uti_attr_finalize();
printk("mcctrl: unregistered.\n");