From: Jeff Mahoney Date: Tue, 4 Oct 2011 03:23:23 +0000 (-0400) Subject: btrfs: Fix kfree of member instead of structure X-Git-Tag: v3.4-rc1~22^2~13^2~30 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cddcd800189bc03745d576f913dc57692c6f439a;p=pandora-kernel.git btrfs: Fix kfree of member instead of structure Correctness fix: The kfree calls in the add_delayed_* functions free the node that's passed into it, but the node is a member of another structure. It works because it's always the first member of the containing structure, but it should really be using the containing structure itself. Signed-off-by: Jeff Mahoney --- Reading git-diff-tree failed