All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <xa1twqcmicik.fsf@mina86.com>

diff --git a/a/1.txt b/N1/1.txt
index 57f4729..c7e3634 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -12,32 +12,34 @@ Perhaps the function should be changed to return an error-pointer?
 Acked-by: Michal Nazarewicz <mina86@mina86.com>
 
 >
-> diff --git a/arch/powerpc/kvm/book3s_hv_builtin.c b/arch/powerpc/kvm/book3s_hv_builtin.c
+> diff --git a/arch/powerpc/kvm/book3s_hv_builtin.c b/arch/powerpc/kvm/book=
+3s_hv_builtin.c
 > index 28ec226..97613ea 100644
 > --- a/arch/powerpc/kvm/book3s_hv_builtin.c
 > +++ b/arch/powerpc/kvm/book3s_hv_builtin.c
 > @@ -184,7 +184,7 @@ void __init kvm_cma_reserve(void)
->  
->  		align_size = max(kvm_rma_pages << PAGE_SHIFT, align_size);
+>=20=20
+>  		align_size =3D max(kvm_rma_pages << PAGE_SHIFT, align_size);
 >  		cma_declare_contiguous(selected_size, 0, 0, align_size,
 > -			KVM_CMA_CHUNK_ORDER - PAGE_SHIFT, &kvm_cma, false);
 > +			KVM_CMA_CHUNK_ORDER - PAGE_SHIFT, false, &kvm_cma);
 >  	}
 >  }
->  
+>=20=20
 > diff --git a/drivers/base/dma-contiguous.c b/drivers/base/dma-contiguous.c
 > index f177f73..bfd4553 100644
 > --- a/drivers/base/dma-contiguous.c
 > +++ b/drivers/base/dma-contiguous.c
