All of lore.kernel.org
 help / color / mirror / Atom feed
* [possible PATCH -next] MAINTAINERS: BCACHE: Kent Overstreet has changed email address
@ 2015-05-20  1:44 Joe Perches
  0 siblings, 0 replies; only message in thread
From: Joe Perches @ 2015-05-20  1:44 UTC (permalink / raw)
  To: Kent Overstreet; +Cc: LKML, Andrew Morton

[-- Attachment #1: Type: text/plain, Size: 1024 bytes --]

Kent's email address in MAINTAINERS seems to be invalid.
This was his last sign-off address, so use that if appropriate.

Fix the S: status entry while there.

Signed-off-by: Joe Perches <joe@perches.com>
---

-------- Forwarded Message --------
From: Mail Delivery System <MAILER-DAEMON@smtprelay08.hostedemail.com>
<kmo@daterainc.com>: host ASPMX.L.GOOGLE.com[173.194.74.26] said: 550 5.2.1 The
    email account that you tried to reach is disabled. z8si13175546icd.87 -
    gsmtp (in reply to RCPT TO command)

 MAINTAINERS | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 86d9398..d36e9ac 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -2001,10 +2001,10 @@ S:	Maintained
 F:	drivers/net/hamradio/baycom*
 
 BCACHE (BLOCK LAYER CACHE)
-M:	Kent Overstreet <kmo@daterainc.com>
+M:	Kent Overstreet <kent.overstreet@gmail.com>
 L:	linux-bcache@vger.kernel.org
 W:	http://bcache.evilpiepirate.org
-S:	Maintained:
+S:	Maintained
 F:	drivers/md/bcache/
 
 BEFS FILE SYSTEM


[-- Attachment #2: Delivery report --]
[-- Type: message/delivery-status, Size: 447 bytes --]

[-- Attachment #3: Undelivered Message --]
[-- Type: message/rfc822, Size: 2274 bytes --]

From: Joe Perches <joe@perches.com>
To: linux-kernel@vger.kernel.org, Kent Overstreet <kmo@daterainc.com>
Cc: Neil Brown <neilb@suse.de>, linux-bcache@vger.kernel.org, linux-raid@vger.kernel.org
Subject: [PATCH 06/12] bcache: Use DECLARE_BITMAP
Date: Tue, 19 May 2015 18:37:54 -0700
Message-ID: <2622d6778aa6c62b47b3e686f06a39fda4d1879e.1432085659.git.joe@perches.com>

Use the generic mechanism to declare a bitmap instead of unsigned long.

Signed-off-by: Joe Perches <joe@perches.com>
---
 drivers/md/bcache/journal.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/md/bcache/journal.c b/drivers/md/bcache/journal.c
index fe080ad..ce64fc8 100644
--- a/drivers/md/bcache/journal.c
+++ b/drivers/md/bcache/journal.c
@@ -157,7 +157,7 @@ int bch_journal_read(struct cache_set *c, struct list_head *list)
 
 	for_each_cache(ca, c, iter) {
 		struct journal_device *ja = &ca->journal;
-		unsigned long bitmap[SB_JOURNAL_BUCKETS / BITS_PER_LONG];
+		DECLARE_BITMAP(bitmap, SB_JOURNAL_BUCKETS);
 		unsigned i, l, r, m;
 		uint64_t seq;
 
-- 
2.1.2


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2015-05-20  1:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-20  1:44 [possible PATCH -next] MAINTAINERS: BCACHE: Kent Overstreet has changed email address Joe Perches

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.