bridge: Add controller status to Controller table.
[openvswitch] / datapath / table.c
index b54534a6df5215ca96c5113a5f0f7540c1cd6c08..79b9bc1bd2c8f7b8793aa2b5f6b8cbd7b8295a72 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2009, 2010 Nicira Networks.
+ * Copyright (c) 2009, 2010, 2011 Nicira Networks.
  * Distributed under the terms of the GNU GPL version 2.
  *
  * Significant portions of this file may be copied from parts of the Linux
@@ -98,7 +98,7 @@ struct tbl *tbl_create(unsigned int n_buckets)
 {
        struct tbl *table;
 
-       table = kzalloc(sizeof *table, GFP_KERNEL);
+       table = kzalloc(sizeof(*table), GFP_KERNEL);
        if (!table)
                goto err;