#define TABLE_LINEAR_MAX_FLOWS 100
#define TABLE_HASH_MAX_FLOWS 65536
-#define TABLE_MAC_MAX_FLOWS 1024
-#define TABLE_MAC_NUM_BUCKETS 1024
/* Set of tables chained together in sequence from cheap to expensive. */
#define CHAIN_MAX_TABLES 4
ofr->datapath_id = cpu_to_be64(dp->id);
ofr->n_exact = htonl(2 * TABLE_HASH_MAX_FLOWS);
- ofr->n_mac_only = htonl(TABLE_MAC_MAX_FLOWS);
ofr->n_compression = 0; /* Not supported */
ofr->n_general = htonl(TABLE_LINEAR_MAX_FLOWS);
ofr->buffer_mb = htonl(UINT32_MAX);
/* Table info. */
uint32_t n_exact; /* Max exact-match table entries. */
- uint32_t n_mac_only; /* Max mac-only table entries. */
uint32_t n_compression; /* Max entries compressed on service port. */
uint32_t n_general; /* Max entries of arbitrary form. */
int i;
ds_put_format(string, "dp id:%"PRIx64"\n", ntohll(osf->datapath_id));
- ds_put_format(string, "tables: exact:%d, mac:%d, compressed:%d, general:%d\n",
- ntohl(osf->n_exact), ntohl(osf->n_mac_only),
+ ds_put_format(string, "tables: exact:%d, compressed:%d, general:%d\n",
+ ntohl(osf->n_exact),
ntohl(osf->n_compression), ntohl(osf->n_general));
ds_put_format(string, "buffers: size:%d, number:%d\n",
ntohl(osf->buffer_mb), ntohl(osf->n_buffers));
sender, &buffer);
ofr->datapath_id = htonll(dp->id);
ofr->n_exact = htonl(2 * TABLE_HASH_MAX_FLOWS);
- ofr->n_mac_only = htonl(TABLE_MAC_MAX_FLOWS);
- ofr->n_compression = 0; /* Not supported */
+ ofr->n_compression = 0; /* Not supported */
ofr->n_general = htonl(TABLE_LINEAR_MAX_FLOWS);
ofr->buffer_mb = htonl(UINT32_MAX);
ofr->n_buffers = htonl(N_PKT_BUFFERS);