Commit 2ddfd20e authored by Ingo Molnar's avatar Ingo Molnar Committed by Thomas Gleixner

namespacecheck: automated fixes

Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent de067814
...@@ -53,7 +53,7 @@ static cycle_t kvm_clock_read(void); ...@@ -53,7 +53,7 @@ static cycle_t kvm_clock_read(void);
* have elapsed since the hypervisor wrote the data. So we try to account for * have elapsed since the hypervisor wrote the data. So we try to account for
* that with system time * that with system time
*/ */
unsigned long kvm_get_wallclock(void) static unsigned long kvm_get_wallclock(void)
{ {
u32 wc_sec, wc_nsec; u32 wc_sec, wc_nsec;
u64 delta; u64 delta;
...@@ -86,7 +86,7 @@ unsigned long kvm_get_wallclock(void) ...@@ -86,7 +86,7 @@ unsigned long kvm_get_wallclock(void)
return ts.tv_sec + 1; return ts.tv_sec + 1;
} }
int kvm_set_wallclock(unsigned long now) static int kvm_set_wallclock(unsigned long now)
{ {
return 0; return 0;
} }
......
...@@ -1996,7 +1996,7 @@ static struct shrinker mmu_shrinker = { ...@@ -1996,7 +1996,7 @@ static struct shrinker mmu_shrinker = {
.seeks = DEFAULT_SEEKS * 10, .seeks = DEFAULT_SEEKS * 10,
}; };
void mmu_destroy_caches(void) static void mmu_destroy_caches(void)
{ {
if (pte_chain_cache) if (pte_chain_cache)
kmem_cache_destroy(pte_chain_cache); kmem_cache_destroy(pte_chain_cache);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment