lib: fix whitespace
authorStephen Hemminger <shemming@brocade.com>
Thu, 4 Jun 2015 14:43:23 +0000 (07:43 -0700)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Fri, 12 Jun 2015 09:10:10 +0000 (11:10 +0200)
More places with trailing whitespace, and empty blank lines

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
lib/librte_cmdline/cmdline_cirbuf.c
lib/librte_cmdline/cmdline_parse.c
lib/librte_cmdline/cmdline_rdline.c
lib/librte_compat/rte_compat.h
lib/librte_hash/rte_fbk_hash.c
lib/librte_lpm/rte_lpm.c
lib/librte_malloc/malloc_heap.c
lib/librte_vhost/libvirt/qemu-wrap.py
lib/librte_vhost/vhost_rxtx.c

index b9f9f4b..f506f88 100644 (file)
@@ -464,4 +464,3 @@ cirbuf_get_tail(struct cirbuf * cbuf)
 {
        return cbuf->buf[cbuf->end];
 }
-
index dfc885c..24a6ed6 100644 (file)
@@ -561,4 +561,3 @@ cmdline_complete(struct cmdline *cl, const char *buf, int *state,
        }
        return 0;
 }
-
index f79ebe3..1ef2258 100644 (file)
@@ -695,4 +695,3 @@ rdline_miniprintf(struct rdline *rdl, const char * buf, unsigned int val)
                }
        }
 }
-
index 3a0fd2d..fb0dc19 100644 (file)
  * foo is exported as a global symbol.
  *
  * 2) rename the existing function int foo(char *string) to
- *     int __vsym foo_v20(char *string)
+ *     int __vsym foo_v20(char *string)
  *
  * 3) Add this macro immediately below the function
- *     VERSION_SYMBOL(foo, _v20, 2.0);
+ *     VERSION_SYMBOL(foo, _v20, 2.0);
  *
  * 4) Implement a new version of foo.
- *     char foo(int value, int otherval) { ...}
+ *     char foo(int value, int otherval) { ...}
  *
  * 5) Mark the newest version as the default version
- *     BIND_DEFAULT_SYMBOL(foo, 2.1);
+ *     BIND_DEFAULT_SYMBOL(foo, 2.1);
  *
  */
 
index 356ddfe..8752a47 100644 (file)
@@ -226,4 +226,3 @@ rte_fbk_hash_free(struct rte_fbk_hash_table *ht)
        rte_free(ht);
        rte_free(te);
 }
-
index 0945b81..0c87a29 100644 (file)
@@ -1006,4 +1006,3 @@ rte_lpm_delete_all(struct rte_lpm *lpm)
        /* Delete all rules form the rules table. */
        memset(lpm->rules_tbl, 0, sizeof(lpm->rules_tbl[0]) * lpm->max_rules);
 }
-
index defb903..8861d27 100644 (file)
@@ -206,4 +206,3 @@ malloc_heap_get_stats(const struct malloc_heap *heap,
        socket_stats->alloc_count = heap->alloc_count;
        return 0;
 }
-
index e2d68a0..5096011 100755 (executable)
 #
 #    3.a) Set the VM to use the launch script
 #
-#      Set the emulator path contained in the
+#      Set the emulator path contained in the
 #              <emulator><emulator/> tags
 #
-#      e.g replace <emulator>/usr/bin/qemu-kvm<emulator/>
+#      e.g replace <emulator>/usr/bin/qemu-kvm<emulator/>
 #        with    <emulator>/usr/bin/qemu-wrap.py<emulator/>
 #
 #       3.b) Set the VM's device's to use vhost-net offload
 #
 #              <interface type="network">
-#              <model type="virtio"/>
-#              <driver name="vhost"/>
+#      <model type="virtio"/>
+#      <driver name="vhost"/>
 #              <interface/>
 #
 # 4. Enable libvirt to access our userpace device file by adding it to
@@ -229,7 +229,7 @@ def get_vhost_fd():
 # flags onto the end
 #############################################
 def modify_netdev_arg(arg):
-       
+
     global fd_list
     vhost_in_use = 0
     s = ''
@@ -259,7 +259,7 @@ def modify_netdev_arg(arg):
 
         s+=opt
 
-    return s   
+    return s
 
 
 #############################################
@@ -364,4 +364,3 @@ def main():
 
 if __name__ == "__main__":
     main()
-
index 4809d32..2da4a02 100644 (file)
@@ -615,7 +615,7 @@ rte_vhost_dequeue_burst(struct virtio_net *dev, uint16_t queue_id,
                if (unlikely(m == NULL)) {
                        RTE_LOG(ERR, VHOST_DATA,
                                "Failed to allocate memory for mbuf.\n");
-                       break;  
+                       break;
                }
                seg_offset = 0;
                seg_avail = m->buf_len - RTE_PKTMBUF_HEADROOM;