Skip to content
Permalink
1139b72d5e
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
33 lines (26 sloc) 705 Bytes
/*
* (C) 2002 Clemson University.
*
* See COPYING in top-level directory.
*/
#ifndef __PVFS_DIST_SIMPLE_STRIPE_H
#define __PVFS_DIST_SIMPLE_STRIPE_H
#include "pvfs2-types.h"
/* Identifier to use when looking up this distribution */
#define PVFS_DIST_SIMPLE_STRIPE_NAME "simple_stripe"
#define PVFS_DIST_SIMPLE_STRIPE_NAME_SIZE 14
#define PVFS_DIST_SIMPLE_STRIPE_DEFAULT_STRIP_SIZE 65536
/* simple stripe distribution parameters */
struct PVFS_simple_stripe_params_s {
PVFS_size strip_size;
};
typedef struct PVFS_simple_stripe_params_s PVFS_simple_stripe_params;
#endif
/*
* Local variables:
* c-indent-level: 4
* c-basic-offset: 4
* End:
*
* vim: ts=8 sts=4 sw=4 expandtab
*/