X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ovsdb%2Frow.h;h=45c7fb397b015e99f423d702fc77064772eabb4a;hb=c5cf10598f8c9f4428291e9df3ecd72a05fb1ccf;hp=ba0f9fbee8b5626a5478671a882011d1653a72b9;hpb=25d4983554f6cf8ce5e169f7c5bb5a08c981d27e;p=sliver-openvswitch.git diff --git a/ovsdb/row.h b/ovsdb/row.h index ba0f9fbee..45c7fb397 100644 --- a/ovsdb/row.h +++ b/ovsdb/row.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2009, 2010, 2011 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. @@ -43,8 +43,8 @@ struct ovsdb_weak_ref { /* A row in a database table. */ struct ovsdb_row { - struct ovsdb_table *table; /* Table to which this belongs. */ struct hmap_node hmap_node; /* Element in ovsdb_table's 'rows' hmap. */ + struct ovsdb_table *table; /* Table to which this belongs. */ struct ovsdb_txn_row *txn_row; /* Transaction that row is in, if any. */ /* Weak references. */ @@ -58,7 +58,13 @@ struct ovsdb_row { * commit. */ size_t n_refs; + /* One datum for each column (shash_count(&table->schema->columns) + * elements). */ struct ovsdb_datum fields[]; + + /* Followed by table->schema->n_indexes "struct hmap_node"s. In rows that + * have have been committed as part of the database, the hmap_node with + * index 'i' is contained in hmap table->indexes[i]. */ }; struct ovsdb_row *ovsdb_row_create(const struct ovsdb_table *);