staging:lustre:lnet: lib-md.c delete space before '(' for code style
authorJanet Liu <jianhua.ljh@gmail.com>
Sat, 30 Aug 2014 06:56:09 +0000 (14:56 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 30 Aug 2014 19:21:04 +0000 (12:21 -0700)
Silences the following checkpatch warning:
  WARNING: space prohibited between function name and open parenthesis '('

Signed-off-by: Janet Liu <jianhua.ljh@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lnet/lnet/lib-md.c

index 1f386e09b5303cfaa9685c537c473d940d7a33bb..85a8aea2c4fef8c0675ccd32bcfc02d7d4ae4311 100644 (file)
@@ -109,7 +109,7 @@ lnet_md_build(lnet_libmd_t *lmd, lnet_md_t *umd, int unlink)
 
                lmd->md_niov = niov = umd->length;
                memcpy(lmd->md_iov.iov, umd->start,
-                      niov * sizeof (lmd->md_iov.iov[0]));
+                      niov * sizeof(lmd->md_iov.iov[0]));
 
                for (i = 0; i < (int)niov; i++) {
                        /* We take the base address on trust */
@@ -129,7 +129,7 @@ lnet_md_build(lnet_libmd_t *lmd, lnet_md_t *umd, int unlink)
        } else if ((umd->options & LNET_MD_KIOV) != 0) {
                lmd->md_niov = niov = umd->length;
                memcpy(lmd->md_iov.kiov, umd->start,
-                      niov * sizeof (lmd->md_iov.kiov[0]));
+                      niov * sizeof(lmd->md_iov.kiov[0]));
 
                for (i = 0; i < (int)niov; i++) {
                        /* We take the page pointer on trust */
@@ -263,15 +263,15 @@ int
 LNetMDAttach(lnet_handle_me_t meh, lnet_md_t umd,
             lnet_unlink_t unlink, lnet_handle_md_t *handle)
 {
-       LIST_HEAD               (matches);
-       LIST_HEAD               (drops);
+       LIST_HEAD(matches);
+       LIST_HEAD(drops);
        struct lnet_me          *me;
        struct lnet_libmd       *md;
        int                     cpt;
        int                     rc;
 
-       LASSERT (the_lnet.ln_init);
-       LASSERT (the_lnet.ln_refcount > 0);
+       LASSERT(the_lnet.ln_init);
+       LASSERT(the_lnet.ln_refcount > 0);
 
        if (lnet_md_validate(&umd) != 0)
                return -EINVAL;
@@ -347,8 +347,8 @@ LNetMDBind(lnet_md_t umd, lnet_unlink_t unlink, lnet_handle_md_t *handle)
        int             cpt;
        int             rc;
 
-       LASSERT (the_lnet.ln_init);
-       LASSERT (the_lnet.ln_refcount > 0);
+       LASSERT(the_lnet.ln_init);
+       LASSERT(the_lnet.ln_refcount > 0);
 
        if (lnet_md_validate(&umd) != 0)
                return -EINVAL;
@@ -416,7 +416,7 @@ EXPORT_SYMBOL(LNetMDBind);
  * \retval -ENOENT If \a mdh does not point to a valid MD object.
  */
 int
-LNetMDUnlink (lnet_handle_md_t mdh)
+LNetMDUnlink(lnet_handle_md_t mdh)
 {
        lnet_event_t    ev;
        lnet_libmd_t    *md;
This page took 0.0261 seconds and 5 git commands to generate.