From: Andras Elso Date: Tue, 26 Feb 2013 23:14:49 +0000 (+0100) Subject: libcephfs: fix default parameters document for ceph_open_layout X-Git-Tag: v0.59~94^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c5d78f4a97f9bfb6dd5d98750e1725308672c811;p=ceph.git libcephfs: fix default parameters document for ceph_open_layout Signed-off-by: Andras Elso --- diff --git a/src/include/cephfs/libcephfs.h b/src/include/cephfs/libcephfs.h index 7b04cce42709..adcdb39e6007 100644 --- a/src/include/cephfs/libcephfs.h +++ b/src/include/cephfs/libcephfs.h @@ -610,9 +610,9 @@ int ceph_open(struct ceph_mount_info *cmount, const char *path, int flags, mode_ * @param flags a set of option masks that control how the file is created/opened. * @param mode the permissions to place on the file if the file does not exist and O_CREAT * is specified in the flags. - * @param stripe_unit the stripe unit size (option, -1 for default) - * @param stripe_count the stripe count (optional, -1 for default) - * @param object_size the object size (optional, -1 for default) + * @param stripe_unit the stripe unit size (option, 0 for default) + * @param stripe_count the stripe count (optional, 0 for default) + * @param object_size the object size (optional, 0 for default) * @param data_pool name of target data pool name (optional, NULL or empty string for default) * @returns a non-negative file descriptor number on success or a negative error code on failure. */