lustre/osc/osc_dev.c remove space between sizeof and open parenthesis
authorHonggang Li <enjoymindful@gmail.com>
Thu, 12 Jun 2014 07:13:38 +0000 (15:13 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Jun 2014 22:32:14 +0000 (15:32 -0700)
Signed-off-by: Honggang Li <enjoymindful@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/osc/osc_dev.c

index a7c1ec0..5249e66 100644 (file)
@@ -61,32 +61,32 @@ struct lu_kmem_descr osc_caches[] = {
        {
                .ckd_cache = &osc_lock_kmem,
                .ckd_name  = "osc_lock_kmem",
-               .ckd_size  = sizeof (struct osc_lock)
+               .ckd_size  = sizeof(struct osc_lock)
        },
        {
                .ckd_cache = &osc_object_kmem,
                .ckd_name  = "osc_object_kmem",
-               .ckd_size  = sizeof (struct osc_object)
+               .ckd_size  = sizeof(struct osc_object)
        },
        {
                .ckd_cache = &osc_thread_kmem,
                .ckd_name  = "osc_thread_kmem",
-               .ckd_size  = sizeof (struct osc_thread_info)
+               .ckd_size  = sizeof(struct osc_thread_info)
        },
        {
                .ckd_cache = &osc_session_kmem,
                .ckd_name  = "osc_session_kmem",
-               .ckd_size  = sizeof (struct osc_session)
+               .ckd_size  = sizeof(struct osc_session)
        },
        {
                .ckd_cache = &osc_req_kmem,
                .ckd_name  = "osc_req_kmem",
-               .ckd_size  = sizeof (struct osc_req)
+               .ckd_size  = sizeof(struct osc_req)
        },
        {
                .ckd_cache = &osc_extent_kmem,
                .ckd_name  = "osc_extent_kmem",
-               .ckd_size  = sizeof (struct osc_extent)
+               .ckd_size  = sizeof(struct osc_extent)
        },
        {
                .ckd_cache = &osc_quota_kmem,