aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/exofs/ore_raid.c4
-rw-r--r--fs/exofs/super.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/fs/exofs/ore_raid.c b/fs/exofs/ore_raid.c
index 7682b970d0f1..4e2c032ab8a1 100644
--- a/fs/exofs/ore_raid.c
+++ b/fs/exofs/ore_raid.c
@@ -21,12 +21,12 @@
21#undef ORE_DBGMSG2 21#undef ORE_DBGMSG2
22#define ORE_DBGMSG2 ORE_DBGMSG 22#define ORE_DBGMSG2 ORE_DBGMSG
23 23
24struct page *_raid_page_alloc(void) 24static struct page *_raid_page_alloc(void)
25{ 25{
26 return alloc_page(GFP_KERNEL); 26 return alloc_page(GFP_KERNEL);
27} 27}
28 28
29void _raid_page_free(struct page *p) 29static void _raid_page_free(struct page *p)
30{ 30{
31 __free_page(p); 31 __free_page(p);
32} 32}
diff --git a/fs/exofs/super.c b/fs/exofs/super.c
index 9d9763328734..ed73ed8ebbee 100644
--- a/fs/exofs/super.c
+++ b/fs/exofs/super.c
@@ -543,7 +543,7 @@ static int exofs_devs_2_odi(struct exofs_dt_device_info *dt_dev,
543 return !(odi->systemid_len || odi->osdname_len); 543 return !(odi->systemid_len || odi->osdname_len);
544} 544}
545 545
546int __alloc_dev_table(struct exofs_sb_info *sbi, unsigned numdevs, 546static int __alloc_dev_table(struct exofs_sb_info *sbi, unsigned numdevs,
547 struct exofs_dev **peds) 547 struct exofs_dev **peds)
548{ 548{
549 struct __alloc_ore_devs_and_exofs_devs { 549 struct __alloc_ore_devs_and_exofs_devs {