Whamcloud - gitweb
b=19856
[fs/lustre-release.git] / lustre / include / lustre / lustre_user.h
index d7f65e3..87643f8 100644 (file)
@@ -480,12 +480,14 @@ struct hsm_action_list {
 } __attribute__((packed));
 
 /* Return pointer to first hai in action list */
-static inline struct hsm_action_item * hai_zero(struct hsm_action_list *hal) {
+static __inline__ struct hsm_action_item * hai_zero(struct hsm_action_list *hal)
+{
         return (struct hsm_action_item *)(hal->hal_fsname +
                                           size_round(strlen(hal->hal_fsname)));
 }
 /* Return pointer to next hai */
-static inline struct hsm_action_item * hai_next(struct hsm_action_item *hai) {
+static __inline__ struct hsm_action_item * hai_next(struct hsm_action_item *hai)
+{
         return (struct hsm_action_item *)((char *)hai +
                                           size_round(hai->hai_len));
 }