From: Jan Engelhardt Date: Fri, 7 Jan 2011 03:15:05 +0000 (+0000) Subject: netlink: test for all flags of the NLM_F_DUMP composite X-Git-Tag: v2.6.38-rc1~403^2~47 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ab03c2b1478f2438d2c80204f7fef65b1bca9cf;p=pandora-kernel.git netlink: test for all flags of the NLM_F_DUMP composite Due to NLM_F_DUMP is composed of two bits, NLM_F_ROOT | NLM_F_MATCH, when doing "if (x & NLM_F_DUMP)", it tests for _either_ of the bits being set. Because NLM_F_MATCH's value overlaps with NLM_F_EXCL, non-dump requests with NLM_F_EXCL set are mistaken as dump requests. Substitute the condition to test for _all_ bits being set. Signed-off-by: Jan Engelhardt Acked-by: Pablo Neira Ayuso Signed-off-by: David S. Miller --- Reading git-diff-tree failed