staging: lustre: llite: debugging for ll_file_open LASSERT
authorAndreas Dilger <[email protected]>
Thu, 28 Apr 2016 01:37:17 +0000 (21:37 -0400)
committerGreg Kroah-Hartman <[email protected]>
Fri, 29 Apr 2016 04:53:18 +0000 (21:53 -0700)
Add debugging for LASSERTF(it_disposition(it, DISP_ENQ_OPEN_REF)
in ll_file_open(), since this is a rarely hit failure under racer,
and it would be useful to get more information if this is hit
again.  Print the full intent disposition, as well as the status,
in case Oleg's earlier comment about bailing out on any error is
actually the case here.

Signed-off-by: Andreas Dilger <[email protected]>
Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-1993
Reviewed-on: http://review.whamcloud.com/6250
Reviewed-by: Bob Glossman <[email protected]>
Reviewed-by: John L. Hammond <[email protected]>
Reviewed-by: Oleg Drokin <[email protected]>
Signed-off-by: James Simmons <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
drivers/staging/lustre/lustre/llite/file.c

index a8de10e0a871be2edc7fe8de08ae87a12db89c11..f47f2acaf90c33e5b1c960452d031f97b7c82ecb 100644 (file)
@@ -679,7 +679,9 @@ restart:
                if (rc)
                        goto out_och_free;
 
-               LASSERT(it_disposition(it, DISP_ENQ_OPEN_REF));
+               LASSERTF(it_disposition(it, DISP_ENQ_OPEN_REF),
+                        "inode %p: disposition %x, status %d\n", inode,
+                        it_disposition(it, ~0), it->d.lustre.it_status);
 
                rc = ll_local_open(file, it, fd, *och_p);
                if (rc)