Re: [PATCH v2] iproute2: devlink: port from sys/queue.h to list.h

2019-07-26 Thread Stephen Hemminger
On Fri, 26 Jul 2019 22:01:05 +0100 Sergei Trofimovich wrote: > sys/queue.h does not exist on linux-musl targets and fails build as: > > devlink.c:28:10: fatal error: sys/queue.h: No such file or directory >28 | #include > | ^ > > The change ports to l

[PATCH v2] iproute2: devlink: port from sys/queue.h to list.h

2019-07-26 Thread Sergei Trofimovich
sys/queue.h does not exist on linux-musl targets and fails build as: devlink.c:28:10: fatal error: sys/queue.h: No such file or directory 28 | #include | ^ The change ports to list.h API and drops dependency of 'sys/queue.h'. The API maps one-to-one. Bu