Orangefs: kernel client part 1
OrangeFS (formerly PVFS) is an lgpl licensed userspace networked parallel
file system. OrangeFS can be accessed through included system utilities,
user integration libraries, MPI-IO and can be used by the Hadoop
ecosystem as an alternative to the HDFS filesystem. OrangeFS is used
widely for parallel science, data analytics and engineering applications.
While applications often don't require Orangefs to be mounted into
the VFS, users do like to be able to access their files in the normal way.
The Orangefs kernel client allows Orangefs filesystems to be mounted as
a VFS. The kernel client communicates with a userspace daemon which in
turn communicates with the Orangefs server daemons that implement the
filesystem. The server daemons (there's almost always more than one)
need not be running on the same host as the kernel client.
Orangefs filesystems can also be mounted with FUSE, and we
ship code and instructions to facilitate that, but most of our users
report preferring to use our kernel module instead. Further, as an example
of a problem we can't solve with fuse, we have in the works a
not-yet-ready-for-prime-time version of a file_operations lock function
that accounts for the server daemons being distributed across more
than one running kernel.
Many people and organizations, including Clemson University,
Argonne National Laboratories and Acxiom Corporation have
helped to create what has become Orangefs over more than twenty
years. Some of the more recent contributors to the kernel client
include:
Mike Marshall
Christoph Hellwig
Randy Martin
Becky Ligon
Walt Ligon
Michael Moore
Rob Ross
Phil Carnes
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
2015-07-17 16:38:11 +02:00
|
|
|
/*
|
|
|
|
* (C) 2001 Clemson University and The University of Chicago
|
|
|
|
*
|
|
|
|
* See COPYING in top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* This file just defines debugging masks to be used with the gossip
|
2015-11-24 21:12:14 +01:00
|
|
|
* logging utility. All debugging masks for ORANGEFS are kept here to make
|
Orangefs: kernel client part 1
OrangeFS (formerly PVFS) is an lgpl licensed userspace networked parallel
file system. OrangeFS can be accessed through included system utilities,
user integration libraries, MPI-IO and can be used by the Hadoop
ecosystem as an alternative to the HDFS filesystem. OrangeFS is used
widely for parallel science, data analytics and engineering applications.
While applications often don't require Orangefs to be mounted into
the VFS, users do like to be able to access their files in the normal way.
The Orangefs kernel client allows Orangefs filesystems to be mounted as
a VFS. The kernel client communicates with a userspace daemon which in
turn communicates with the Orangefs server daemons that implement the
filesystem. The server daemons (there's almost always more than one)
need not be running on the same host as the kernel client.
Orangefs filesystems can also be mounted with FUSE, and we
ship code and instructions to facilitate that, but most of our users
report preferring to use our kernel module instead. Further, as an example
of a problem we can't solve with fuse, we have in the works a
not-yet-ready-for-prime-time version of a file_operations lock function
that accounts for the server daemons being distributed across more
than one running kernel.
Many people and organizations, including Clemson University,
Argonne National Laboratories and Acxiom Corporation have
helped to create what has become Orangefs over more than twenty
years. Some of the more recent contributors to the kernel client
include:
Mike Marshall
Christoph Hellwig
Randy Martin
Becky Ligon
Walt Ligon
Michael Moore
Rob Ross
Phil Carnes
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
2015-07-17 16:38:11 +02:00
|
|
|
* sure we don't have collisions.
|
|
|
|
*/
|
|
|
|
|
2015-11-24 21:12:14 +01:00
|
|
|
#ifndef __ORANGEFS_DEBUG_H
|
|
|
|
#define __ORANGEFS_DEBUG_H
|
Orangefs: kernel client part 1
OrangeFS (formerly PVFS) is an lgpl licensed userspace networked parallel
file system. OrangeFS can be accessed through included system utilities,
user integration libraries, MPI-IO and can be used by the Hadoop
ecosystem as an alternative to the HDFS filesystem. OrangeFS is used
widely for parallel science, data analytics and engineering applications.
While applications often don't require Orangefs to be mounted into
the VFS, users do like to be able to access their files in the normal way.
The Orangefs kernel client allows Orangefs filesystems to be mounted as
a VFS. The kernel client communicates with a userspace daemon which in
turn communicates with the Orangefs server daemons that implement the
filesystem. The server daemons (there's almost always more than one)
need not be running on the same host as the kernel client.
Orangefs filesystems can also be mounted with FUSE, and we
ship code and instructions to facilitate that, but most of our users
report preferring to use our kernel module instead. Further, as an example
of a problem we can't solve with fuse, we have in the works a
not-yet-ready-for-prime-time version of a file_operations lock function
that accounts for the server daemons being distributed across more
than one running kernel.
Many people and organizations, including Clemson University,
Argonne National Laboratories and Acxiom Corporation have
helped to create what has become Orangefs over more than twenty
years. Some of the more recent contributors to the kernel client
include:
Mike Marshall
Christoph Hellwig
Randy Martin
Becky Ligon
Walt Ligon
Michael Moore
Rob Ross
Phil Carnes
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
2015-07-17 16:38:11 +02:00
|
|
|
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
#include <linux/types.h>
|
|
|
|
#else
|
|
|
|
#include <stdint.h>
|
|
|
|
#endif
|
|
|
|
|
2015-12-11 17:00:12 +01:00
|
|
|
#define GOSSIP_NO_DEBUG (__u64)0
|
Orangefs: kernel client part 1
OrangeFS (formerly PVFS) is an lgpl licensed userspace networked parallel
file system. OrangeFS can be accessed through included system utilities,
user integration libraries, MPI-IO and can be used by the Hadoop
ecosystem as an alternative to the HDFS filesystem. OrangeFS is used
widely for parallel science, data analytics and engineering applications.
While applications often don't require Orangefs to be mounted into
the VFS, users do like to be able to access their files in the normal way.
The Orangefs kernel client allows Orangefs filesystems to be mounted as
a VFS. The kernel client communicates with a userspace daemon which in
turn communicates with the Orangefs server daemons that implement the
filesystem. The server daemons (there's almost always more than one)
need not be running on the same host as the kernel client.
Orangefs filesystems can also be mounted with FUSE, and we
ship code and instructions to facilitate that, but most of our users
report preferring to use our kernel module instead. Further, as an example
of a problem we can't solve with fuse, we have in the works a
not-yet-ready-for-prime-time version of a file_operations lock function
that accounts for the server daemons being distributed across more
than one running kernel.
Many people and organizations, including Clemson University,
Argonne National Laboratories and Acxiom Corporation have
helped to create what has become Orangefs over more than twenty
years. Some of the more recent contributors to the kernel client
include:
Mike Marshall
Christoph Hellwig
Randy Martin
Becky Ligon
Walt Ligon
Michael Moore
Rob Ross
Phil Carnes
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
2015-07-17 16:38:11 +02:00
|
|
|
|
|
|
|
#define GOSSIP_SUPER_DEBUG ((__u64)1 << 0)
|
|
|
|
#define GOSSIP_INODE_DEBUG ((__u64)1 << 1)
|
|
|
|
#define GOSSIP_FILE_DEBUG ((__u64)1 << 2)
|
|
|
|
#define GOSSIP_DIR_DEBUG ((__u64)1 << 3)
|
|
|
|
#define GOSSIP_UTILS_DEBUG ((__u64)1 << 4)
|
|
|
|
#define GOSSIP_WAIT_DEBUG ((__u64)1 << 5)
|
|
|
|
#define GOSSIP_ACL_DEBUG ((__u64)1 << 6)
|
|
|
|
#define GOSSIP_DCACHE_DEBUG ((__u64)1 << 7)
|
|
|
|
#define GOSSIP_DEV_DEBUG ((__u64)1 << 8)
|
|
|
|
#define GOSSIP_NAME_DEBUG ((__u64)1 << 9)
|
|
|
|
#define GOSSIP_BUFMAP_DEBUG ((__u64)1 << 10)
|
|
|
|
#define GOSSIP_CACHE_DEBUG ((__u64)1 << 11)
|
|
|
|
#define GOSSIP_DEBUGFS_DEBUG ((__u64)1 << 12)
|
|
|
|
#define GOSSIP_XATTR_DEBUG ((__u64)1 << 13)
|
|
|
|
#define GOSSIP_INIT_DEBUG ((__u64)1 << 14)
|
|
|
|
#define GOSSIP_SYSFS_DEBUG ((__u64)1 << 15)
|
|
|
|
|
|
|
|
#define GOSSIP_MAX_NR 16
|
|
|
|
#define GOSSIP_MAX_DEBUG (((__u64)1 << GOSSIP_MAX_NR) - 1)
|
|
|
|
|
|
|
|
/*function prototypes*/
|
2015-11-24 21:12:14 +01:00
|
|
|
__u64 ORANGEFS_kmod_eventlog_to_mask(const char *event_logging);
|
|
|
|
__u64 ORANGEFS_debug_eventlog_to_mask(const char *event_logging);
|
|
|
|
char *ORANGEFS_debug_mask_to_eventlog(__u64 mask);
|
|
|
|
char *ORANGEFS_kmod_mask_to_eventlog(__u64 mask);
|
Orangefs: kernel client part 1
OrangeFS (formerly PVFS) is an lgpl licensed userspace networked parallel
file system. OrangeFS can be accessed through included system utilities,
user integration libraries, MPI-IO and can be used by the Hadoop
ecosystem as an alternative to the HDFS filesystem. OrangeFS is used
widely for parallel science, data analytics and engineering applications.
While applications often don't require Orangefs to be mounted into
the VFS, users do like to be able to access their files in the normal way.
The Orangefs kernel client allows Orangefs filesystems to be mounted as
a VFS. The kernel client communicates with a userspace daemon which in
turn communicates with the Orangefs server daemons that implement the
filesystem. The server daemons (there's almost always more than one)
need not be running on the same host as the kernel client.
Orangefs filesystems can also be mounted with FUSE, and we
ship code and instructions to facilitate that, but most of our users
report preferring to use our kernel module instead. Further, as an example
of a problem we can't solve with fuse, we have in the works a
not-yet-ready-for-prime-time version of a file_operations lock function
that accounts for the server daemons being distributed across more
than one running kernel.
Many people and organizations, including Clemson University,
Argonne National Laboratories and Acxiom Corporation have
helped to create what has become Orangefs over more than twenty
years. Some of the more recent contributors to the kernel client
include:
Mike Marshall
Christoph Hellwig
Randy Martin
Becky Ligon
Walt Ligon
Michael Moore
Rob Ross
Phil Carnes
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
2015-07-17 16:38:11 +02:00
|
|
|
|
|
|
|
/* a private internal type */
|
|
|
|
struct __keyword_mask_s {
|
|
|
|
const char *keyword;
|
|
|
|
__u64 mask_val;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Map all kmod keywords to kmod debug masks here. Keep this
|
|
|
|
* structure "packed":
|
|
|
|
*
|
|
|
|
* "all" is always last...
|
|
|
|
*
|
|
|
|
* keyword mask_val index
|
|
|
|
* foo 1 0
|
|
|
|
* bar 2 1
|
|
|
|
* baz 4 2
|
|
|
|
* qux 8 3
|
|
|
|
* . . .
|
|
|
|
*/
|
|
|
|
static struct __keyword_mask_s s_kmod_keyword_mask_map[] = {
|
|
|
|
{"super", GOSSIP_SUPER_DEBUG},
|
|
|
|
{"inode", GOSSIP_INODE_DEBUG},
|
|
|
|
{"file", GOSSIP_FILE_DEBUG},
|
|
|
|
{"dir", GOSSIP_DIR_DEBUG},
|
|
|
|
{"utils", GOSSIP_UTILS_DEBUG},
|
|
|
|
{"wait", GOSSIP_WAIT_DEBUG},
|
|
|
|
{"acl", GOSSIP_ACL_DEBUG},
|
|
|
|
{"dcache", GOSSIP_DCACHE_DEBUG},
|
|
|
|
{"dev", GOSSIP_DEV_DEBUG},
|
|
|
|
{"name", GOSSIP_NAME_DEBUG},
|
|
|
|
{"bufmap", GOSSIP_BUFMAP_DEBUG},
|
|
|
|
{"cache", GOSSIP_CACHE_DEBUG},
|
|
|
|
{"debugfs", GOSSIP_DEBUGFS_DEBUG},
|
|
|
|
{"xattr", GOSSIP_XATTR_DEBUG},
|
|
|
|
{"init", GOSSIP_INIT_DEBUG},
|
|
|
|
{"sysfs", GOSSIP_SYSFS_DEBUG},
|
|
|
|
{"none", GOSSIP_NO_DEBUG},
|
|
|
|
{"all", GOSSIP_MAX_DEBUG}
|
|
|
|
};
|
|
|
|
|
|
|
|
static const int num_kmod_keyword_mask_map = (int)
|
|
|
|
(sizeof(s_kmod_keyword_mask_map) / sizeof(struct __keyword_mask_s));
|
|
|
|
|
2015-11-24 21:12:14 +01:00
|
|
|
#endif /* __ORANGEFS_DEBUG_H */
|