Commit 35d6c026 authored by Oleg Drokin's avatar Oleg Drokin Committed by Greg Kroah-Hartman

staging/lustre/obdecho: Fix style vs open parenthesis alignment

This mostly fixes checkpatch complaints about
"Alignment should match open parenthesis"
Signed-off-by: default avatarOleg Drokin <green@linuxhacker.ru>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 24e29099
...@@ -220,7 +220,7 @@ static struct lu_kmem_descr echo_caches[] = { ...@@ -220,7 +220,7 @@ static struct lu_kmem_descr echo_caches[] = {
* @{ * @{
*/ */
static struct page *echo_page_vmpage(const struct lu_env *env, static struct page *echo_page_vmpage(const struct lu_env *env,
const struct cl_page_slice *slice) const struct cl_page_slice *slice)
{ {
return cl2echo_page(slice)->ep_vmpage; return cl2echo_page(slice)->ep_vmpage;
} }
...@@ -367,7 +367,7 @@ static struct cl_lock_operations echo_lock_ops = { ...@@ -367,7 +367,7 @@ static struct cl_lock_operations echo_lock_ops = {
* @{ * @{
*/ */
static int echo_page_init(const struct lu_env *env, struct cl_object *obj, static int echo_page_init(const struct lu_env *env, struct cl_object *obj,
struct cl_page *page, struct page *vmpage) struct cl_page *page, struct page *vmpage)
{ {
struct echo_page *ep = cl_object_page_slice(obj, page); struct echo_page *ep = cl_object_page_slice(obj, page);
struct echo_object *eco = cl2echo_obj(obj); struct echo_object *eco = cl2echo_obj(obj);
...@@ -529,7 +529,7 @@ static void echo_object_free(const struct lu_env *env, struct lu_object *obj) ...@@ -529,7 +529,7 @@ static void echo_object_free(const struct lu_env *env, struct lu_object *obj)
} }
static int echo_object_print(const struct lu_env *env, void *cookie, static int echo_object_print(const struct lu_env *env, void *cookie,
lu_printer_t p, const struct lu_object *o) lu_printer_t p, const struct lu_object *o)
{ {
struct echo_object *obj = cl2echo_obj(lu2cl(o)); struct echo_object *obj = cl2echo_obj(lu2cl(o));
...@@ -621,7 +621,7 @@ static void echo_site_fini(const struct lu_env *env, struct echo_device *ed) ...@@ -621,7 +621,7 @@ static void echo_site_fini(const struct lu_env *env, struct echo_device *ed)
} }
static void *echo_thread_key_init(const struct lu_context *ctx, static void *echo_thread_key_init(const struct lu_context *ctx,
struct lu_context_key *key) struct lu_context_key *key)
{ {
struct echo_thread_info *info; struct echo_thread_info *info;
...@@ -632,7 +632,7 @@ static void *echo_thread_key_init(const struct lu_context *ctx, ...@@ -632,7 +632,7 @@ static void *echo_thread_key_init(const struct lu_context *ctx,
} }
static void echo_thread_key_fini(const struct lu_context *ctx, static void echo_thread_key_fini(const struct lu_context *ctx,
struct lu_context_key *key, void *data) struct lu_context_key *key, void *data)
{ {
struct echo_thread_info *info = data; struct echo_thread_info *info = data;
...@@ -640,7 +640,7 @@ static void echo_thread_key_fini(const struct lu_context *ctx, ...@@ -640,7 +640,7 @@ static void echo_thread_key_fini(const struct lu_context *ctx,
} }
static void echo_thread_key_exit(const struct lu_context *ctx, static void echo_thread_key_exit(const struct lu_context *ctx,
struct lu_context_key *key, void *data) struct lu_context_key *key, void *data)
{ {
} }
...@@ -652,7 +652,7 @@ static struct lu_context_key echo_thread_key = { ...@@ -652,7 +652,7 @@ static struct lu_context_key echo_thread_key = {
}; };
static void *echo_session_key_init(const struct lu_context *ctx, static void *echo_session_key_init(const struct lu_context *ctx,
struct lu_context_key *key) struct lu_context_key *key)
{ {
struct echo_session_info *session; struct echo_session_info *session;
...@@ -663,7 +663,7 @@ static void *echo_session_key_init(const struct lu_context *ctx, ...@@ -663,7 +663,7 @@ static void *echo_session_key_init(const struct lu_context *ctx,
} }
static void echo_session_key_fini(const struct lu_context *ctx, static void echo_session_key_fini(const struct lu_context *ctx,
struct lu_context_key *key, void *data) struct lu_context_key *key, void *data)
{ {
struct echo_session_info *session = data; struct echo_session_info *session = data;
...@@ -671,7 +671,7 @@ static void echo_session_key_fini(const struct lu_context *ctx, ...@@ -671,7 +671,7 @@ static void echo_session_key_fini(const struct lu_context *ctx,
} }
static void echo_session_key_exit(const struct lu_context *ctx, static void echo_session_key_exit(const struct lu_context *ctx,
struct lu_context_key *key, void *data) struct lu_context_key *key, void *data)
{ {
} }
...@@ -720,7 +720,7 @@ static struct lu_device *echo_device_alloc(const struct lu_env *env, ...@@ -720,7 +720,7 @@ static struct lu_device *echo_device_alloc(const struct lu_env *env,
tgt = class_name2obd(lustre_cfg_string(cfg, 1)); tgt = class_name2obd(lustre_cfg_string(cfg, 1));
if (!tgt) { if (!tgt) {
CERROR("Can not find tgt device %s\n", CERROR("Can not find tgt device %s\n",
lustre_cfg_string(cfg, 1)); lustre_cfg_string(cfg, 1));
rc = -ENODEV; rc = -ENODEV;
goto out; goto out;
} }
...@@ -796,7 +796,7 @@ static struct lu_device *echo_device_alloc(const struct lu_env *env, ...@@ -796,7 +796,7 @@ static struct lu_device *echo_device_alloc(const struct lu_env *env,
} }
static int echo_device_init(const struct lu_env *env, struct lu_device *d, static int echo_device_init(const struct lu_env *env, struct lu_device *d,
const char *name, struct lu_device *next) const char *name, struct lu_device *next)
{ {
LBUG(); LBUG();
return 0; return 0;
......
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