All of lore.kernel.org
 help / color / mirror / Atom feed
* small MAINTAINERS and copyright updates
@ 2020-12-10  7:55 Christoph Hellwig
  2020-12-10  7:55 ` [PATCH 1/3] MAINTAINERS: add fs/block_dev.c to the block section Christoph Hellwig
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Christoph Hellwig @ 2020-12-10  7:55 UTC (permalink / raw)
  To: Jens Axboe; +Cc: linux-block

Hi Jens,

a small touchup for MAINTAINERS and Copyright updates for some of my
larger rewrites in the last years.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH 1/3] MAINTAINERS: add fs/block_dev.c to the block section
  2020-12-10  7:55 small MAINTAINERS and copyright updates Christoph Hellwig
@ 2020-12-10  7:55 ` Christoph Hellwig
  2020-12-10  7:55 ` [PATCH 2/3] block: remove a pointless self-reference in block_dev.c Christoph Hellwig
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Christoph Hellwig @ 2020-12-10  7:55 UTC (permalink / raw)
  To: Jens Axboe; +Cc: linux-block

fs/block_dev.c is a pretty integral part of the block layer, so make
sure it is mentioned in MAINTAINERS.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index e451dcce054f00..49ebab558139c2 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -3192,6 +3192,7 @@ S:	Maintained
 T:	git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
 F:	block/
 F:	drivers/block/
+F:	fs/block_dev.c
 F:	include/linux/blk*
 F:	kernel/trace/blktrace.c
 F:	lib/sbitmap.c
-- 
2.29.2


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH 2/3] block: remove a pointless self-reference in block_dev.c
  2020-12-10  7:55 small MAINTAINERS and copyright updates Christoph Hellwig
  2020-12-10  7:55 ` [PATCH 1/3] MAINTAINERS: add fs/block_dev.c to the block section Christoph Hellwig
@ 2020-12-10  7:55 ` Christoph Hellwig
  2020-12-10  7:55 ` [PATCH 3/3] block: update some copyrights Christoph Hellwig
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Christoph Hellwig @ 2020-12-10  7:55 UTC (permalink / raw)
  To: Jens Axboe; +Cc: linux-block

There is no point in duplicating the file name in the top of the file
comment.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 fs/block_dev.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/fs/block_dev.c b/fs/block_dev.c
index 9e56ee1f265230..d2fa5009d5a481 100644
--- a/fs/block_dev.c
+++ b/fs/block_dev.c
@@ -1,7 +1,5 @@
 // SPDX-License-Identifier: GPL-2.0-only
 /*
- *  linux/fs/block_dev.c
- *
  *  Copyright (C) 1991, 1992  Linus Torvalds
  *  Copyright (C) 2001  Andrea Arcangeli <andrea@suse.de> SuSE
  */
-- 
2.29.2


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH 3/3] block: update some copyrights
  2020-12-10  7:55 small MAINTAINERS and copyright updates Christoph Hellwig
  2020-12-10  7:55 ` [PATCH 1/3] MAINTAINERS: add fs/block_dev.c to the block section Christoph Hellwig
  2020-12-10  7:55 ` [PATCH 2/3] block: remove a pointless self-reference in block_dev.c Christoph Hellwig