-> @@ -149,7 +149,7 @@ int __init dma_contiguous_reserve_area(phys_addr_t size, phys_addr_t base,
+> @@ -149,7 +149,7 @@ int __init dma_contiguous_reserve_area(phys_addr_t si=
+ze, phys_addr_t base,
 >  {
 >  	int ret;
->  
-> -	ret = cma_declare_contiguous(size, base, limit, 0, 0, res_cma, fixed);
-> +	ret = cma_declare_contiguous(size, base, limit, 0, 0, fixed, res_cma);
+>=20=20
+> -	ret =3D cma_declare_contiguous(size, base, limit, 0, 0, res_cma, fixed);
+> +	ret =3D cma_declare_contiguous(size, base, limit, 0, 0, fixed, res_cma);
 >  	if (ret)
 >  		return ret;
->  
+>=20=20
 > diff --git a/include/linux/cma.h b/include/linux/cma.h
 > index e38efe9..e53eead 100644
 > --- a/include/linux/cma.h
@@ -48,7 +50,8 @@ Acked-by: Michal Nazarewicz <mina86@mina86.com>
 >  				phys_addr_t alignment, int order_per_bit,
 > -				struct cma **res_cma, bool fixed);
 > +				bool fixed, struct cma **res_cma);
->  extern struct page *cma_alloc(struct cma *cma, int count, unsigned int align);
+>  extern struct page *cma_alloc(struct cma *cma, int count, unsigned int a=
+lign);
 >  extern bool cma_release(struct cma *cma, struct page *pages, int count);
 >  #endif
 > diff --git a/mm/cma.c b/mm/cma.c
@@ -57,14 +60,16 @@ Acked-by: Michal Nazarewicz <mina86@mina86.com>
 > +++ b/mm/cma.c
 > @@ -142,8 +142,8 @@ core_initcall(cma_init_reserved_areas);
 >   * @limit: End address of the reserved memory (optional, 0 for any).
->   * @alignment: Alignment for the contiguous memory area, should be power of 2
+>   * @alignment: Alignment for the contiguous memory area, should be power=
+ of 2
 >   * @order_per_bit: Order of pages represented by one bit on bitmap.
 > - * @res_cma: Pointer to store the created cma region.
 >   * @fixed: hint about where to place the reserved area
 > + * @res_cma: Pointer to store the created cma region.
 >   *
 >   * This function reserves memory from early allocator. It should be
->   * called by arch specific code once the early allocator (memblock or bootmem)
+>   * called by arch specific code once the early allocator (memblock or bo=
+otmem)
 > @@ -156,9 +156,9 @@ core_initcall(cma_init_reserved_areas);
 >  int __init cma_declare_contiguous(phys_addr_t size,
 >  				phys_addr_t base, phys_addr_t limit,
@@ -72,25 +77,26 @@ Acked-by: Michal Nazarewicz <mina86@mina86.com>
 > -				struct cma **res_cma, bool fixed)
 > +				bool fixed, struct cma **res_cma)
 >  {
-> -	struct cma *cma = &cma_areas[cma_area_count];
+> -	struct cma *cma =3D &cma_areas[cma_area_count];
 > +	struct cma *cma;
->  	int ret = 0;
->  
+>  	int ret =3D 0;
+>=20=20
 >  	pr_debug("%s(size %lx, base %08lx, limit %08lx alignment %08lx)\n",
 > @@ -214,6 +214,7 @@ int __init cma_declare_contiguous(phys_addr_t size,
 >  	 * Each reserved area must be initialised later, when more kernel
 >  	 * subsystems (like slab allocator) are available.
 >  	 */
-> +	cma = &cma_areas[cma_area_count];
->  	cma->base_pfn = PFN_DOWN(base);
->  	cma->count = size >> PAGE_SHIFT;
->  	cma->order_per_bit = order_per_bit;
-> -- 
+> +	cma =3D &cma_areas[cma_area_count];
+>  	cma->base_pfn =3D PFN_DOWN(base);
+>  	cma->count =3D size >> PAGE_SHIFT;
+>  	cma->order_per_bit =3D order_per_bit;
+> --=20
 > 1.7.9.5
 >
 
--- 
+--=20
 Best regards,                                         _     _
-.o. | Liege of Serenely Enlightened Majesty of      o' \,=./ `o
-..o | Computer Science,  Michał “mina86” Nazarewicz    (o o)
+.o. | Liege of Serenely Enlightened Majesty of      o' \,=3D./ `o
+..o | Computer Science,  Micha=C5=82 =E2=80=9Cmina86=E2=80=9D Nazarewicz   =
+ (o o)
 ooo +--<mpn@google.com>--<xmpp:mina86@jabber.org>--ooO--(_)--Ooo--
diff --git a/a/content_digest b/N1/content_digest
index 70c5eb8..c49593e 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -2,26 +2,25 @@
  "ref\01402543307-29800-10-git-send-email-iamjoonsoo.kim@lge.com\0"
  "From\0Michal Nazarewicz <mina86@mina86.com>\0"
  "Subject\0Re: [PATCH v2 09/10] mm, cma: move output param to the end of param list\0"
- "Date\0Thu, 12 Jun 2014 11:38:11 +0000\0"
+ "Date\0Thu, 12 Jun 2014 13:38:11 +0200\0"
  "To\0Joonsoo Kim <iamjoonsoo.kim@lge.com>"
   Andrew Morton <akpm@linux-foundation.org>
   Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
  " Marek Szyprowski <m.szyprowski@samsung.com>\0"
- "Cc\0Minchan Kim <minchan@kernel.org>"
-  Russell King - ARM Linux <linux@arm.linux.org.uk>
-  Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-  Paolo Bonzini <pbonzini@redhat.com>
+ "Cc\0Russell King - ARM Linux <linux@arm.linux.org.uk>"
+  kvm@vger.kernel.org
+  linux-mm@kvack.org
   Gleb Natapov <gleb@kernel.org>
+  Greg Kroah-Hartman <gregkh@linuxfoundation.org>
   Alexander Graf <agraf@suse.de>
-  Benjamin Herrenschmidt <benh@kernel.crashing.org>
-  Paul Mackerras <paulus@samba.org>
-  linux-mm@kvack.org
-  linux-kernel@vger.kernel.org
-  linux-arm-kernel@lists.infradead.org
-  kvm@vger.kernel.org
   kvm-ppc@vger.kernel.org
+  linux-kernel@vger.kernel.org
+  Minchan Kim <minchan@kernel.org>
+  Paul Mackerras <paulus@samba.org>
+  Paolo Bonzini <pbonzini@redhat.com>
+  Joonsoo Kim <iamjoonsoo.kim@lge.com>
   linuxppc-dev@lists.ozlabs.org
- " Joonsoo Kim <iamjoonsoo.kim@lge.com>\0"
+ " linux-arm-kernel@lists.infradead.org\0"
  "\00:1\0"
  "b\0"
  "On Thu, Jun 12 2014, Joonsoo Kim <iamjoonsoo.kim@lge.com> wrote:\n"
@@ -38,32 +37,34 @@
  "Acked-by: Michal Nazarewicz <mina86@mina86.com>\n"
  "\n"
  ">\n"
- "> diff --git a/arch/powerpc/kvm/book3s_hv_builtin.c b/arch/powerpc/kvm/book3s_hv_builtin.c\n"
+ "> diff --git a/arch/powerpc/kvm/book3s_hv_builtin.c b/arch/powerpc/kvm/book=\n"
+ "3s_hv_builtin.c\n"
  "> index 28ec226..97613ea 100644\n"
  "> --- a/arch/powerpc/kvm/book3s_hv_builtin.c\n"
  "> +++ b/arch/powerpc/kvm/book3s_hv_builtin.c\n"
  "> @@ -184,7 +184,7 @@ void __init kvm_cma_reserve(void)\n"
- ">  \n"
- ">  \t\talign_size = max(kvm_rma_pages << PAGE_SHIFT, align_size);\n"
+ ">=20=20\n"
+ ">  \t\talign_size =3D max(kvm_rma_pages << PAGE_SHIFT, align_size);\n"
  ">  \t\tcma_declare_contiguous(selected_size, 0, 0, align_size,\n"
  "> -\t\t\tKVM_CMA_CHUNK_ORDER - PAGE_SHIFT, &kvm_cma, false);\n"
  "> +\t\t\tKVM_CMA_CHUNK_ORDER - PAGE_SHIFT, false, &kvm_cma);\n"
  ">  \t}\n"
  ">  }\n"
- ">  \n"
+ ">=20=20\n"
  "> diff --git a/drivers/base/dma-contiguous.c b/drivers/base/dma-contiguous.c\n"
  "> index f177f73..bfd4553 100644\n"
  "> --- a/drivers/base/dma-contiguous.c\n"
  "> +++ b/drivers/base/dma-contiguous.c\n"
- "> @@ -149,7 +149,7 @@ int __init dma_contiguous_reserve_area(phys_addr_t size, phys_addr_t base,\n"
+ "> @@ -149,7 +149,7 @@ int __init dma_contiguous_reserve_area(phys_addr_t si=\n"
+ "ze, phys_addr_t base,\n"
  ">  {\n"
  ">  \tint ret;\n"
- ">  \n"
- "> -\tret = cma_declare_contiguous(size, base, limit, 0, 0, res_cma, fixed);\n"
- "> +\tret = cma_declare_contiguous(size, base, limit, 0, 0, fixed, res_cma);\n"
+ ">=20=20\n"
+ "> -\tret =3D cma_declare_contiguous(size, base, limit, 0, 0, res_cma, fixed);\n"
+ "> +\tret =3D cma_declare_contiguous(size, base, limit, 0, 0, fixed, res_cma);\n"
  ">  \tif (ret)\n"
  ">  \t\treturn ret;\n"
- ">  \n"
+ ">=20=20\n"
  "> diff --git a/include/linux/cma.h b/include/linux/cma.h\n"
  "> index e38efe9..e53eead 100644\n"
  "> --- a/include/linux/cma.h\n"
@@ -74,7 +75,8 @@
  ">  \t\t\t\tphys_addr_t alignment, int order_per_bit,\n"
  "> -\t\t\t\tstruct cma **res_cma, bool fixed);\n"
  "> +\t\t\t\tbool fixed, struct cma **res_cma);\n"
- ">  extern struct page *cma_alloc(struct cma *cma, int count, unsigned int align);\n"
+ ">  extern struct page *cma_alloc(struct cma *cma, int count, unsigned int a=\n"
+ "lign);\n"
  ">  extern bool cma_release(struct cma *cma, struct page *pages, int count);\n"
  ">  #endif\n"
  "> diff --git a/mm/cma.c b/mm/cma.c\n"
@@ -83,14 +85,16 @@
  "> +++ b/mm/cma.c\n"
  "> @@ -142,8 +142,8 @@ core_initcall(cma_init_reserved_areas);\n"
  ">   * @limit: End address of the reserved memory (optional, 0 for any).\n"
- ">   * @alignment: Alignment for the contiguous memory area, should be power of 2\n"
+ ">   * @alignment: Alignment for the contiguous memory area, should be power=\n"
+ " of 2\n"
  ">   * @order_per_bit: Order of pages represented by one bit on bitmap.\n"
  "> - * @res_cma: Pointer to store the created cma region.\n"
  ">   * @fixed: hint about where to place the reserved area\n"
  "> + * @res_cma: Pointer to store the created cma region.\n"
  ">   *\n"
  ">   * This function reserves memory from early allocator. It should be\n"
- ">   * called by arch specific code once the early allocator (memblock or bootmem)\n"
+ ">   * called by arch specific code once the early allocator (memblock or bo=\n"
+ "otmem)\n"
  "> @@ -156,9 +156,9 @@ core_initcall(cma_init_reserved_areas);\n"
  ">  int __init cma_declare_contiguous(phys_addr_t size,\n"
  ">  \t\t\t\tphys_addr_t base, phys_addr_t limit,\n"
@@ -98,27 +102,28 @@
  "> -\t\t\t\tstruct cma **res_cma, bool fixed)\n"
  "> +\t\t\t\tbool fixed, struct cma **res_cma)\n"
  ">  {\n"
- "> -\tstruct cma *cma = &cma_areas[cma_area_count];\n"
+ "> -\tstruct cma *cma =3D &cma_areas[cma_area_count];\n"
  "> +\tstruct cma *cma;\n"
- ">  \tint ret = 0;\n"
- ">  \n"
+ ">  \tint ret =3D 0;\n"
+ ">=20=20\n"
  ">  \tpr_debug(\"%s(size %lx, base %08lx, limit %08lx alignment %08lx)\\n\",\n"
  "> @@ -214,6 +214,7 @@ int __init cma_declare_contiguous(phys_addr_t size,\n"
  ">  \t * Each reserved area must be initialised later, when more kernel\n"
  ">  \t * subsystems (like slab allocator) are available.\n"
  ">  \t */\n"
- "> +\tcma = &cma_areas[cma_area_count];\n"
- ">  \tcma->base_pfn = PFN_DOWN(base);\n"
- ">  \tcma->count = size >> PAGE_SHIFT;\n"
- ">  \tcma->order_per_bit = order_per_bit;\n"
- "> -- \n"
+ "> +\tcma =3D &cma_areas[cma_area_count];\n"
+ ">  \tcma->base_pfn =3D PFN_DOWN(base);\n"
+ ">  \tcma->count =3D size >> PAGE_SHIFT;\n"
+ ">  \tcma->order_per_bit =3D order_per_bit;\n"
+ "> --=20\n"
  "> 1.7.9.5\n"
  ">\n"
  "\n"
- "-- \n"
+ "--=20\n"
  "Best regards,                                         _     _\n"
- ".o. | Liege of Serenely Enlightened Majesty of      o' \\,=./ `o\n"
- "..o | Computer Science,  Micha\305\202 \342\200\234mina86\342\200\235 Nazarewicz    (o o)\n"
+ ".o. | Liege of Serenely Enlightened Majesty of      o' \\,=3D./ `o\n"
+ "..o | Computer Science,  Micha=C5=82 =E2=80=9Cmina86=E2=80=9D Nazarewicz   =\n"
+ " (o o)\n"
  ooo +--<mpn@google.com>--<xmpp:mina86@jabber.org>--ooO--(_)--Ooo--
 
-6fe14c3fddc74682384b5e94222597ddb17535e35c8cd19016be9a345968193f
+1b0465b236dfb01bff8b3fab7291b6bdd43016c927a1e576b5d89597f0f6c00f

diff --git a/a/1.txt b/N2/1.txt
index 57f4729..701dd75 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -92,5 +92,5 @@ Acked-by: Michal Nazarewicz <mina86@mina86.com>
 -- 
 Best regards,                                         _     _
 .o. | Liege of Serenely Enlightened Majesty of      o' \,=./ `o
-..o | Computer Science,  Michał “mina86” Nazarewicz    (o o)
+..o | Computer Science,  Micha? ?mina86? Nazarewicz    (o o)
 ooo +--<mpn@google.com>--<xmpp:mina86@jabber.org>--ooO--(_)--Ooo--
diff --git a/a/content_digest b/N2/content_digest
index 70c5eb8..723272d 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -1,27 +1,9 @@
  "ref\01402543307-29800-1-git-send-email-iamjoonsoo.kim@lge.com\0"
  "ref\01402543307-29800-10-git-send-email-iamjoonsoo.kim@lge.com\0"
- "From\0Michal Nazarewicz <mina86@mina86.com>\0"
- "Subject\0Re: [PATCH v2 09/10] mm, cma: move output param to the end of param list\0"
- "Date\0Thu, 12 Jun 2014 11:38:11 +0000\0"
- "To\0Joonsoo Kim <iamjoonsoo.kim@lge.com>"
-  Andrew Morton <akpm@linux-foundation.org>
-  Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
- " Marek Szyprowski <m.szyprowski@samsung.com>\0"
- "Cc\0Minchan Kim <minchan@kernel.org>"
-  Russell King - ARM Linux <linux@arm.linux.org.uk>
-  Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-  Paolo Bonzini <pbonzini@redhat.com>
-  Gleb Natapov <gleb@kernel.org>
-  Alexander Graf <agraf@suse.de>
-  Benjamin Herrenschmidt <benh@kernel.crashing.org>
-  Paul Mackerras <paulus@samba.org>
-  linux-mm@kvack.org
-  linux-kernel@vger.kernel.org
-  linux-arm-kernel@lists.infradead.org
-  kvm@vger.kernel.org
-  kvm-ppc@vger.kernel.org
-  linuxppc-dev@lists.ozlabs.org
- " Joonsoo Kim <iamjoonsoo.kim@lge.com>\0"
+ "From\0mina86@mina86.com (Michal Nazarewicz)\0"
+ "Subject\0[PATCH v2 09/10] mm, cma: move output param to the end of param list\0"
+ "Date\0Thu, 12 Jun 2014 13:38:11 +0200\0"
+ "To\0linux-arm-kernel@lists.infradead.org\0"
  "\00:1\0"
  "b\0"
  "On Thu, Jun 12 2014, Joonsoo Kim <iamjoonsoo.kim@lge.com> wrote:\n"
@@ -118,7 +100,7 @@
  "-- \n"
  "Best regards,                                         _     _\n"
  ".o. | Liege of Serenely Enlightened Majesty of      o' \\,=./ `o\n"
- "..o | Computer Science,  Micha\305\202 \342\200\234mina86\342\200\235 Nazarewicz    (o o)\n"
+ "..o | Computer Science,  Micha? ?mina86? Nazarewicz    (o o)\n"
  ooo +--<mpn@google.com>--<xmpp:mina86@jabber.org>--ooO--(_)--Ooo--
 
-6fe14c3fddc74682384b5e94222597ddb17535e35c8cd19016be9a345968193f
+e42e88169c3b9b9f56055316c7dacc5b97a04b67a816d0bbeb1444beff914951

diff --git a/a/1.txt b/N3/1.txt
index 57f4729..5e06763 100644
--- a/a/1.txt
+++ b/N3/1.txt
@@ -94,3 +94,9 @@ Best regards,                                         _     _
 .o. | Liege of Serenely Enlightened Majesty of      o' \,=./ `o
 ..o | Computer Science,  Michał “mina86” Nazarewicz    (o o)
 ooo +--<mpn@google.com>--<xmpp:mina86@jabber.org>--ooO--(_)--Ooo--
+
+--
+To unsubscribe, send a message with 'unsubscribe linux-mm' in
+the body to majordomo@kvack.org.  For more info on Linux MM,
+see: http://www.linux-mm.org/ .
+Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
diff --git a/a/content_digest b/N3/content_digest
index 70c5eb8..4eaec21 100644
--- a/a/content_digest
+++ b/N3/content_digest
@@ -2,7 +2,7 @@
  "ref\01402543307-29800-10-git-send-email-iamjoonsoo.kim@lge.com\0"
  "From\0Michal Nazarewicz <mina86@mina86.com>\0"
  "Subject\0Re: [PATCH v2 09/10] mm, cma: move output param to the end of param list\0"
- "Date\0Thu, 12 Jun 2014 11:38:11 +0000\0"
+ "Date\0Thu, 12 Jun 2014 13:38:11 +0200\0"
  "To\0Joonsoo Kim <iamjoonsoo.kim@lge.com>"
   Andrew Morton <akpm@linux-foundation.org>
   Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
@@ -119,6 +119,12 @@
  "Best regards,                                         _     _\n"
  ".o. | Liege of Serenely Enlightened Majesty of      o' \\,=./ `o\n"
  "..o | Computer Science,  Micha\305\202 \342\200\234mina86\342\200\235 Nazarewicz    (o o)\n"
- ooo +--<mpn@google.com>--<xmpp:mina86@jabber.org>--ooO--(_)--Ooo--
+ "ooo +--<mpn@google.com>--<xmpp:mina86@jabber.org>--ooO--(_)--Ooo--\n"
+ "\n"
+ "--\n"
+ "To unsubscribe, send a message with 'unsubscribe linux-mm' in\n"
+ "the body to majordomo@kvack.org.  For more info on Linux MM,\n"
+ "see: http://www.linux-mm.org/ .\n"
+ "Don't email: <a href=mailto:\"dont@kvack.org\"> email@kvack.org </a>"
 
-6fe14c3fddc74682384b5e94222597ddb17535e35c8cd19016be9a345968193f
+707760cca0d6dc84e89667834149eb45561956a5609c168fb0767b72866cc70a

diff --git a/a/1.txt b/N4/1.txt
index 57f4729..5e06763 100644
--- a/a/1.txt
+++ b/N4/1.txt
@@ -94,3 +94,9 @@ Best regards,                                         _     _
 .o. | Liege of Serenely Enlightened Majesty of      o' \,=./ `o
 ..o | Computer Science,  Michał “mina86” Nazarewicz    (o o)
 ooo +--<mpn@google.com>--<xmpp:mina86@jabber.org>--ooO--(_)--Ooo--
+
+--
+To unsubscribe, send a message with 'unsubscribe linux-mm' in
+the body to majordomo@kvack.org.  For more info on Linux MM,
+see: http://www.linux-mm.org/ .
+Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
diff --git a/a/content_digest b/N4/content_digest
index 70c5eb8..ea130fd 100644
--- a/a/content_digest
+++ b/N4/content_digest
@@ -2,7 +2,7 @@
  "ref\01402543307-29800-10-git-send-email-iamjoonsoo.kim@lge.com\0"
  "From\0Michal Nazarewicz <mina86@mina86.com>\0"
  "Subject\0Re: [PATCH v2 09/10] mm, cma: move output param to the end of param list\0"
- "Date\0Thu, 12 Jun 2014 11:38:11 +0000\0"
+ "Date\0Thu, 12 Jun 2014 13:38:11 +0200\0"
  "To\0Joonsoo Kim <iamjoonsoo.kim@lge.com>"
   Andrew Morton <akpm@linux-foundation.org>
   Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
@@ -20,8 +20,7 @@
   linux-arm-kernel@lists.infradead.org
   kvm@vger.kernel.org
   kvm-ppc@vger.kernel.org
-  linuxppc-dev@lists.ozlabs.org
- " Joonsoo Kim <iamjoonsoo.kim@lge.com>\0"
+ " linuxppc-dev@lists.ozlabs.org\0"
  "\00:1\0"
  "b\0"
  "On Thu, Jun 12 2014, Joonsoo Kim <iamjoonsoo.kim@lge.com> wrote:\n"
@@ -119,6 +118,12 @@
  "Best regards,                                         _     _\n"
  ".o. | Liege of Serenely Enlightened Majesty of      o' \\,=./ `o\n"
  "..o | Computer Science,  Micha\305\202 \342\200\234mina86\342\200\235 Nazarewicz    (o o)\n"
- ooo +--<mpn@google.com>--<xmpp:mina86@jabber.org>--ooO--(_)--Ooo--
+ "ooo +--<mpn@google.com>--<xmpp:mina86@jabber.org>--ooO--(_)--Ooo--\n"
+ "\n"
+ "--\n"
+ "To unsubscribe, send a message with 'unsubscribe linux-mm' in\n"
+ "the body to majordomo@kvack.org.  For more info on Linux MM,\n"
+ "see: http://www.linux-mm.org/ .\n"
+ "Don't email: <a href=mailto:\"dont@kvack.org\"> email@kvack.org </a>"
 
-6fe14c3fddc74682384b5e94222597ddb17535e35c8cd19016be9a345968193f
+ffa0c1064f2982154116cd0814f26ab8b6a4f8ade183e90da728a659398e4542

diff --git a/a/content_digest b/N5/content_digest
index 70c5eb8..7a3e2ea 100644
--- a/a/content_digest
+++ b/N5/content_digest
@@ -2,7 +2,7 @@
  "ref\01402543307-29800-10-git-send-email-iamjoonsoo.kim@lge.com\0"
  "From\0Michal Nazarewicz <mina86@mina86.com>\0"
  "Subject\0Re: [PATCH v2 09/10] mm, cma: move output param to the end of param list\0"
- "Date\0Thu, 12 Jun 2014 11:38:11 +0000\0"
+ "Date\0Thu, 12 Jun 2014 13:38:11 +0200\0"
  "To\0Joonsoo Kim <iamjoonsoo.kim@lge.com>"
   Andrew Morton <akpm@linux-foundation.org>
   Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
@@ -121,4 +121,4 @@
  "..o | Computer Science,  Micha\305\202 \342\200\234mina86\342\200\235 Nazarewicz    (o o)\n"
  ooo +--<mpn@google.com>--<xmpp:mina86@jabber.org>--ooO--(_)--Ooo--
 
-6fe14c3fddc74682384b5e94222597ddb17535e35c8cd19016be9a345968193f
+25eeb01c28580b4478cf37c66f567c4428e6b85ab845540ea47d0592b0571077

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.