X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=ovsdb%2Frow.h;h=62820d5a6b306b8414be40301786846256252aca;hb=HEAD;hp=306a56da650ef3b6659df4796f2a03b206a1eacc;hpb=6e492d81450217a5c90cbb4ad31d81b1e611989b;p=cascardo%2Fovs.git diff --git a/ovsdb/row.h b/ovsdb/row.h index 306a56da6..62820d5a6 100644 --- a/ovsdb/row.h +++ b/ovsdb/row.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2009, 2010, 2011, 2012 Nicira Networks +/* Copyright (c) 2009, 2010, 2011, 2012 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -36,8 +36,8 @@ struct ovsdb_column_set; * ovsdb_weak_ref" structures are created for them. */ struct ovsdb_weak_ref { - struct list src_node; /* In src->src_refs list. */ - struct list dst_node; /* In destination row's dst_refs list. */ + struct ovs_list src_node; /* In src->src_refs list. */ + struct ovs_list dst_node; /* In destination row's dst_refs list. */ struct ovsdb_row *src; /* Source row. */ }; @@ -48,8 +48,8 @@ struct ovsdb_row { struct ovsdb_txn_row *txn_row; /* Transaction that row is in, if any. */ /* Weak references. */ - struct list src_refs; /* Weak references from this row. */ - struct list dst_refs; /* Weak references to this row. */ + struct ovs_list src_refs; /* Weak references from this row. */ + struct ovs_list dst_refs; /* Weak references to this row. */ /* Number of strong refs to this row from other rows, in this table or * other tables, through 'uuid' columns that have a 'refTable' constraint @@ -88,7 +88,7 @@ struct ovsdb_error *ovsdb_row_from_json(struct ovsdb_row *, const struct json *, struct ovsdb_symbol_table *, struct ovsdb_column_set *included) - WARN_UNUSED_RESULT; + OVS_WARN_UNUSED_RESULT; struct json *ovsdb_row_to_json(const struct ovsdb_row *, const struct ovsdb_column_set *include);