X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=afs.h;h=aeaf8fb8189535ec44dbcd14d19f472b710f81d7;hp=ccfb7b8d849dbf23ca2b6943b812926674175ea3;hb=acebb60a3709eebbfed30dc47c1f324969e4d7c7;hpb=ec354cf583bc2838ecfac64c428d3f992681c5fc diff --git a/afs.h b/afs.h index ccfb7b8d..aeaf8fb8 100644 --- a/afs.h +++ b/afs.h @@ -271,21 +271,3 @@ enum blob_table_columns { /** A blob table has that many columns. */ NUM_BLOB_COLUMNS }; - -/** Define an osl table description for a blob table. */ -#define DEFINE_BLOB_TABLE_DESC(table_name) \ - struct osl_table_description table_name ## _table_desc = { \ - .name = #table_name, \ - .num_columns = NUM_BLOB_COLUMNS, \ - .flags = OSL_LARGE_TABLE, \ - .column_descriptions = blob_cols \ - }; - -/** Define a pointer to an osl blob table with a canonical name. */ -#define DEFINE_BLOB_TABLE_PTR(table_name) struct osl_table *table_name ## _table; - -/** Define a blob table. */ -#define INIT_BLOB_TABLE(table_name) \ - DEFINE_BLOB_TABLE_DESC(table_name); \ - DEFINE_BLOB_TABLE_PTR(table_name); -