All of lore.kernel.org
 help / color / mirror / Atom feed
From: Joe Perches <joe@perches.com>
To: Kent Overstreet <kent.overstreet@gmail.com>
Cc: LKML <linux-kernel@vger.kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>
Subject: [possible PATCH -next] MAINTAINERS: BCACHE: Kent Overstreet has changed email address
Date: Tue, 19 May 2015 18:44:51 -0700	[thread overview]
Message-ID: <1432086291.2870.248.camel@perches.com> (raw)

[-- 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


                 reply	other threads:[~2015-05-20  1:45 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1432086291.2870.248.camel@perches.com \
    --to=joe@perches.com \
    --cc=akpm@linux-foundation.org \
    --cc=kent.overstreet@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.