aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Marshall <hubcap@omnibond.com>2015-12-04 12:56:14 -0500
committerMike Marshall <hubcap@omnibond.com>2015-12-04 12:56:14 -0500
commit575e946125f70c41c2042f10172842c5cab9a09a (patch)
treeb90d02ee390b0289a8a66123b58e0f6354e7964c
parent8bb8aefd5afb54a25a002feb4ec70011812d06a0 (diff)
Orangefs: change pvfs2 filenames to orangefs
Also changed references within source files that referred to header files whose names had changed. Signed-off-by: Mike Marshall <hubcap@omnibond.com>
-rw-r--r--Makefile2
-rw-r--r--fs/orangefs/Makefile8
-rw-r--r--fs/orangefs/acl.c4
-rw-r--r--fs/orangefs/dcache.c2
-rw-r--r--fs/orangefs/devorangefs-req.c (renamed from fs/orangefs/devpvfs2-req.c)6
-rw-r--r--fs/orangefs/dir.c4
-rw-r--r--fs/orangefs/file.c6
-rw-r--r--fs/orangefs/inode.c8
-rw-r--r--fs/orangefs/namei.c2
-rw-r--r--fs/orangefs/orangefs-bufmap.c (renamed from fs/orangefs/pvfs2-bufmap.c)4
-rw-r--r--fs/orangefs/orangefs-bufmap.h (renamed from fs/orangefs/pvfs2-bufmap.h)0
-rw-r--r--fs/orangefs/orangefs-cache.c (renamed from fs/orangefs/pvfs2-cache.c)2
-rw-r--r--fs/orangefs/orangefs-debug.h (renamed from fs/orangefs/pvfs2-debug.h)0
-rw-r--r--fs/orangefs/orangefs-debugfs.c (renamed from fs/orangefs/pvfs2-debugfs.c)4
-rw-r--r--fs/orangefs/orangefs-debugfs.h (renamed from fs/orangefs/pvfs2-debugfs.h)0
-rw-r--r--fs/orangefs/orangefs-dev-proto.h (renamed from fs/orangefs/pvfs2-dev-proto.h)0
-rw-r--r--fs/orangefs/orangefs-kernel.h (renamed from fs/orangefs/pvfs2-kernel.h)2
-rw-r--r--fs/orangefs/orangefs-mod.c (renamed from fs/orangefs/pvfs2-mod.c)8
-rw-r--r--fs/orangefs/orangefs-sysfs.c (renamed from fs/orangefs/pvfs2-sysfs.c)4
-rw-r--r--fs/orangefs/orangefs-sysfs.h (renamed from fs/orangefs/pvfs2-sysfs.h)0
-rw-r--r--fs/orangefs/orangefs-utils.c (renamed from fs/orangefs/pvfs2-utils.c)6
-rw-r--r--fs/orangefs/protocol.h6
-rw-r--r--fs/orangefs/super.c4
-rw-r--r--fs/orangefs/symlink.c4
-rw-r--r--fs/orangefs/waitqueue.c4
-rw-r--r--fs/orangefs/xattr.c4
26 files changed, 47 insertions, 47 deletions
diff --git a/Makefile b/Makefile
index 3a0234f50f36..aca4a73ad069 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
1VERSION = 4 1VERSION = 4
2PATCHLEVEL = 4 2PATCHLEVEL = 4
3SUBLEVEL = 0 3SUBLEVEL = 0
4EXTRAVERSION = -rc1 4EXTRAVERSION = -rc1-o
5NAME = Blurry Fish Butt 5NAME = Blurry Fish Butt
6 6
7# *DOCUMENTATION* 7# *DOCUMENTATION*
diff --git a/fs/orangefs/Makefile b/fs/orangefs/Makefile
index 828b36a6916d..a9d6a968fe6d 100644
--- a/fs/orangefs/Makefile
+++ b/fs/orangefs/Makefile
@@ -4,7 +4,7 @@
4 4
5obj-$(CONFIG_ORANGEFS_FS) += orangefs.o 5obj-$(CONFIG_ORANGEFS_FS) += orangefs.o
6 6
7orangefs-objs := acl.o file.o pvfs2-cache.o pvfs2-utils.o xattr.o dcache.o \ 7orangefs-objs := acl.o file.o orangefs-cache.o orangefs-utils.o xattr.o \
8 inode.o pvfs2-sysfs.o pvfs2-mod.o super.o devpvfs2-req.o \ 8 dcache.o inode.o orangefs-sysfs.o orangefs-mod.o super.o \
9 namei.o symlink.o dir.o pvfs2-bufmap.o \ 9 devorangefs-req.o namei.o symlink.o dir.o orangefs-bufmap.o \
10 pvfs2-debugfs.o waitqueue.o 10 orangefs-debugfs.o waitqueue.o
diff --git a/fs/orangefs/acl.c b/fs/orangefs/acl.c
index 5e27d5fcb6bf..03f89dbb2512 100644
--- a/fs/orangefs/acl.c
+++ b/fs/orangefs/acl.c
@@ -5,8 +5,8 @@
5 */ 5 */
6 6
7#include "protocol.h" 7#include "protocol.h"
8#include "pvfs2-kernel.h" 8#include "orangefs-kernel.h"
9#include "pvfs2-bufmap.h" 9#include "orangefs-bufmap.h"
10#include <linux/posix_acl_xattr.h> 10#include <linux/posix_acl_xattr.h>
11#include <linux/fs_struct.h> 11#include <linux/fs_struct.h>
12 12
diff --git a/fs/orangefs/dcache.c b/fs/orangefs/dcache.c
index 12c916fa4c7f..5dd9841df64e 100644
--- a/fs/orangefs/dcache.c
+++ b/fs/orangefs/dcache.c
@@ -9,7 +9,7 @@
9 */ 9 */
10 10
11#include "protocol.h" 11#include "protocol.h"
12#include "pvfs2-kernel.h" 12#include "orangefs-kernel.h"
13 13
14/* Returns 1 if dentry can still be trusted, else 0. */ 14/* Returns 1 if dentry can still be trusted, else 0. */
15static int orangefs_revalidate_lookup(struct dentry *dentry) 15static int orangefs_revalidate_lookup(struct dentry *dentry)
diff --git a/fs/orangefs/devpvfs2-req.c b/fs/orangefs/devorangefs-req.c
index e18149f0975b..e74938d575d6 100644
--- a/fs/orangefs/devpvfs2-req.c
+++ b/fs/orangefs/devorangefs-req.c
@@ -8,9 +8,9 @@
8 */ 8 */
9 9
10#include "protocol.h" 10#include "protocol.h"
11#include "pvfs2-kernel.h" 11#include "orangefs-kernel.h"
12#include "pvfs2-dev-proto.h" 12#include "orangefs-dev-proto.h"
13#include "pvfs2-bufmap.h" 13#include "orangefs-bufmap.h"
14 14
15#include <linux/debugfs.h> 15#include <linux/debugfs.h>
16#include <linux/slab.h> 16#include <linux/slab.h>
diff --git a/fs/orangefs/dir.c b/fs/orangefs/dir.c
index 452d589b9747..c043894fc2bd 100644
--- a/fs/orangefs/dir.c
+++ b/fs/orangefs/dir.c
@@ -5,8 +5,8 @@
5 */ 5 */
6 6
7#include "protocol.h" 7#include "protocol.h"
8#include "pvfs2-kernel.h" 8#include "orangefs-kernel.h"
9#include "pvfs2-bufmap.h" 9#include "orangefs-bufmap.h"
10 10
11struct readdir_handle_s { 11struct readdir_handle_s {
12 int buffer_index; 12 int buffer_index;
diff --git a/fs/orangefs/file.c b/fs/orangefs/file.c
index ae5d8ed67ed5..171013ae0036 100644
--- a/fs/orangefs/file.c
+++ b/fs/orangefs/file.c
@@ -9,8 +9,8 @@
9 */ 9 */
10 10
11#include "protocol.h" 11#include "protocol.h"
12#include "pvfs2-kernel.h" 12#include "orangefs-kernel.h"
13#include "pvfs2-bufmap.h" 13#include "orangefs-bufmap.h"
14#include <linux/fs.h> 14#include <linux/fs.h>
15#include <linux/pagemap.h> 15#include <linux/pagemap.h>
16 16
@@ -186,7 +186,7 @@ populate_shared_memory:
186 } 186 }
187 187
188 if (ret < 0) { 188 if (ret < 0) {
189 handle_io_error(); /* defined in pvfs2-kernel.h */ 189 handle_io_error();
190 /* 190 /*
191 * don't write an error to syslog on signaled operation 191 * don't write an error to syslog on signaled operation
192 * termination unless we've got debugging turned on, as 192 * termination unless we've got debugging turned on, as
diff --git a/fs/orangefs/inode.c b/fs/orangefs/inode.c
index 58e83182d3dc..4724c92b61ac 100644
--- a/fs/orangefs/inode.c
+++ b/fs/orangefs/inode.c
@@ -9,8 +9,8 @@
9 */ 9 */
10 10
11#include "protocol.h" 11#include "protocol.h"
12#include "pvfs2-kernel.h" 12#include "orangefs-kernel.h"
13#include "pvfs2-bufmap.h" 13#include "orangefs-bufmap.h"
14 14
15static int read_one_page(struct page *page) 15static int read_one_page(struct page *page)
16{ 16{
@@ -125,7 +125,7 @@ static int orangefs_releasepage(struct page *page, gfp_t foo)
125 * AIO. Modeled after NFS, they do this too. 125 * AIO. Modeled after NFS, they do this too.
126 */ 126 */
127/* 127/*
128 * static ssize_t pvfs2_direct_IO(int rw, 128 * static ssize_t orangefs_direct_IO(int rw,
129 * struct kiocb *iocb, 129 * struct kiocb *iocb,
130 * struct iov_iter *iter, 130 * struct iov_iter *iter,
131 * loff_t offset) 131 * loff_t offset)
@@ -150,7 +150,7 @@ const struct address_space_operations orangefs_address_operations = {
150 .readpages = orangefs_readpages, 150 .readpages = orangefs_readpages,
151 .invalidatepage = orangefs_invalidatepage, 151 .invalidatepage = orangefs_invalidatepage,
152 .releasepage = orangefs_releasepage, 152 .releasepage = orangefs_releasepage,
153/* .direct_IO = pvfs2_direct_IO */ 153/* .direct_IO = orangefs_direct_IO */
154}; 154};
155 155
156static int orangefs_setattr_size(struct inode *inode, struct iattr *iattr) 156static int orangefs_setattr_size(struct inode *inode, struct iattr *iattr)
diff --git a/fs/orangefs/namei.c b/fs/orangefs/namei.c
index 333c87c8b0f5..63aa1e7fbdb6 100644
--- a/fs/orangefs/namei.c
+++ b/fs/orangefs/namei.c
@@ -9,7 +9,7 @@
9 */ 9 */
10 10
11#include "protocol.h" 11#include "protocol.h"
12#include "pvfs2-kernel.h" 12#include "orangefs-kernel.h"
13 13
14/* 14/*
15 * Get a newly allocated inode to go with a negative dentry. 15 * Get a newly allocated inode to go with a negative dentry.
diff --git a/fs/orangefs/pvfs2-bufmap.c b/fs/orangefs/orangefs-bufmap.c
index 345287e871b1..c5368d852ee2 100644
--- a/fs/orangefs/pvfs2-bufmap.c
+++ b/fs/orangefs/orangefs-bufmap.c
@@ -4,8 +4,8 @@
4 * See COPYING in top-level directory. 4 * See COPYING in top-level directory.
5 */ 5 */
6#include "protocol.h" 6#include "protocol.h"
7#include "pvfs2-kernel.h" 7#include "orangefs-kernel.h"
8#include "pvfs2-bufmap.h" 8#include "orangefs-bufmap.h"
9 9
10DECLARE_WAIT_QUEUE_HEAD(orangefs_bufmap_init_waitq); 10DECLARE_WAIT_QUEUE_HEAD(orangefs_bufmap_init_waitq);
11 11
diff --git a/fs/orangefs/pvfs2-bufmap.h b/fs/orangefs/orangefs-bufmap.h
index 91d1755c231a..91d1755c231a 100644
--- a/fs/orangefs/pvfs2-bufmap.h
+++ b/fs/orangefs/orangefs-bufmap.h
diff --git a/fs/orangefs/pvfs2-cache.c b/fs/orangefs/orangefs-cache.c
index a224831770f4..57e270246e3d 100644
--- a/fs/orangefs/pvfs2-cache.c
+++ b/fs/orangefs/orangefs-cache.c
@@ -5,7 +5,7 @@
5 */ 5 */
6 6
7#include "protocol.h" 7#include "protocol.h"
8#include "pvfs2-kernel.h" 8#include "orangefs-kernel.h"
9 9
10/* tags assigned to kernel upcall operations */ 10/* tags assigned to kernel upcall operations */
11static __u64 next_tag_value; 11static __u64 next_tag_value;
diff --git a/fs/orangefs/pvfs2-debug.h b/fs/orangefs/orangefs-debug.h
index e6b4baa5e8fb..e6b4baa5e8fb 100644
--- a/fs/orangefs/pvfs2-debug.h
+++ b/fs/orangefs/orangefs-debug.h
diff --git a/fs/orangefs/pvfs2-debugfs.c b/fs/orangefs/orangefs-debugfs.c
index 315dc538b723..7319f1a2ecb8 100644
--- a/fs/orangefs/pvfs2-debugfs.c
+++ b/fs/orangefs/orangefs-debugfs.c
@@ -39,9 +39,9 @@
39 39
40#include <linux/uaccess.h> 40#include <linux/uaccess.h>
41 41
42#include "pvfs2-debugfs.h" 42#include "orangefs-debugfs.h"
43#include "protocol.h" 43#include "protocol.h"
44#include "pvfs2-kernel.h" 44#include "orangefs-kernel.h"
45 45
46static int orangefs_debug_disabled = 1; 46static int orangefs_debug_disabled = 1;
47 47
diff --git a/fs/orangefs/pvfs2-debugfs.h b/fs/orangefs/orangefs-debugfs.h
index e4828c0e3ef9..e4828c0e3ef9 100644
--- a/fs/orangefs/pvfs2-debugfs.h
+++ b/fs/orangefs/orangefs-debugfs.h
diff --git a/fs/orangefs/pvfs2-dev-proto.h b/fs/orangefs/orangefs-dev-proto.h
index dc1951dd7045..dc1951dd7045 100644
--- a/fs/orangefs/pvfs2-dev-proto.h
+++ b/fs/orangefs/orangefs-dev-proto.h
diff --git a/fs/orangefs/pvfs2-kernel.h b/fs/orangefs/orangefs-kernel.h
index 33fcf3bccd2e..840872389fc5 100644
--- a/fs/orangefs/pvfs2-kernel.h
+++ b/fs/orangefs/orangefs-kernel.h
@@ -53,7 +53,7 @@
53 53
54#include <asm/unaligned.h> 54#include <asm/unaligned.h>
55 55
56#include "pvfs2-dev-proto.h" 56#include "orangefs-dev-proto.h"
57 57
58#ifdef ORANGEFS_KERNEL_DEBUG 58#ifdef ORANGEFS_KERNEL_DEBUG
59#define ORANGEFS_DEFAULT_OP_TIMEOUT_SECS 10 59#define ORANGEFS_DEFAULT_OP_TIMEOUT_SECS 10
diff --git a/fs/orangefs/pvfs2-mod.c b/fs/orangefs/orangefs-mod.c
index d8642908a917..fa2fca6dca7c 100644
--- a/fs/orangefs/pvfs2-mod.c
+++ b/fs/orangefs/orangefs-mod.c
@@ -8,9 +8,9 @@
8 */ 8 */
9 9
10#include "protocol.h" 10#include "protocol.h"
11#include "pvfs2-kernel.h" 11#include "orangefs-kernel.h"
12#include "pvfs2-debugfs.h" 12#include "orangefs-debugfs.h"
13#include "pvfs2-sysfs.h" 13#include "orangefs-sysfs.h"
14 14
15/* ORANGEFS_VERSION is a ./configure define */ 15/* ORANGEFS_VERSION is a ./configure define */
16#ifndef ORANGEFS_VERSION 16#ifndef ORANGEFS_VERSION
@@ -152,7 +152,7 @@ static int __init orangefs_init(void)
152 if (ret < 0) 152 if (ret < 0)
153 goto cleanup_inode; 153 goto cleanup_inode;
154 154
155 /* Initialize the pvfsdev subsystem. */ 155 /* Initialize the orangefsdev subsystem. */
156 ret = orangefs_dev_init(); 156 ret = orangefs_dev_init();
157 if (ret < 0) { 157 if (ret < 0) {
158 gossip_err("orangefs: could not initialize device subsystem %d!\n", 158 gossip_err("orangefs: could not initialize device subsystem %d!\n",
diff --git a/fs/orangefs/pvfs2-sysfs.c b/fs/orangefs/orangefs-sysfs.c
index f04de2593c79..3d360383ea22 100644
--- a/fs/orangefs/pvfs2-sysfs.c
+++ b/fs/orangefs/orangefs-sysfs.c
@@ -99,8 +99,8 @@
99#include <linux/init.h> 99#include <linux/init.h>
100 100
101#include "protocol.h" 101#include "protocol.h"
102#include "pvfs2-kernel.h" 102#include "orangefs-kernel.h"
103#include "pvfs2-sysfs.h" 103#include "orangefs-sysfs.h"
104 104
105#define ORANGEFS_KOBJ_ID "orangefs" 105#define ORANGEFS_KOBJ_ID "orangefs"
106#define ACACHE_KOBJ_ID "acache" 106#define ACACHE_KOBJ_ID "acache"
diff --git a/fs/orangefs/pvfs2-sysfs.h b/fs/orangefs/orangefs-sysfs.h
index f0b76382db02..f0b76382db02 100644
--- a/fs/orangefs/pvfs2-sysfs.h
+++ b/fs/orangefs/orangefs-sysfs.h
diff --git a/fs/orangefs/pvfs2-utils.c b/fs/orangefs/orangefs-utils.c
index d132c5f712a4..fa2a46521b7a 100644
--- a/fs/orangefs/pvfs2-utils.c
+++ b/fs/orangefs/orangefs-utils.c
@@ -4,9 +4,9 @@
4 * See COPYING in top-level directory. 4 * See COPYING in top-level directory.
5 */ 5 */
6#include "protocol.h" 6#include "protocol.h"
7#include "pvfs2-kernel.h" 7#include "orangefs-kernel.h"
8#include "pvfs2-dev-proto.h" 8#include "orangefs-dev-proto.h"
9#include "pvfs2-bufmap.h" 9#include "orangefs-bufmap.h"
10 10
11__s32 fsid_of_op(struct orangefs_kernel_op_s *op) 11__s32 fsid_of_op(struct orangefs_kernel_op_s *op)
12{ 12{
diff --git a/fs/orangefs/protocol.h b/fs/orangefs/protocol.h
index 5f10ebc83e76..03bbe7505a35 100644
--- a/fs/orangefs/protocol.h
+++ b/fs/orangefs/protocol.h
@@ -130,7 +130,7 @@ typedef __s64 ORANGEFS_offset;
130/* Bits 6 - 0 are reserved for the actual error code. */ 130/* Bits 6 - 0 are reserved for the actual error code. */
131#define ORANGEFS_ERROR_NUMBER_BITS 0x7f 131#define ORANGEFS_ERROR_NUMBER_BITS 0x7f
132 132
133/* Encoded errno values are decoded by PINT_errno_mapping in pvfs2-utils.c. */ 133/* Encoded errno values decoded by PINT_errno_mapping in orangefs-utils.c. */
134 134
135/* Our own ORANGEFS protocol error codes. */ 135/* Our own ORANGEFS protocol error codes. */
136#define ORANGEFS_ECANCEL (1|ORANGEFS_NON_ERRNO_ERROR_BIT|ORANGEFS_ERROR_BIT) 136#define ORANGEFS_ECANCEL (1|ORANGEFS_NON_ERRNO_ERROR_BIT|ORANGEFS_ERROR_BIT)
@@ -352,7 +352,7 @@ struct dev_mask2_info_s {
352__s32 ORANGEFS_util_translate_mode(int mode); 352__s32 ORANGEFS_util_translate_mode(int mode);
353 353
354/* pvfs2-debug.h ************************************************************/ 354/* pvfs2-debug.h ************************************************************/
355#include "pvfs2-debug.h" 355#include "orangefs-debug.h"
356 356
357/* pvfs2-internal.h *********************************************************/ 357/* pvfs2-internal.h *********************************************************/
358#define llu(x) (unsigned long long)(x) 358#define llu(x) (unsigned long long)(x)
@@ -402,7 +402,7 @@ enum {
402 402
403/* 403/*
404 * describes memory regions to map in the ORANGEFS_DEV_MAP ioctl. 404 * describes memory regions to map in the ORANGEFS_DEV_MAP ioctl.
405 * NOTE: See devpvfs2-req.c for 32 bit compat structure. 405 * NOTE: See devorangefs-req.c for 32 bit compat structure.
406 * Since this structure has a variable-sized layout that is different 406 * Since this structure has a variable-sized layout that is different
407 * on 32 and 64 bit platforms, we need to normalize to a 64 bit layout 407 * on 32 and 64 bit platforms, we need to normalize to a 64 bit layout
408 * on such systems before servicing ioctl calls from user-space binaries 408 * on such systems before servicing ioctl calls from user-space binaries
diff --git a/fs/orangefs/super.c b/fs/orangefs/super.c
index c104de1ae5de..52bc522ea21c 100644
--- a/fs/orangefs/super.c
+++ b/fs/orangefs/super.c
@@ -5,8 +5,8 @@
5 */ 5 */
6 6
7#include "protocol.h" 7#include "protocol.h"
8#include "pvfs2-kernel.h" 8#include "orangefs-kernel.h"
9#include "pvfs2-bufmap.h" 9#include "orangefs-bufmap.h"
10 10
11#include <linux/parser.h> 11#include <linux/parser.h>
12 12
diff --git a/fs/orangefs/symlink.c b/fs/orangefs/symlink.c
index 321f626b190b..1b3ae63463dc 100644
--- a/fs/orangefs/symlink.c
+++ b/fs/orangefs/symlink.c
@@ -5,8 +5,8 @@
5 */ 5 */
6 6
7#include "protocol.h" 7#include "protocol.h"
8#include "pvfs2-kernel.h" 8#include "orangefs-kernel.h"
9#include "pvfs2-bufmap.h" 9#include "orangefs-bufmap.h"
10 10
11static const char *orangefs_follow_link(struct dentry *dentry, void **cookie) 11static const char *orangefs_follow_link(struct dentry *dentry, void **cookie)
12{ 12{
diff --git a/fs/orangefs/waitqueue.c b/fs/orangefs/waitqueue.c
index cfc8dc59c4eb..c731cbdd5fbd 100644
--- a/fs/orangefs/waitqueue.c
+++ b/fs/orangefs/waitqueue.c
@@ -13,8 +13,8 @@
13 */ 13 */
14 14
15#include "protocol.h" 15#include "protocol.h"
16#include "pvfs2-kernel.h" 16#include "orangefs-kernel.h"
17#include "pvfs2-bufmap.h" 17#include "orangefs-bufmap.h"
18 18
19/* 19/*
20 * What we do in this function is to walk the list of operations that are 20 * What we do in this function is to walk the list of operations that are
diff --git a/fs/orangefs/xattr.c b/fs/orangefs/xattr.c
index aeb3c3083591..0e4e01602738 100644
--- a/fs/orangefs/xattr.c
+++ b/fs/orangefs/xattr.c
@@ -9,8 +9,8 @@
9 */ 9 */
10 10
11#include "protocol.h" 11#include "protocol.h"
12#include "pvfs2-kernel.h" 12#include "orangefs-kernel.h"
13#include "pvfs2-bufmap.h" 13#include "orangefs-bufmap.h"
14#include <linux/posix_acl_xattr.h> 14#include <linux/posix_acl_xattr.h>
15#include <linux/xattr.h> 15#include <linux/xattr.h>
16 16