Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 575e9461 authored by Mike Marshall's avatar Mike Marshall
Browse files

Orangefs: change pvfs2 filenames to orangefs



Also changed references within source files that referred to
header files whose names had changed.

Signed-off-by: default avatarMike Marshall <hubcap@omnibond.com>
parent 8bb8aefd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
VERSION = 4
PATCHLEVEL = 4
SUBLEVEL = 0
EXTRAVERSION = -rc1
EXTRAVERSION = -rc1-o
NAME = Blurry Fish Butt

# *DOCUMENTATION*
+4 −4
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@

obj-$(CONFIG_ORANGEFS_FS) += orangefs.o

orangefs-objs := acl.o file.o pvfs2-cache.o pvfs2-utils.o xattr.o dcache.o \
		 inode.o pvfs2-sysfs.o pvfs2-mod.o super.o devpvfs2-req.o \
		 namei.o symlink.o dir.o pvfs2-bufmap.o \
		 pvfs2-debugfs.o waitqueue.o
orangefs-objs := acl.o file.o orangefs-cache.o orangefs-utils.o xattr.o \
		 dcache.o inode.o orangefs-sysfs.o orangefs-mod.o super.o \
		 devorangefs-req.o namei.o symlink.o dir.o orangefs-bufmap.o \
		 orangefs-debugfs.o waitqueue.o
+2 −2
Original line number Diff line number Diff line
@@ -5,8 +5,8 @@
 */

#include "protocol.h"
#include "pvfs2-kernel.h"
#include "pvfs2-bufmap.h"
#include "orangefs-kernel.h"
#include "orangefs-bufmap.h"
#include <linux/posix_acl_xattr.h>
#include <linux/fs_struct.h>

+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
 */

#include "protocol.h"
#include "pvfs2-kernel.h"
#include "orangefs-kernel.h"

/* Returns 1 if dentry can still be trusted, else 0. */
static int orangefs_revalidate_lookup(struct dentry *dentry)
+3 −3
Original line number Diff line number Diff line
@@ -8,9 +8,9 @@
 */

#include "protocol.h"
#include "pvfs2-kernel.h"
#include "pvfs2-dev-proto.h"
#include "pvfs2-bufmap.h"
#include "orangefs-kernel.h"
#include "orangefs-dev-proto.h"
#include "orangefs-bufmap.h"

#include <linux/debugfs.h>
#include <linux/slab.h>
Loading