1. 11 2月, 2010 1 次提交
  2. 26 1月, 2010 3 次提交
  3. 24 12月, 2009 3 次提交
    • S
      ceph: support ceph_pagelist for message payload · 58bb3b37
      Sage Weil 提交于
      The ceph_pagelist is a simple list of whole pages, strung together via
      their lru list_head.  It facilitates encoding to a "buffer" of unknown
      size.  Allow its use in place of the ceph_msg page vector.
      
      This will be used to fix the huge buffer preallocation woes of MDS
      reconnection.
      Signed-off-by: NSage Weil <sage@newdream.net>
      58bb3b37
    • S
      ceph: control access to page vector for incoming data · 350b1c32
      Sage Weil 提交于
      When we issue an OSD read, we specify a vector of pages that the data is to
      be read into.  The request may be sent multiple times, to multiple OSDs, if
      the osdmap changes, which means we can get more than one reply.
      
      Only read data into the page vector if the reply is coming from the
      OSD we last sent the request to.  Keep track of which connection is using
      the vector by taking a reference.  If another connection was already
      using the vector before and a new reply comes in on the right connection,
      revoke the pages from the other connection.
      Signed-off-by: NSage Weil <sage@newdream.net>
      350b1c32
    • S
      ceph: use connection mutex to protect read and write stages · ec302645
      Sage Weil 提交于
      Use a single mutex (previously out_mutex) to protect both read and write
      activity from concurrent ceph_con_* calls.  Drop the mutex when doing
      callbacks to avoid nested locking (the callback may need to call something
      like ceph_con_close).
      Signed-off-by: NSage Weil <sage@newdream.net>
      ec302645
  4. 22 12月, 2009 2 次提交
  5. 08 12月, 2009 1 次提交
  6. 19 11月, 2009 2 次提交
    • S
      ceph: negotiate authentication protocol; implement AUTH_NONE protocol · 4e7a5dcd
      Sage Weil 提交于
      When we open a monitor session, we send an initial AUTH message listing
      the auth protocols we support, our entity name, and (possibly) a previously
      assigned global_id.  The monitor chooses a protocol and responds with an
      initial message.
      
      Initially implement AUTH_NONE, a dummy protocol that provides no security,
      but works within the new framework.  It generates 'authorizers' that are
      used when connecting to (mds, osd) services that simply state our entity
      name and global_id.
      
      This is a wire protocol change.
      Signed-off-by: NSage Weil <sage@newdream.net>
      4e7a5dcd
    • S
      ceph: remove bad calls to ceph_con_shutdown · 42ce56e5
      Sage Weil 提交于
      We want to ceph_con_close when we're done with the connection, before
      the ref count reaches 0.  Once it does, do not call ceph_con_shutdown,
      as that takes the con mutex and may sleep, and besides that is
      unnecessary.
      Signed-off-by: NSage Weil <sage@newdream.net>
      42ce56e5
  7. 11 11月, 2009 1 次提交
  8. 04 11月, 2009 1 次提交
  9. 07 10月, 2009 1 次提交
    • S
      ceph: messenger library · 31b8006e
      Sage Weil 提交于
      A generic message passing library is used to communicate with all
      other components in the Ceph file system.  The messenger library
      provides ordered, reliable delivery of messages between two nodes in
      the system.
      
      This implementation is based on TCP.
      Signed-off-by: NSage Weil <sage@newdream.net>
      31b8006e