@ 2020-12-10  7:55 ` Christoph Hellwig
  2020-12-10  8:32 ` small MAINTAINERS and copyright updates Johannes Thumshirn
  2020-12-22 13:16 ` Christoph Hellwig
  4 siblings, 0 replies; 7+ messages in thread
From: Christoph Hellwig @ 2020-12-10  7:55 UTC (permalink / raw)
  To: Jens Axboe; +Cc: linux-block

Update copyrights for files that have gotten some major rewrites lately.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 block/genhd.c           | 2 ++
 block/partitions/core.c | 1 +
 fs/block_dev.c          | 1 +
 3 files changed, 4 insertions(+)

diff --git a/block/genhd.c b/block/genhd.c
index b84b8671e6270a..73faec438e49a8 100644
--- a/block/genhd.c
+++ b/block/genhd.c
@@ -1,6 +1,8 @@
 // SPDX-License-Identifier: GPL-2.0
 /*
  *  gendisk handling
+ *
+ * Portions Copyright (C) 2020 Christoph Hellwig
  */
 
 #include <linux/module.h>
diff --git a/block/partitions/core.c b/block/partitions/core.c
index deca253583bd3f..e7d776db803b12 100644
--- a/block/partitions/core.c
+++ b/block/partitions/core.c
@@ -2,6 +2,7 @@
 /*
  * Copyright (C) 1991-1998  Linus Torvalds
  * Re-organised Feb 1998 Russell King
+ * Copyright (C) 2020 Christoph Hellwig
  */
 #include <linux/fs.h>
 #include <linux/slab.h>
diff --git a/fs/block_dev.c b/fs/block_dev.c
index d2fa5009d5a481..9293045e128cdc 100644
--- a/fs/block_dev.c
+++ b/fs/block_dev.c
@@ -2,6 +2,7 @@
 /*
  *  Copyright (C) 1991, 1992  Linus Torvalds
  *  Copyright (C) 2001  Andrea Arcangeli <andrea@suse.de> SuSE
+ *  Copyright (C) 2016 - 2020 Christoph Hellwig
  */
 
 #include <linux/init.h>
-- 
2.29.2


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: small MAINTAINERS and copyright updates
  2020-12-10  7:55 small MAINTAINERS and copyright updates Christoph Hellwig
                   ` (2 preceding siblings ...)
  2020-12-10  7:55 ` [PATCH 3/3] block: update some copyrights Christoph Hellwig
@ 2020-12-10  8:32 ` Johannes Thumshirn
  2020-12-22 13:16 ` Christoph Hellwig
  4 siblings, 0 replies; 7+ messages in thread
From: Johannes Thumshirn @ 2020-12-10  8:32 UTC (permalink / raw)
  To: Christoph Hellwig, Jens Axboe; +Cc: linux-block

On 10/12/2020 08:57, Christoph Hellwig wrote:
> Hi Jens,
> 
> a small touchup for MAINTAINERS and Copyright updates for some of my
> larger rewrites in the last years.
> 

Looks good, for the whole series:
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: small MAINTAINERS and copyright updates
  2020-12-10  7:55 small MAINTAINERS and copyright updates Christoph Hellwig
                   ` (3 preceding siblings ...)
  2020-12-10  8:32 ` small MAINTAINERS and copyright updates Johannes Thumshirn
@ 2020-12-22 13:16 ` Christoph Hellwig
  2020-12-22 15:42   ` Jens Axboe
  4 siblings, 1 reply; 7+ messages in thread
From: Christoph Hellwig @ 2020-12-22 13:16 UTC (permalink / raw)
  To: Jens Axboe; +Cc: linux-block

Jens,

can you please still pick this up?

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: small MAINTAINERS and copyright updates
  2020-12-22 13:16 ` Christoph Hellwig
@ 2020-12-22 15:42   ` Jens Axboe
  0 siblings, 0 replies; 7+ messages in thread
From: Jens Axboe @ 2020-12-22 15:42 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: linux-block

On 12/22/20 6:16 AM, Christoph Hellwig wrote:
> Jens,
> 
> can you please still pick this up?

Yep, added for 5.11 pending.

-- 
Jens Axboe


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2020-12-22 15:43 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-10  7:55 small MAINTAINERS and copyright updates Christoph Hellwig
2020-12-10  7:55 ` [PATCH 1/3] MAINTAINERS: add fs/block_dev.c to the block section Christoph Hellwig
2020-12-10  7:55 ` [PATCH 2/3] block: remove a pointless self-reference in block_dev.c Christoph Hellwig
2020-12-10  7:55 ` [PATCH 3/3] block: update some copyrights Christoph Hellwig
2020-12-10  8:32 ` small MAINTAINERS and copyright updates Johannes Thumshirn
2020-12-22 13:16 ` Christoph Hellwig
2020-12-22 15:42   ` Jens Axboe

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.