]> git.droids-corp.org - dpdk.git/commitdiff
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 b9f9f4bc65d81589dde4ebec71b1af1cd3cddc8e..f506f88059b2706574e8273d29d3bb039838697d 100644 (file)
@@ -464,4 +464,3 @@ cirbuf_get_tail(struct cirbuf * cbuf)
 {
        return cbuf->buf[cbuf->end];
 }
-
index dfc885cf6e0189b2c070c9d5fde8fead5c95e8d4..24a6ed67d4bcec26cf5caafd35731ffc866bfe40 100644 (file)
@@ -561,4 +561,3 @@ cmdline_complete(struct cmdline *cl, const char *buf, int *state,
        }
        return 0;
 }
-
index f79ebe312574a717550129bdb4388e1f14ab06dd..1ef2258d00d737856671104898f3cc448d99c68c 100644 (file)
@@ -695,4 +695,3 @@ rdline_miniprintf(struct rdline *rdl, const char * buf, unsigned int val)
                }
        }
 }
-
index 3a0fd2d352e701a1b948ae7eca09c6287e06aae2..fb0dc196ea0eb8c15d1d1bb021fec07c607659b5 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 356ddfe67a16ff76adcf0e452a2b4f1ee034bb6c..8752a477e9be2a854cac56d7f8926a207820e141 100644 (file)
@@ -226,4 +226,3 @@ rte_fbk_hash_free(struct rte_fbk_hash_table *ht)
        rte_free(ht);
        rte_free(te);
 }
-
index 0945b8103c262f73983d13f7cc030bd8e8761273..0c87a2919e34d97affd77d7d46903fec51fb4471 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 defb903749e8ea496eaaabc49111bd25c314178b..8861d27bfb13e686845ab86ebc13761f18331a78 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 e2d68a0ec0366e9eef88c136e52caa988fe87569..50960112b77eec4660e68744866ba0d84ce3e915 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 4809d32709a039b5d68794686891d616693f1b69..2da4a0227b97046cccc146f52476f577a475393f 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;