Merge branch 'for-linus' of git://neil.brown.name/md
* 'for-linus' of git://neil.brown.name/md: Further tidyup of raid6 naming in lib/raid6 Make lib/raid6/test build correctly. Rename raid6 files now they're in a 'raid6' directory.
···1111 * ----------------------------------------------------------------------- */12121313/*1414- * raid6recov.c1414+ * raid6/recov.c1515 *1616 * RAID-6 data recovery in dual failure mode. In single failure mode,1717 * use the RAID-5 algorithm (or, in the case of Q failure, just reconstruct
+3-3
lib/raid6/raid6sse1.c
lib/raid6/sse1.c
···1111 * ----------------------------------------------------------------------- */12121313/*1414- * raid6sse1.c1414+ * raid6/sse1.c1515 *1616 * SSE-1/MMXEXT implementation of RAID-6 syndrome functions1717 *···2424#if defined(__i386__) && !defined(__arch_um__)25252626#include <linux/raid/pq.h>2727-#include "raid6x86.h"2727+#include "x86.h"28282929-/* Defined in raid6mmx.c */2929+/* Defined in raid6/mmx.c */3030extern const struct raid6_mmx_constants {3131 u64 x1d;3232} raid6_mmx_constants;
···1111 * ----------------------------------------------------------------------- */12121313/*1414- * raid6x86.h1414+ * raid6/x86.h1515 *1616 * Definitions common to x86 and x86-64 RAID-6 code only1717 */