summaryrefslogtreecommitdiff
path: root/vm/vm_page.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2014-01-02 23:38:19 +0100
committerRichard Braun <rbraun@sceen.net>2014-01-02 23:38:19 +0100
commit8ad09341a41f54c846296a4265d0914f24e5a69b (patch)
tree46b1454b40e530c414d8ffa1466ac58ce10f6da3 /vm/vm_page.c
parent73cb08aea72483f509d774630a63006b9338c1ad (diff)
Declare variables as read mostly where appropriate
Diffstat (limited to 'vm/vm_page.c')
-rw-r--r--vm/vm_page.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/vm/vm_page.c b/vm/vm_page.c
index ca0b8e9..fb688c3 100644
--- a/vm/vm_page.c
+++ b/vm/vm_page.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2010, 2011, 2012, 2013 Richard Braun.
+ * Copyright (c) 2010-2014 Richard Braun.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -124,12 +124,13 @@ struct vm_page_boot_seg {
phys_addr_t avail_end;
};
-int vm_page_ready;
+/* TODO Accessor */
+int vm_page_ready __read_mostly;
/*
* Segment lists, ordered by priority.
*/
-static struct list vm_page_seg_lists[VM_PAGE_NR_SEGLISTS];
+static struct list vm_page_seg_lists[VM_PAGE_NR_SEGLISTS] __read_mostly;
/*
* Segment table.
@@ -144,7 +145,7 @@ static struct vm_page_boot_seg vm_page_boot_segs[VM_PAGE_MAX_SEGS] __initdata;
/*
* Number of loaded segments.
*/
-static unsigned int vm_page_segs_size;
+static unsigned int vm_page_segs_size __read_mostly;
static int vm_page_load_initialized __initdata = 0;