Lines Matching defs:table
321 struct mv88e6xxx_devlink_atu_entry *table,
359 table[*count].fid = fid;
360 table[*count].atu_op = atu_op;
361 table[*count].atu_data = atu_data;
362 table[*count].atu_01 = atu_01;
363 table[*count].atu_23 = atu_23;
364 table[*count].atu_45 = atu_45;
378 struct mv88e6xxx_devlink_atu_entry *table;
382 table = kmalloc_array(mv88e6xxx_num_databases(chip),
385 if (!table)
388 memset(table, 0, mv88e6xxx_num_databases(chip) *
397 kfree(table);
406 err = mv88e6xxx_region_atu_snapshot_fid(chip, fid, table,
409 kfree(table);
413 *data = (u8 *)table;