Whamcloud - gitweb
LU-7521 ldlm: LDLM_DEBUG() shouldn't be passed \n
[fs/lustre-release.git] / lustre / ptlrpc / llog_server.c
index c8d8d46..596de2e 100644 (file)
@@ -27,7 +27,7 @@
  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
  * Use is subject to license terms.
  *
- * Copyright (c) 2011, 2014, Intel Corporation.
+ * Copyright (c) 2011, 2015, Intel Corporation.
  */
 /*
  * This file is part of Lustre, http://www.lustre.org/
@@ -114,7 +114,6 @@ out_ctxt:
        llog_ctxt_put(ctxt);
        return rc;
 }
-EXPORT_SYMBOL(llog_origin_handle_open);
 
 int llog_origin_handle_destroy(struct ptlrpc_request *req)
 {
@@ -154,7 +153,6 @@ int llog_origin_handle_destroy(struct ptlrpc_request *req)
        llog_ctxt_put(ctxt);
        RETURN(rc);
 }
-EXPORT_SYMBOL(llog_origin_handle_destroy);
 
 int llog_origin_handle_next_block(struct ptlrpc_request *req)
 {
@@ -173,7 +171,7 @@ int llog_origin_handle_next_block(struct ptlrpc_request *req)
                RETURN(err_serious(-EFAULT));
 
        req_capsule_set_size(&req->rq_pill, &RMF_EADATA, RCL_SERVER,
-                            LLOG_CHUNK_SIZE);
+                            LLOG_MIN_CHUNK_SIZE);
        rc = req_capsule_server_pack(&req->rq_pill);
        if (rc)
                RETURN(err_serious(-ENOMEM));
@@ -205,7 +203,8 @@ int llog_origin_handle_next_block(struct ptlrpc_request *req)
        ptr = req_capsule_server_get(&req->rq_pill, &RMF_EADATA);
        rc = llog_next_block(req->rq_svc_thread->t_env, loghandle,
                             &repbody->lgd_saved_index, repbody->lgd_index,
-                            &repbody->lgd_cur_offset, ptr, LLOG_CHUNK_SIZE);
+                            &repbody->lgd_cur_offset, ptr,
+                            LLOG_MIN_CHUNK_SIZE);
        if (rc)
                GOTO(out_close, rc);
        EXIT;
@@ -215,7 +214,6 @@ out_ctxt:
        llog_ctxt_put(ctxt);
        return rc;
 }
-EXPORT_SYMBOL(llog_origin_handle_next_block);
 
 int llog_origin_handle_prev_block(struct ptlrpc_request *req)
 {
@@ -234,7 +232,7 @@ int llog_origin_handle_prev_block(struct ptlrpc_request *req)
                RETURN(err_serious(-EFAULT));
 
        req_capsule_set_size(&req->rq_pill, &RMF_EADATA, RCL_SERVER,
-                            LLOG_CHUNK_SIZE);
+                            LLOG_MIN_CHUNK_SIZE);
        rc = req_capsule_server_pack(&req->rq_pill);
        if (rc)
                RETURN(err_serious(-ENOMEM));
@@ -265,7 +263,7 @@ int llog_origin_handle_prev_block(struct ptlrpc_request *req)
 
        ptr = req_capsule_server_get(&req->rq_pill, &RMF_EADATA);
        rc = llog_prev_block(req->rq_svc_thread->t_env, loghandle,
-                            body->lgd_index, ptr, LLOG_CHUNK_SIZE);
+                            body->lgd_index, ptr, LLOG_MIN_CHUNK_SIZE);
        if (rc)
                GOTO(out_close, rc);
 
@@ -276,7 +274,6 @@ out_ctxt:
        llog_ctxt_put(ctxt);
        return rc;
 }
-EXPORT_SYMBOL(llog_origin_handle_prev_block);
 
 int llog_origin_handle_read_header(struct ptlrpc_request *req)
 {
@@ -331,7 +328,6 @@ out_ctxt:
        llog_ctxt_put(ctxt);
        return rc;
 }
-EXPORT_SYMBOL(llog_origin_handle_read_header);
 
 int llog_origin_handle_close(struct ptlrpc_request *req)
 {
@@ -344,4 +340,3 @@ int llog_origin_handle_close(struct ptlrpc_request *req)
                RETURN(err_serious(-ENOMEM));
        RETURN(0);
 }
-EXPORT_SYMBOL(llog_origin_handle_close);