Commit 7cf1054b authored by Hatice ERTÜRK's avatar Hatice ERTÜRK Committed by Greg Kroah-Hartman

Staging: lustre: lustre: osc: Insert missing space before '|'

Insert missing space before '|' to improve readability.

This Error found with checkpatch.pl
Signed-off-by: default avatarHatice ERTURK <haticeerturk27@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 17fc7f9b
...@@ -1165,8 +1165,8 @@ static int check_write_rcs(struct ptlrpc_request *req, ...@@ -1165,8 +1165,8 @@ static int check_write_rcs(struct ptlrpc_request *req,
static inline int can_merge_pages(struct brw_page *p1, struct brw_page *p2) static inline int can_merge_pages(struct brw_page *p1, struct brw_page *p2)
{ {
if (p1->flag != p2->flag) { if (p1->flag != p2->flag) {
unsigned mask = ~(OBD_BRW_FROM_GRANT| OBD_BRW_NOCACHE| unsigned mask = ~(OBD_BRW_FROM_GRANT | OBD_BRW_NOCACHE |
OBD_BRW_SYNC|OBD_BRW_ASYNC|OBD_BRW_NOQUOTA); OBD_BRW_SYNC | OBD_BRW_ASYNC|OBD_BRW_NOQUOTA);
/* warn if we try to combine flags that we don't know to be /* warn if we try to combine flags that we don't know to be
* safe to combine */ * safe to combine */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment