linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Ceph fixes for -rc5
@ 2014-05-05 20:33 Sage Weil
  0 siblings, 0 replies; 5+ messages in thread
From: Sage Weil @ 2014-05-05 20:33 UTC (permalink / raw)
  To: torvalds; +Cc: ceph-devel, linux-kernel

Hi Linus,

Please pull the following Ceph fixes from

  git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git for-linus

First, there is a critical fix for the new primary-affinity function that 
went into -rc1.  The second batch of patches from Zheng fix a range of 
problems with directory fragmentation, readdir, and a few odds and ends 
for cephfs.

Thanks!
sage


----------------------------------------------------------------
Ilya Dryomov (1):
      libceph: fix non-default values check in apply_primary_affinity()

Yan, Zheng (5):
      ceph: check directory's completeness before emitting directory entry
      ceph: use fpos_cmp() to compare dentry positions
      ceph: clear directory's completeness when creating file
      ceph: avoid releasing caps that are being used
      ceph: reserve caps for file layout/lock MDS requests

 fs/ceph/caps.c    |    2 +-
 fs/ceph/dir.c     |   33 ++++++++++++++-----------
 fs/ceph/inode.c   |   71 ++++++++++++-----------------------------------------
 fs/ceph/ioctl.c   |    3 +++
 fs/ceph/locks.c   |    1 +
 fs/ceph/super.h   |    1 -
 net/ceph/osdmap.c |    9 ++++---
 7 files changed, 44 insertions(+), 76 deletions(-)

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

* Re: [GIT PULL] Ceph fixes for -rc5
  2015-05-23  0:41 ` Linus Torvalds
@ 2015-05-23  3:52   ` Sage Weil
  0 siblings, 0 replies; 5+ messages in thread
From: Sage Weil @ 2015-05-23  3:52 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: ceph-devel, Linux Kernel Mailing List

On Fri, 22 May 2015, Linus Torvalds wrote:
> On Fri, May 22, 2015 at 5:13 PM, Sage Weil <sweil@redhat.com> wrote:
> > Hi Linus,
> >
> > Please pull the following fixes from
> >
> >   git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
> 
> Nothing there.
> 
> Did you perhaps mean the "for-linus" branch?
> 
> Please fix whatever script it is you use that generates bad pull requests.

Bah, I forgot to push the for-linus branch--it's there now.  Sorry!

(BTW, git://git.kernel.org is going really slowly today... :/)

Thanks-
sage

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

* Re: [GIT PULL] Ceph fixes for -rc5
  2015-05-23  0:13 Sage Weil
@ 2015-05-23  0:41 ` Linus Torvalds
  2015-05-23  3:52   ` Sage Weil
  0 siblings, 1 reply; 5+ messages in thread
From: Linus Torvalds @ 2015-05-23  0:41 UTC (permalink / raw)
  To: Sage Weil; +Cc: ceph-devel, Linux Kernel Mailing List

On Fri, May 22, 2015 at 5:13 PM, Sage Weil <sweil@redhat.com> wrote:
> Hi Linus,
>
> Please pull the following fixes from
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git

Nothing there.

Did you perhaps mean the "for-linus" branch?

Please fix whatever script it is you use that generates bad pull requests.

               Linus

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

* [GIT PULL] Ceph fixes for -rc5
@ 2015-05-23  0:13 Sage Weil
  2015-05-23  0:41 ` Linus Torvalds
  0 siblings, 1 reply; 5+ messages in thread
From: Sage Weil @ 2015-05-23  0:13 UTC (permalink / raw)
  To: torvalds; +Cc: ceph-devel, linux-kernel

Hi Linus,

Please pull the following fixes from

  git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git 

These fix an issue with the RBD notifications when there are topology 
changes in the cluster.

Thanks!
sage


----------------------------------------------------------------
Ilya Dryomov (2):
      libceph: request a new osdmap if lingering request maps to no osd
      Revert "libceph: clear r_req_lru_item in __unregister_linger_request()"

 net/ceph/osd_client.c | 33 ++++++++++++++++++++-------------
 1 file changed, 20 insertions(+), 13 deletions(-)

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

* [GIT PULL] Ceph fixes for -rc5
@ 2014-11-13 21:18 Sage Weil
  0 siblings, 0 replies; 5+ messages in thread
From: Sage Weil @ 2014-11-13 21:18 UTC (permalink / raw)
  To: torvalds; +Cc: ceph-devel, linux-kernel

Hi Linus,

Please pull the following Ceph fixes from

  git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git for-linus

There is an overflow bug fix for cephfs from Zheng, a fix for handling 
large authentication ticket buffers in libceph from Ilya, and a few fixes 
for the request handling code from Ilya that affect RBD volumes.

Thanks!
sage

----------------------------------------------------------------
Ilya Dryomov (4):
      libceph: do not crash on large auth tickets
      libceph: unlink from o_linger_requests when clearing r_osd
      libceph: clear r_req_lru_item in __unregister_linger_request()
      libceph: change from BUG to WARN for __remove_osd() asserts

Yan, Zheng (1):
      ceph: fix flush tid comparision

 fs/ceph/caps.c        |    2 +-
 net/ceph/crypto.c     |  169 ++++++++++++++++++++++++++++++++++++++-----------
 net/ceph/osd_client.c |    7 +-
 3 files changed, 138 insertions(+), 40 deletions(-)

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

end of thread, other threads:[~2015-05-23  3:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-05 20:33 [GIT PULL] Ceph fixes for -rc5 Sage Weil
2014-11-13 21:18 Sage Weil
2015-05-23  0:13 Sage Weil
2015-05-23  0:41 ` Linus Torvalds
2015-05-23  3:52   ` Sage Weil

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).