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 */
        } 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 */
 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;
        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;
  * \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;