#ifndef _PERF_XYARRAY_H_ #define _PERF_XYARRAY_H_ 1 #include struct xyarray { size_t row_size; size_t entry_size; size_t entries; char contents[]; }; struct xyarray *xyarray__new(int xlen, int ylen, size_t entry_size); void xyarray__delete(struct xyarray *xy); void xyarray__reset(struct xyarray *xy); static inline void *xyarray__entry(struct xyarray *xy, int x, int y) { return &xy->contents[x * xy->row_size + y * xy->entry_size]; } #endif /* _PERF_XYARRAY_H_ */ stanz.ch/cgit.cgi/linux/net-next.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2017-02-14bridge: fdb: converge fdb_delete_by functions into oneNikolay Aleksandrov1-47/+15
2017-02-14bridge: fdb: add proper lock checks in searching functionsNikolay Aleksandrov1-0/+4
2017-02-14bridge: fdb: converge fdb searching functions into oneNikolay Aleksandrov1-65/+48
2017-02-07bridge: avoid unnecessary read of jiffiesstephen hemminger1-2/+4
2017-02-06bridge: fdb: write to used and updated at most once per jiffyNikolay Aleksandrov1-1/+2
2017-02-06bridge: move to workqueue gcNikolay Aleksandrov1-12/+19