Commit 245cbcff authored by Jonathan Sid-Otmane's avatar Jonathan Sid-Otmane Committed by Greg Kroah-Hartman

Staging: lustre: vvp_dev.c: fix spaces issues

This fixes the space issues in the file vvp_dev.c
Signed-off-by: default avatarJonathan Sid-Otmane <Jonathan.SidOtmane@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0b5cf515
...@@ -63,12 +63,12 @@ static struct lu_kmem_descr vvp_caches[] = { ...@@ -63,12 +63,12 @@ static struct lu_kmem_descr vvp_caches[] = {
{ {
.ckd_cache = &vvp_thread_kmem, .ckd_cache = &vvp_thread_kmem,
.ckd_name = "vvp_thread_kmem", .ckd_name = "vvp_thread_kmem",
.ckd_size = sizeof (struct vvp_thread_info), .ckd_size = sizeof(struct vvp_thread_info),
}, },
{ {
.ckd_cache = &vvp_session_kmem, .ckd_cache = &vvp_session_kmem,
.ckd_name = "vvp_session_kmem", .ckd_name = "vvp_session_kmem",
.ckd_size = sizeof (struct vvp_session) .ckd_size = sizeof(struct vvp_session)
}, },
{ {
.ckd_cache = NULL .ckd_cache = NULL
...@@ -90,6 +90,7 @@ static void vvp_key_fini(const struct lu_context *ctx, ...@@ -90,6 +90,7 @@ static void vvp_key_fini(const struct lu_context *ctx,
struct lu_context_key *key, void *data) struct lu_context_key *key, void *data)
{ {
struct vvp_thread_info *info = data; struct vvp_thread_info *info = data;
OBD_SLAB_FREE_PTR(info, vvp_thread_kmem); OBD_SLAB_FREE_PTR(info, vvp_thread_kmem);
} }
...@@ -108,6 +109,7 @@ static void vvp_session_key_fini(const struct lu_context *ctx, ...@@ -108,6 +109,7 @@ static void vvp_session_key_fini(const struct lu_context *ctx,
struct lu_context_key *key, void *data) struct lu_context_key *key, void *data)
{ {
struct vvp_session *session = data; struct vvp_session *session = data;
OBD_SLAB_FREE_PTR(session, vvp_session_kmem); OBD_SLAB_FREE_PTR(session, vvp_session_kmem);
} }
......
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