Commit 74d4ec11 authored by Shraddha Barke's avatar Shraddha Barke Committed by Greg Kroah-Hartman

Staging: lustre: osc: Declare local functions as static

Declare osc_real_create, osc_create and osc_cleanup as static
since they are used only in this particular file. Also remove the
corresponding declarations from header file.
Signed-off-by: default avatarShraddha Barke <shraddha.6596@gmail.com>
Reviewed-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 66a9c9a8
...@@ -89,11 +89,6 @@ struct osc_cache_waiter { ...@@ -89,11 +89,6 @@ struct osc_cache_waiter {
int ocw_rc; int ocw_rc;
}; };
int osc_create(const struct lu_env *env, struct obd_export *exp,
struct obdo *oa, struct lov_stripe_md **ea,
struct obd_trans_info *oti);
int osc_real_create(struct obd_export *exp, struct obdo *oa,
struct lov_stripe_md **ea, struct obd_trans_info *oti);
void osc_wake_cache_waiters(struct client_obd *cli); void osc_wake_cache_waiters(struct client_obd *cli);
int osc_shrink_grant_to_target(struct client_obd *cli, __u64 target_bytes); int osc_shrink_grant_to_target(struct client_obd *cli, __u64 target_bytes);
void osc_update_next_shrink(struct client_obd *cli); void osc_update_next_shrink(struct client_obd *cli);
...@@ -137,7 +132,6 @@ int osc_lru_shrink(struct client_obd *cli, int target); ...@@ -137,7 +132,6 @@ int osc_lru_shrink(struct client_obd *cli, int target);
extern spinlock_t osc_ast_guard; extern spinlock_t osc_ast_guard;
int osc_cleanup(struct obd_device *obd);
int osc_setup(struct obd_device *obd, struct lustre_cfg *lcfg); int osc_setup(struct obd_device *obd, struct lustre_cfg *lcfg);
int lproc_osc_attach_seqstat(struct obd_device *dev); int lproc_osc_attach_seqstat(struct obd_device *dev);
......
...@@ -104,7 +104,7 @@ struct osc_enqueue_args { ...@@ -104,7 +104,7 @@ struct osc_enqueue_args {
static void osc_release_ppga(struct brw_page **ppga, u32 count); static void osc_release_ppga(struct brw_page **ppga, u32 count);
static int brw_interpret(const struct lu_env *env, static int brw_interpret(const struct lu_env *env,
struct ptlrpc_request *req, void *data, int rc); struct ptlrpc_request *req, void *data, int rc);
int osc_cleanup(struct obd_device *obd); static int osc_cleanup(struct obd_device *obd);
/* Pack OSC object metadata for disk storage (LE byte order). */ /* Pack OSC object metadata for disk storage (LE byte order). */
static int osc_packmd(struct obd_export *exp, struct lov_mds_md **lmmp, static int osc_packmd(struct obd_export *exp, struct lov_mds_md **lmmp,
...@@ -431,8 +431,9 @@ static int osc_setattr_async(struct obd_export *exp, struct obd_info *oinfo, ...@@ -431,8 +431,9 @@ static int osc_setattr_async(struct obd_export *exp, struct obd_info *oinfo,
oinfo->oi_cb_up, oinfo, rqset); oinfo->oi_cb_up, oinfo, rqset);
} }
int osc_real_create(struct obd_export *exp, struct obdo *oa, static int osc_real_create(struct obd_export *exp, struct obdo *oa,
struct lov_stripe_md **ea, struct obd_trans_info *oti) struct lov_stripe_md **ea,
struct obd_trans_info *oti)
{ {
struct ptlrpc_request *req; struct ptlrpc_request *req;
struct ost_body *body; struct ost_body *body;
...@@ -689,7 +690,7 @@ static int osc_can_send_destroy(struct client_obd *cli) ...@@ -689,7 +690,7 @@ static int osc_can_send_destroy(struct client_obd *cli)
return 0; return 0;
} }
int osc_create(const struct lu_env *env, struct obd_export *exp, static int osc_create(const struct lu_env *env, struct obd_export *exp,
struct obdo *oa, struct lov_stripe_md **ea, struct obdo *oa, struct lov_stripe_md **ea,
struct obd_trans_info *oti) struct obd_trans_info *oti)
{ {
......
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