From: Ben Hutchings Date: Mon, 27 May 2013 18:07:19 +0000 (+0100) Subject: [SCSI] sd: Fix parsing of 'temporary ' cache mode prefix X-Git-Tag: v3.11-rc1~88^2~57 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ee3e26c673e75c05ef8b914f54fadee3d7b9c88;p=pandora-kernel.git [SCSI] sd: Fix parsing of 'temporary ' cache mode prefix Commit 39c60a0948cc '[SCSI] sd: fix array cache flushing bug causing performance problems' added temp as a pointer to "temporary " and used sizeof(temp) - 1 as its length. But sizeof(temp) is the size of the pointer, not the size of the string constant. Change temp to a static array so that sizeof() does what was intended. Signed-off-by: Ben Hutchings Cc: stable@vger.kernel.org Signed-off-by: James Bottomley --- Reading git-diff-tree failed