From: NeilBrown Date: Wed, 27 Jul 2011 21:56:24 +0000 (+1000) Subject: md: remove suspicious size_of() X-Git-Tag: v3.1-rc1~131^2~38 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a519b26dbe6533416d21b552053b0bf687f878d7;p=pandora-kernel.git md: remove suspicious size_of() When calling bioset_create we pass the size of the front_pad as sizeof(mddev) which looks suspicious as mddev is a pointer and so it looks like a common mistake where sizeof(*mddev) was intended. The size is actually correct as we want to store a pointer in the front padding of the bios created by the bioset, so make the intent more explicit by using sizeof(mddev_t *) Reported-by: Zdenek Kabelac Signed-off-by: NeilBrown --- Reading git-diff-tree failed