* [PATCH 1/5] zram: remove old private project comment
2013-12-17 6:11 [PATCH 0/5] zram/zsmalloc copyright and maintainers Minchan Kim
@ 2013-12-17 6:11 ` Minchan Kim
2013-12-17 6:12 ` [PATCH 2/5] zram: add copyright Minchan Kim
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Minchan Kim @ 2013-12-17 6:11 UTC (permalink / raw)
To: Andrew Morton
Cc: Nitin Gupta, linux-kernel, Jens Axboe, linux-mm, Minchan Kim
This patch removes old private compcache project address so
upcoming patches should be sent to LKML because we Linux kernel
community will take care.
Cc: Nitin Gupta <ngupta@vflare.org>
Signed-off-by: Minchan Kim <minchan@kernel.org>
---
Documentation/blockdev/zram.txt | 6 ------
drivers/block/zram/Kconfig | 1 -
drivers/block/zram/zram_drv.c | 1 -
drivers/block/zram/zram_drv.h | 1 -
4 files changed, 9 deletions(-)
diff --git a/Documentation/blockdev/zram.txt b/Documentation/blockdev/zram.txt
index 765d790ae831..2eccddffa6c8 100644
--- a/Documentation/blockdev/zram.txt
+++ b/Documentation/blockdev/zram.txt
@@ -1,8 +1,6 @@
zram: Compressed RAM based block devices
----------------------------------------
-Project home: http://compcache.googlecode.com/
-
* Introduction
The zram module creates RAM based block devices named /dev/zram<id>
@@ -69,9 +67,5 @@ Following shows a typical sequence of steps for using zram.
resets the disksize to zero. You must set the disksize again
before reusing the device.
-Please report any problems at:
- - Mailing list: linux-mm-cc at laptop dot org
- - Issue tracker: http://code.google.com/p/compcache/issues/list
-
Nitin Gupta
ngupta@vflare.org
diff --git a/drivers/block/zram/Kconfig b/drivers/block/zram/Kconfig
index 983314c41349..3450be850399 100644
--- a/drivers/block/zram/Kconfig
+++ b/drivers/block/zram/Kconfig
@@ -14,7 +14,6 @@ config ZRAM
disks and maybe many more.
See zram.txt for more information.
- Project home: <https://compcache.googlecode.com/>
config ZRAM_DEBUG
bool "Compressed RAM block device debug support"
diff --git a/drivers/block/zram/zram_drv.c b/drivers/block/zram/zram_drv.c
index 108f2733106d..134d605836ca 100644
--- a/drivers/block/zram/zram_drv.c
+++ b/drivers/block/zram/zram_drv.c
@@ -9,7 +9,6 @@
* Released under the terms of 3-clause BSD License
* Released under the terms of GNU General Public License Version 2.0
*
- * Project home: http://compcache.googlecode.com
*/
#define KMSG_COMPONENT "zram"
diff --git a/drivers/block/zram/zram_drv.h b/drivers/block/zram/zram_drv.h
index d8f6596513c3..92f70e8f457c 100644
--- a/drivers/block/zram/zram_drv.h
+++ b/drivers/block/zram/zram_drv.h
@@ -9,7 +9,6 @@
* Released under the terms of 3-clause BSD License
* Released under the terms of GNU General Public License Version 2.0
*
- * Project home: http://compcache.googlecode.com
*/
#ifndef _ZRAM_DRV_H_
--
1.7.9.5
--
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>
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/5] zram: add copyright
2013-12-17 6:11 [PATCH 0/5] zram/zsmalloc copyright and maintainers Minchan Kim
2013-12-17 6:11 ` [PATCH 1/5] zram: remove old private project comment Minchan Kim
@ 2013-12-17 6:12 ` Minchan Kim
2013-12-17 6:12 ` [PATCH 3/5] zsmalloc: " Minchan Kim
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Minchan Kim @ 2013-12-17 6:12 UTC (permalink / raw)
To: Andrew Morton
Cc: Nitin Gupta, linux-kernel, Jens Axboe, linux-mm, Minchan Kim
Add my copyright to the zram source code which I maintain.
Cc: Nitin Gupta <ngupta@vflare.org>
Signed-off-by: Minchan Kim <minchan@kernel.org>
---
drivers/block/zram/zram_drv.c | 1 +
drivers/block/zram/zram_drv.h | 1 +
2 files changed, 2 insertions(+)
diff --git a/drivers/block/zram/zram_drv.c b/drivers/block/zram/zram_drv.c
index 134d605836ca..f9711c520269 100644
--- a/drivers/block/zram/zram_drv.c
+++ b/drivers/block/zram/zram_drv.c
@@ -2,6 +2,7 @@
* Compressed RAM block device
*
* Copyright (C) 2008, 2009, 2010 Nitin Gupta
+ * 2012, 2013 Minchan Kim
*
* This code is released using a dual license strategy: BSD/GPL
* You can choose the licence that better fits your requirements.
diff --git a/drivers/block/zram/zram_drv.h b/drivers/block/zram/zram_drv.h
index 92f70e8f457c..0e46953c08e9 100644
--- a/drivers/block/zram/zram_drv.h
+++ b/drivers/block/zram/zram_drv.h
@@ -2,6 +2,7 @@
* Compressed RAM block device
*
* Copyright (C) 2008, 2009, 2010 Nitin Gupta
+ * 2012, 2013 Minchan Kim
*
* This code is released using a dual license strategy: BSD/GPL
* You can choose the licence that better fits your requirements.
--
1.7.9.5
--
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>
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 3/5] zsmalloc: add copyright
2013-12-17 6:11 [PATCH 0/5] zram/zsmalloc copyright and maintainers Minchan Kim
2013-12-17 6:11 ` [PATCH 1/5] zram: remove old private project comment Minchan Kim
2013-12-17 6:12 ` [PATCH 2/5] zram: add copyright Minchan Kim
@ 2013-12-17 6:12 ` Minchan Kim
2013-12-17 6:12 ` [PATCH 4/5] zram: add zram maintainers Minchan Kim
2013-12-17 6:12 ` [PATCH 5/5] zsmalloc: add maintainers Minchan Kim
4 siblings, 0 replies; 6+ messages in thread
From: Minchan Kim @ 2013-12-17 6:12 UTC (permalink / raw)
To: Andrew Morton
Cc: Nitin Gupta, linux-kernel, Jens Axboe, linux-mm, Minchan Kim
Add my copyright to the zsmalloc source code which I maintain.
Cc: Nitin Gupta <ngupta@vflare.org>
Signed-off-by: Minchan Kim <minchan@kernel.org>
---
include/linux/zsmalloc.h | 1 +
mm/zsmalloc.c | 1 +
2 files changed, 2 insertions(+)
diff --git a/include/linux/zsmalloc.h b/include/linux/zsmalloc.h
index c2eb174b97ee..e44d634e7fb7 100644
--- a/include/linux/zsmalloc.h
+++ b/include/linux/zsmalloc.h
@@ -2,6 +2,7 @@
* zsmalloc memory allocator
*
* Copyright (C) 2011 Nitin Gupta
+ * Copyright (C) 2012, 2013 Minchan Kim
*
* This code is released using a dual license strategy: BSD/GPL
* You can choose the license that better fits your requirements.
diff --git a/mm/zsmalloc.c b/mm/zsmalloc.c
index 0202716ff6c2..faa6fd801110 100644
--- a/mm/zsmalloc.c
+++ b/mm/zsmalloc.c
@@ -2,6 +2,7 @@
* zsmalloc memory allocator
*
* Copyright (C) 2011 Nitin Gupta
+ * Copyright (C) 2012, 2013 Minchan Kim
*
* This code is released using a dual license strategy: BSD/GPL
* You can choose the license that better fits your requirements.
--
1.7.9.5
--
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>
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 4/5] zram: add zram maintainers
2013-12-17 6:11 [PATCH 0/5] zram/zsmalloc copyright and maintainers Minchan Kim
` (2 preceding siblings ...)
2013-12-17 6:12 ` [PATCH 3/5] zsmalloc: " Minchan Kim
@ 2013-12-17 6:12 ` Minchan Kim
2013-12-17 6:12 ` [PATCH 5/5] zsmalloc: add maintainers Minchan Kim
4 siblings, 0 replies; 6+ messages in thread
From: Minchan Kim @ 2013-12-17 6:12 UTC (permalink / raw)
To: Andrew Morton
Cc: Nitin Gupta, linux-kernel, Jens Axboe, linux-mm, Minchan Kim
This patch adds maintainer information for zram into the MAINTAINERS
file.
Cc: Nitin Gupta <ngupta@vflare.org>
Signed-off-by: Minchan Kim <minchan@kernel.org>
---
MAINTAINERS | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index d077c89b0440..7b32aa4b5f04 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -9692,6 +9692,14 @@ T: Mercurial http://linuxtv.org/hg/v4l-dvb
S: Odd Fixes
F: drivers/media/pci/zoran/
+ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
+M: Minchan Kim <minchan@kernel.org>
+M: Nitin Gupta <ngupta@vflare.org>
+L: linux-kernel@vger.kernel.org
+S: Maintained
+F: drivers/block/zram/
+F: Documentation/blockdev/zram.txt
+
ZS DECSTATION Z85C30 SERIAL DRIVER
M: "Maciej W. Rozycki" <macro@linux-mips.org>
S: Maintained
--
1.7.9.5
--
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>
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 5/5] zsmalloc: add maintainers
2013-12-17 6:11 [PATCH 0/5] zram/zsmalloc copyright and maintainers Minchan Kim
` (3 preceding siblings ...)
2013-12-17 6:12 ` [PATCH 4/5] zram: add zram maintainers Minchan Kim
@ 2013-12-17 6:12 ` Minchan Kim
4 siblings, 0 replies; 6+ messages in thread
From: Minchan Kim @ 2013-12-17 6:12 UTC (permalink / raw)
To: Andrew Morton
Cc: Nitin Gupta, linux-kernel, Jens Axboe, linux-mm, Minchan Kim
This patch adds maintainer information for zsmalloc into
the MAINTAINERS file.
Cc: Nitin Gupta <ngupta@vflare.org>
Signed-off-by: Minchan Kim <minchan@kernel.org>
---
MAINTAINERS | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index 7b32aa4b5f04..af237d331765 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -9705,6 +9705,14 @@ M: "Maciej W. Rozycki" <macro@linux-mips.org>
S: Maintained
F: drivers/tty/serial/zs.*
+ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
+M: Minchan Kim <minchan@kernel.org>
+M: Nitin Gupta <ngupta@vflare.org>
+L: linux-mm@kvack.org
+S: Maintained
+F: mm/zsmalloc.c
+F: include/linux/zsmalloc.h
+
ZSWAP COMPRESSED SWAP CACHING
M: Seth Jennings <sjenning@linux.vnet.ibm.com>
L: linux-mm@kvack.org
--
1.7.9.5
--
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>
^ permalink raw reply related [flat|nested] 6+ messages in thread