Lines Matching refs:l
56 #define ceph_file_layout_su(l) ((__s32)le32_to_cpu((l).fl_stripe_unit)) argument
57 #define ceph_file_layout_stripe_count(l) \ argument
58 ((__s32)le32_to_cpu((l).fl_stripe_count))
59 #define ceph_file_layout_object_size(l) ((__s32)le32_to_cpu((l).fl_object_size)) argument
60 #define ceph_file_layout_cas_hash(l) ((__s32)le32_to_cpu((l).fl_cas_hash)) argument
61 #define ceph_file_layout_object_su(l) \ argument
62 ((__s32)le32_to_cpu((l).fl_object_stripe_unit))
63 #define ceph_file_layout_pg_pool(l) \ argument
64 ((__s32)le32_to_cpu((l).fl_pg_pool))
66 static inline unsigned ceph_file_layout_stripe_width(struct ceph_file_layout *l) in ceph_file_layout_stripe_width() argument
68 return le32_to_cpu(l->fl_stripe_unit) * in ceph_file_layout_stripe_width()
69 le32_to_cpu(l->fl_stripe_count); in ceph_file_layout_stripe_width()
73 static inline unsigned ceph_file_layout_period(struct ceph_file_layout *l) in ceph_file_layout_period() argument
75 return le32_to_cpu(l->fl_object_size) * in ceph_file_layout_period()
76 le32_to_cpu(l->fl_stripe_count); in ceph_file_layout_period()