staging: lustre: replace c99 style comments with C89
authorSrikrishan Malik <srikrishanmalik@gmail.com>
Mon, 11 Aug 2014 18:27:32 +0000 (23:57 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 16 Aug 2014 19:23:17 +0000 (12:23 -0700)
Fixes the following checkpatch error:

ERROR: do not use C99 // comments

Signed-off-by: Srikrishan Malik <srikrishanmalik@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/mdc/mdc_lib.c

index 35ce2fdf696c59ffda4b6fd7587f8d0f0f76e770..8b301f4d7e23575adfd4e691856c49ff55e8eb13 100644 (file)
@@ -416,9 +416,9 @@ void mdc_link_pack(struct ptlrpc_request *req, struct md_op_data *op_data)
        LASSERT(rec != NULL);
 
        rec->lk_opcode   = REINT_LINK;
-       rec->lk_fsuid    = op_data->op_fsuid;//current->fsuid;
-       rec->lk_fsgid    = op_data->op_fsgid;//current->fsgid;
-       rec->lk_cap      = op_data->op_cap;//current->cap_effective;
+       rec->lk_fsuid    = op_data->op_fsuid; /* current->fsuid; */
+       rec->lk_fsgid    = op_data->op_fsgid; /* current->fsgid; */
+       rec->lk_cap      = op_data->op_cap;   /* current->cap_effective; */
        rec->lk_suppgid1 = op_data->op_suppgids[0];
        rec->lk_suppgid2 = op_data->op_suppgids[1];
        rec->lk_fid1     = op_data->op_fid1;
This page took 0.024655 seconds and 5 git commands to generate.