lum                22 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c     struct lov_user_md *lum = NULL;
lum                57 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c     lum = (struct lov_user_md *)ADIOI_Calloc(1,lumlen);
lum                96 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	    lum->lmm_magic = LOV_USER_MAGIC;
lum                97 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	    lum->lmm_pattern = 0;
lum               102 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	            lum->lmm_stripe_size = UINT_MAX;
lum               104 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	            lum->lmm_stripe_size = str_unit;
lum               107 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	            lum->lmm_stripe_count = USHRT_MAX;
lum               109 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	            lum->lmm_stripe_count = str_factor;
lum               112 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	             lum->lmm_stripe_offset = USHRT_MAX;
lum               114 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	            lum->lmm_stripe_offset = start_iodev;
lum               115 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	    err = ioctl(fd->fd_sys, LL_IOC_LOV_SETSTRIPE, lum);
lum               128 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c     memset(lum, 0, lumlen);
lum               129 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c     lum->lmm_magic = LOV_USER_MAGIC;
lum               130 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c     err = ioctl(fd->fd_sys, LL_IOC_LOV_GETSTRIPE, (void *)lum);
lum               133 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	fd->hints->striping_unit = lum->lmm_stripe_size;
lum               134 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	sprintf(value, "%d", lum->lmm_stripe_size);
lum               137 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	fd->hints->striping_factor = lum->lmm_stripe_count;
lum               138 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	sprintf(value, "%d", lum->lmm_stripe_count);
lum               141 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	fd->hints->fs_hints.lustre.start_iodevice = lum->lmm_stripe_offset;
lum               142 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	sprintf(value, "%d", lum->lmm_stripe_offset);
lum               162 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c     ADIOI_Free(lum);