diff options
Diffstat (limited to 'fs/dlm/dlm_internal.h')
-rw-r--r-- | fs/dlm/dlm_internal.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/dlm/dlm_internal.h b/fs/dlm/dlm_internal.h index a53c237f310c..d30ea8b433a2 100644 --- a/fs/dlm/dlm_internal.h +++ b/fs/dlm/dlm_internal.h | |||
@@ -253,7 +253,10 @@ struct dlm_lkb { | |||
253 | struct dlm_lksb *lkb_lksb; /* caller's status block */ | 253 | struct dlm_lksb *lkb_lksb; /* caller's status block */ |
254 | void (*lkb_astfn) (void *astparam); | 254 | void (*lkb_astfn) (void *astparam); |
255 | void (*lkb_bastfn) (void *astparam, int mode); | 255 | void (*lkb_bastfn) (void *astparam, int mode); |
256 | void *lkb_astparam; /* caller's ast arg */ | 256 | union { |
257 | void *lkb_astparam; /* caller's ast arg */ | ||
258 | struct dlm_user_args *lkb_ua; | ||
259 | }; | ||
257 | }; | 260 | }; |
258 | 261 | ||
259 | 262 | ||