From f6206d87b78dfd6382d9a74d137d5627070bdbbe Mon Sep 17 00:00:00 2001 From: adilger Date: Mon, 22 Apr 2002 18:26:50 +0000 Subject: [PATCH] Cosmetic cleanup. --- lustre/osc/osc_request.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/osc/osc_request.c b/lustre/osc/osc_request.c index ac951c3..aca92f1 100644 --- a/lustre/osc/osc_request.c +++ b/lustre/osc/osc_request.c @@ -359,7 +359,7 @@ int osc_sendpage(struct obd_conn *conn, struct ptlrpc_request *req, bulk = ptlrpc_prep_bulk(connection); if (bulk == NULL) - return -ENOMEM; + RETURN(-ENOMEM); bulk->b_buf = (void *)(unsigned long)src->addr; bulk->b_buflen = src->len; @@ -369,7 +369,7 @@ int osc_sendpage(struct obd_conn *conn, struct ptlrpc_request *req, CERROR("send_bulk failed: %d\n", rc); ptlrpc_free_bulk(bulk); LBUG(); - return rc; + RETURN(rc); } wait_event_interruptible(bulk->b_waitq, ptlrpc_check_bulk_sent(bulk)); -- 1.8.3.1