On Mon, Jul 09, 2018 at 10:36:43AM +0200, Daniel Vetter wrote:
#define for_each_active_drhd_unit(drhd) \ list_for_each_entry_rcu(drhd, &dmar_drhd_units, list) \
if (drhd->ignored) {} else
for_each_if (!drhd->ignored)
Hmm, in my tree the macro comes from
include/drm/drmP.h:#define for_each_if(condition) if (!(condition)) {} else
Please re-submit when the macro is in a generic header upstream.
Joerg