The patch titled scatterlist.h needs types.h has been removed from the -mm tree. Its filename was scatterlisth-needs-typesh.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: scatterlist.h needs types.h From: Jean Delvare <khali@xxxxxxxxxxxx> Most architectures' scatterlist.h use the type dma_addr_t, but omit to include <asm/types.h> which defines it. This could lead to build failures, so let's add the missing includes. Signed-off-by: Jean Delvare <khali@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/asm-alpha/scatterlist.h | 1 + include/asm-avr32/scatterlist.h | 2 ++ include/asm-frv/scatterlist.h | 2 ++ include/asm-h8300/scatterlist.h | 2 ++ include/asm-i386/scatterlist.h | 2 ++ include/asm-ia64/scatterlist.h | 2 ++ include/asm-m32r/scatterlist.h | 2 ++ include/asm-m68knommu/scatterlist.h | 1 + include/asm-mips/scatterlist.h | 2 ++ include/asm-parisc/scatterlist.h | 1 + include/asm-sh/scatterlist.h | 2 ++ include/asm-sh64/scatterlist.h | 2 ++ include/asm-sparc64/scatterlist.h | 1 + include/asm-v850/scatterlist.h | 2 ++ include/asm-x86_64/scatterlist.h | 2 ++ include/asm-xtensa/scatterlist.h | 2 ++ 16 files changed, 28 insertions(+) diff -puN include/asm-alpha/scatterlist.h~scatterlisth-needs-typesh include/asm-alpha/scatterlist.h --- a/include/asm-alpha/scatterlist.h~scatterlisth-needs-typesh +++ a/include/asm-alpha/scatterlist.h @@ -2,6 +2,7 @@ #define _ALPHA_SCATTERLIST_H #include <asm/page.h> +#include <asm/types.h> struct scatterlist { struct page *page; diff -puN include/asm-avr32/scatterlist.h~scatterlisth-needs-typesh include/asm-avr32/scatterlist.h --- a/include/asm-avr32/scatterlist.h~scatterlisth-needs-typesh +++ a/include/asm-avr32/scatterlist.h @@ -1,6 +1,8 @@ #ifndef __ASM_AVR32_SCATTERLIST_H #define __ASM_AVR32_SCATTERLIST_H +#include <asm/types.h> + struct scatterlist { struct page *page; unsigned int offset; diff -puN include/asm-frv/scatterlist.h~scatterlisth-needs-typesh include/asm-frv/scatterlist.h --- a/include/asm-frv/scatterlist.h~scatterlisth-needs-typesh +++ a/include/asm-frv/scatterlist.h @@ -1,6 +1,8 @@ #ifndef _ASM_SCATTERLIST_H #define _ASM_SCATTERLIST_H +#include <asm/types.h> + /* * Drivers must set either ->address or (preferred) ->page and ->offset * to indicate where data must be transferred to/from. diff -puN include/asm-h8300/scatterlist.h~scatterlisth-needs-typesh include/asm-h8300/scatterlist.h --- a/include/asm-h8300/scatterlist.h~scatterlisth-needs-typesh +++ a/include/asm-h8300/scatterlist.h @@ -1,6 +1,8 @@ #ifndef _H8300_SCATTERLIST_H #define _H8300_SCATTERLIST_H +#include <asm/types.h> + struct scatterlist { struct page *page; unsigned int offset; diff -puN include/asm-i386/scatterlist.h~scatterlisth-needs-typesh include/asm-i386/scatterlist.h --- a/include/asm-i386/scatterlist.h~scatterlisth-needs-typesh +++ a/include/asm-i386/scatterlist.h @@ -1,6 +1,8 @@ #ifndef _I386_SCATTERLIST_H #define _I386_SCATTERLIST_H +#include <asm/types.h> + struct scatterlist { struct page *page; unsigned int offset; diff -puN include/asm-ia64/scatterlist.h~scatterlisth-needs-typesh include/asm-ia64/scatterlist.h --- a/include/asm-ia64/scatterlist.h~scatterlisth-needs-typesh +++ a/include/asm-ia64/scatterlist.h @@ -6,6 +6,8 @@ * David Mosberger-Tang <davidm@xxxxxxxxxx>, Hewlett-Packard Co */ +#include <asm/types.h> + struct scatterlist { struct page *page; unsigned int offset; diff -puN include/asm-m32r/scatterlist.h~scatterlisth-needs-typesh include/asm-m32r/scatterlist.h --- a/include/asm-m32r/scatterlist.h~scatterlisth-needs-typesh +++ a/include/asm-m32r/scatterlist.h @@ -1,6 +1,8 @@ #ifndef _ASM_M32R_SCATTERLIST_H #define _ASM_M32R_SCATTERLIST_H +#include <asm/types.h> + struct scatterlist { char * address; /* Location data is to be transferred to, NULL for * highmem page */ diff -puN include/asm-m68knommu/scatterlist.h~scatterlisth-needs-typesh include/asm-m68knommu/scatterlist.h --- a/include/asm-m68knommu/scatterlist.h~scatterlisth-needs-typesh +++ a/include/asm-m68knommu/scatterlist.h @@ -2,6 +2,7 @@ #define _M68KNOMMU_SCATTERLIST_H #include <linux/mm.h> +#include <asm/types.h> struct scatterlist { struct page *page; diff -puN include/asm-mips/scatterlist.h~scatterlisth-needs-typesh include/asm-mips/scatterlist.h --- a/include/asm-mips/scatterlist.h~scatterlisth-needs-typesh +++ a/include/asm-mips/scatterlist.h @@ -1,6 +1,8 @@ #ifndef __ASM_SCATTERLIST_H #define __ASM_SCATTERLIST_H +#include <asm/types.h> + struct scatterlist { struct page * page; unsigned int offset; diff -puN include/asm-parisc/scatterlist.h~scatterlisth-needs-typesh include/asm-parisc/scatterlist.h --- a/include/asm-parisc/scatterlist.h~scatterlisth-needs-typesh +++ a/include/asm-parisc/scatterlist.h @@ -2,6 +2,7 @@ #define _ASM_PARISC_SCATTERLIST_H #include <asm/page.h> +#include <asm/types.h> struct scatterlist { struct page *page; diff -puN include/asm-sh/scatterlist.h~scatterlisth-needs-typesh include/asm-sh/scatterlist.h --- a/include/asm-sh/scatterlist.h~scatterlisth-needs-typesh +++ a/include/asm-sh/scatterlist.h @@ -1,6 +1,8 @@ #ifndef __ASM_SH_SCATTERLIST_H #define __ASM_SH_SCATTERLIST_H +#include <asm/types.h> + struct scatterlist { struct page * page; /* Location for highmem page, if any */ unsigned int offset;/* for highmem, page offset */ diff -puN include/asm-sh64/scatterlist.h~scatterlisth-needs-typesh include/asm-sh64/scatterlist.h --- a/include/asm-sh64/scatterlist.h~scatterlisth-needs-typesh +++ a/include/asm-sh64/scatterlist.h @@ -11,6 +11,8 @@ #ifndef __ASM_SH64_SCATTERLIST_H #define __ASM_SH64_SCATTERLIST_H +#include <asm/types.h> + struct scatterlist { struct page * page; /* Location for highmem page, if any */ unsigned int offset;/* for highmem, page offset */ diff -puN include/asm-sparc64/scatterlist.h~scatterlisth-needs-typesh include/asm-sparc64/scatterlist.h --- a/include/asm-sparc64/scatterlist.h~scatterlisth-needs-typesh +++ a/include/asm-sparc64/scatterlist.h @@ -3,6 +3,7 @@ #define _SPARC64_SCATTERLIST_H #include <asm/page.h> +#include <asm/types.h> struct scatterlist { struct page *page; diff -puN include/asm-v850/scatterlist.h~scatterlisth-needs-typesh include/asm-v850/scatterlist.h --- a/include/asm-v850/scatterlist.h~scatterlisth-needs-typesh +++ a/include/asm-v850/scatterlist.h @@ -14,6 +14,8 @@ #ifndef __V850_SCATTERLIST_H__ #define __V850_SCATTERLIST_H__ +#include <asm/types.h> + struct scatterlist { struct page *page; unsigned offset; diff -puN include/asm-x86_64/scatterlist.h~scatterlisth-needs-typesh include/asm-x86_64/scatterlist.h --- a/include/asm-x86_64/scatterlist.h~scatterlisth-needs-typesh +++ a/include/asm-x86_64/scatterlist.h @@ -1,6 +1,8 @@ #ifndef _X8664_SCATTERLIST_H #define _X8664_SCATTERLIST_H +#include <asm/types.h> + struct scatterlist { struct page *page; unsigned int offset; diff -puN include/asm-xtensa/scatterlist.h~scatterlisth-needs-typesh include/asm-xtensa/scatterlist.h --- a/include/asm-xtensa/scatterlist.h~scatterlisth-needs-typesh +++ a/include/asm-xtensa/scatterlist.h @@ -11,6 +11,8 @@ #ifndef _XTENSA_SCATTERLIST_H #define _XTENSA_SCATTERLIST_H +#include <asm/types.h> + struct scatterlist { struct page *page; unsigned int offset; _ Patches currently in -mm which might be from khali@xxxxxxxxxxxx are sound-strlcpy-is-smart-enough.patch git-dvb.patch ehea-strlcpy-is-smart-enough.patch git-s390.patch blackfin-blackfin-i2c-driver-update-2.patch xtensa-strlcpy-is-smart-enough.patch oss-strlcpy-is-smart-enough.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