The patch titled DAC960: use memmove for overlapping areas has been added to the -mm tree. Its filename is dac960-use-memmove-for-overlapping-areas.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: DAC960: use memmove for overlapping areas From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/block/DAC960.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/block/DAC960.h~dac960-use-memmove-for-overlapping-areas drivers/block/DAC960.h --- a/drivers/block/DAC960.h~dac960-use-memmove-for-overlapping-areas +++ a/drivers/block/DAC960.h @@ -4379,8 +4379,8 @@ static inline void DAC960_P_To_PD_Transl static inline void DAC960_P_To_PD_TranslateDeviceState(void *DeviceState) { memcpy(DeviceState + 2, DeviceState + 3, 1); - memcpy(DeviceState + 4, DeviceState + 5, 2); - memcpy(DeviceState + 6, DeviceState + 8, 4); + memmove(DeviceState + 4, DeviceState + 5, 2); + memmove(DeviceState + 6, DeviceState + 8, 4); } static inline _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are asus_acpi-fix-proc-files-parsing.patch asus_acpi-dont-printk-on-writing-garbage-to-proc-files.patch git-gfs2.patch config_pm=n-slim-drivers-pcmcia.patch i82092-wire-up-errors-from-pci_register_driver.patch megaraid-fix-warnings-when-config_proc_fs=n.patch scsi_libc-use-build_bug_on.patch drivers-usb-net-use-build_bug_on.patch prism54-use-build_bug_on.patch fs-use-build_bug_on.patch dac960-use-memmove-for-overlapping-areas.patch md-use-build_bug_on.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html