diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-10 17:33:02 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-10 17:33:02 -0400 |
commit | 9e897e13bd46fa03485468609741974259a8c573 (patch) | |
tree | ebf95f236e95f074f0ad7a6f99d13e816f594f8a | |
parent | 4ba85265790ba3681deeaf73f018c0eb829a7341 (diff) | |
parent | f1f6630b53e702648a248fecd881f3df5968a31a (diff) |
Merge branch 'for-linus' of git://git.open-osd.org/linux-open-osd
Pull exofs updates from Boaz Harrosh:
"Trivial updates to exofs for 3.15-rc1
Just a few fixes sent by people"
* 'for-linus' of git://git.open-osd.org/linux-open-osd:
MAINTAINERS: Update email address for bhalevy
fs: Mark functions as static in exofs/ore_raid.c
fs: Mark function as static in exofs/super.c
-rw-r--r-- | MAINTAINERS | 2 | ||||
-rw-r--r-- | fs/exofs/ore_raid.c | 4 | ||||
-rw-r--r-- | fs/exofs/super.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index beaa87a6e7fa..6dc67b1fdb50 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
@@ -6543,7 +6543,7 @@ F: drivers/net/wireless/orinoco/ | |||
6543 | 6543 | ||
6544 | OSD LIBRARY and FILESYSTEM | 6544 | OSD LIBRARY and FILESYSTEM |
6545 | M: Boaz Harrosh <bharrosh@panasas.com> | 6545 | M: Boaz Harrosh <bharrosh@panasas.com> |
6546 | M: Benny Halevy <bhalevy@tonian.com> | 6546 | M: Benny Halevy <bhalevy@primarydata.com> |
6547 | L: osd-dev@open-osd.org | 6547 | L: osd-dev@open-osd.org |
6548 | W: http://open-osd.org | 6548 | W: http://open-osd.org |
6549 | T: git git://git.open-osd.org/open-osd.git | 6549 | T: git git://git.open-osd.org/open-osd.git |
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 | ||
24 | struct page *_raid_page_alloc(void) | 24 | static struct page *_raid_page_alloc(void) |
25 | { | 25 | { |
26 | return alloc_page(GFP_KERNEL); | 26 | return alloc_page(GFP_KERNEL); |
27 | } | 27 | } |
28 | 28 | ||
29 | void _raid_page_free(struct page *p) | 29 | static 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 | ||
546 | int __alloc_dev_table(struct exofs_sb_info *sbi, unsigned numdevs, | 546 | static 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 { |