22 Mar, 2011

2 commits


04 Mar, 2011

1 commit


22 Feb, 2011

1 commit


20 Feb, 2011

1 commit

  • When creating a new dentry we now hold a reference to the parent
    inode in the ceph_dentry. This is required due to the new RCU
    changes from 949854d0, which set dentry->d_parent to NULL in d_kill before
    calling the ->release() callback. If/when that behavior is changed, we can
    revert this hack.

    Signed-off-by: Yehuda Sadeh
    Signed-off-by: Sage Weil

    Yehuda Sadeh
     

14 Jan, 2011

1 commit

  • * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client:
    rbd: fix cleanup when trying to mount inexistent image
    net/ceph: make ceph_msgr_wq non-reentrant
    ceph: fsc->*_wq's aren't used in memory reclaim path
    ceph: Always free allocated memory in osdmap_decode()
    ceph: Makefile: Remove unnessary code
    ceph: associate requests with opening sessions
    ceph: drop redundant r_mds field
    ceph: implement DIRLAYOUTHASH feature to get dir layout from MDS
    ceph: add dir_layout to inode

    Linus Torvalds
     

13 Jan, 2011

1 commit

  • Add a ceph_dir_layout to the inode, and calculate dentry hash values based
    on the parent directory's specified dir_hash function. This is needed
    because the old default Linux dcache hash function is extremely week and
    leads to a poor distribution of files among dir fragments.

    Signed-off-by: Sage Weil

    Sage Weil
     

07 Jan, 2011

1 commit


08 Nov, 2010

1 commit

  • We used to use rdcache_gen to indicate whether we "might" have cached
    pages. Now we just look at the mapping to determine that. However, some
    old behavior remains from that transition.

    First, rdcache_gen == 0 no longer means we have no pages. That can happen
    at any time (presumably when we carry FILE_CACHE). We should not reset it
    to zero, and we should not check that it is zero.

    That means that the only purpose for rdcache_revoking is to resolve races
    between new issues of FILE_CACHE and an async invalidate. If they are
    equal, we should invalidate. On success, we decrement rdcache_revoking,
    so that it is no longer equal to rdcache_gen. Similarly, if we success
    in doing a sync invalidate, set revoking = gen - 1. (This is a small
    optimization to avoid doing unnecessary invalidate work and does not
    affect correctness.)

    Signed-off-by: Sage Weil

    Sage Weil
     

21 Oct, 2010

2 commits

  • We were taking dcache_lock inside of i_lock, which introduces a dependency
    not found elsewhere in the kernel, complicationg the vfs locking
    scalability work. Since we don't actually need it here anyway, remove
    it.

    We only need i_lock to test for the I_COMPLETE flag, so be careful to do
    so without dcache_lock held.

    Signed-off-by: Sage Weil

    Sage Weil
     
  • This factors out protocol and low-level storage parts of ceph into a
    separate libceph module living in net/ceph and include/linux/ceph. This
    is mostly a matter of moving files around. However, a few key pieces
    of the interface change as well:

    - ceph_client becomes ceph_fs_client and ceph_client, where the latter
    captures the mon and osd clients, and the fs_client gets the mds client
    and file system specific pieces.
    - Mount option parsing and debugfs setup is correspondingly broken into
    two pieces.
    - The mon client gets a generic handler callback for otherwise unknown
    messages (mds map, in this case).
    - The basic supported/required feature bits can be expanded (and are by
    ceph_fs_client).

    No functional change, aside from some subtle error handling cases that got
    cleaned up in the refactoring process.

    Signed-off-by: Sage Weil

    Yehuda Sadeh
     

17 Sep, 2010

2 commits

  • Sending multiple flushsnap messages is problematic because we ignore
    the response if the tid doesn't match, and the server may only respond to
    each one once. It's also a waste.

    So, skip cap_snaps that are already on the flushing list, unless the caller
    tells us to resend (because we are reconnecting).

    Signed-off-by: Sage Weil

    Sage Weil
     
  • The cap_snap creation/queueing relies on both the current i_head_snapc
    _and_ the i_snap_realm pointers being correct, so that the new cap_snap
    can properly reference the old context and the new i_head_snapc can be
    updated to reference the new snaprealm's context. To fix this, we:

    - move inodes completely to the new (split) realm so that i_snap_realm
    is correct, and
    - generate the new snapc's _before_ queueing the cap_snaps in
    ceph_update_snap_trace().

    Signed-off-by: Sage Weil

    Sage Weil
     

25 Aug, 2010

1 commit

  • We used to use i_head_snapc to keep track of which snapc the current epoch
    of dirty data was dirtied under. It is used by queue_cap_snap to set up
    the cap_snap. However, since we queue cap snaps for any dirty caps, not
    just for dirty file data, we need to keep a valid i_head_snapc anytime
    we have dirty|flushing caps. This fixes a NULL pointer deref in
    queue_cap_snap when writing back dirty caps without data (e.g.,
    snaptest-authwb.sh).

    Signed-off-by: Sage Weil

    Sage Weil
     

23 Aug, 2010

1 commit

  • When we snapshot dirty metadata that needs to be written back to the MDS,
    include dirty xattr metadata. Make the capsnap reference the encoded
    xattr blob so that it will be written back in the FLUSHSNAP op.

    Also fix the capsnap creation guard to include dirty auth or file bits,
    not just tests specific to dirty file data or file writes in progress
    (this fixes auth metadata writeback).

    Signed-off-by: Sage Weil

    Sage Weil
     

04 Aug, 2010

1 commit


03 Aug, 2010

2 commits


02 Aug, 2010

4 commits


30 May, 2010

2 commits

  • * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client:
    ceph: clean up on forwarded aborted mds request
    ceph: fix leak of osd authorizer
    ceph: close out mds, osd connections before stopping auth
    ceph: make lease code DN specific
    fs/ceph: Use ERR_CAST
    ceph: renew auth tickets before they expire
    ceph: do not resend mon requests on auth ticket renewal
    ceph: removed duplicated #includes
    ceph: avoid possible null dereference
    ceph: make mds requests killable, not interruptible
    sched: add wait_for_completion_killable_timeout

    Linus Torvalds
     
  • fs/ceph/auth.c: linux/slab.h is included more than once.
    fs/ceph/super.h: linux/slab.h is included more than once.

    Acked-by: Christoph Lameter
    Signed-off-by: Andrea Gelmini
    Signed-off-by: Sage Weil

    Andrea Gelmini
     

28 May, 2010

1 commit


18 May, 2010

4 commits

  • Specify max bytes in request to bound size of reply. Add associated
    mount option with default value of 512 KB.

    Signed-off-by: Sage Weil

    Sage Weil
     
  • Ensure all options are included in /proc/mounts. Some cleanup.

    Signed-off-by: Sage Weil

    Sage Weil
     
  • ceph_sb_to_client and ceph_client are really identical, we need to dump
    one; while function ceph_client is confusing with "struct ceph_client",
    ceph_sb_to_client's definition is more clear; so we'd better switch all
    call to ceph_sb_to_client.

    -static inline struct ceph_client *ceph_client(struct super_block *sb)
    -{
    - return sb->s_fs_info;
    -}

    Signed-off-by: Cheng Renquan
    Signed-off-by: Sage Weil

    Cheng Renquan
     
  • If we abort a request, we return to caller, but the request may still
    complete. And if we hold the dir FILE_EXCL bit, we may not release a
    lease when sending a request. A simple un-tar, control-c, un-tar again
    will reproduce the bug (manifested as a 'Cannot open: File exists').

    Ensure we invalidate affected dentry leases (as well dir I_COMPLETE) so
    we don't have valid (but incorrect) leases. Do the same, consistently, at
    other sites where I_COMPLETE is similarly cleared.

    Signed-off-by: Sage Weil

    Sage Weil
     

04 May, 2010

1 commit


15 Apr, 2010

1 commit

  • * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client:
    ceph: use separate class for ceph sockets' sk_lock
    ceph: reserve one more caps space when doing readdir
    ceph: queue_cap_snap should always queue dirty context
    ceph: fix dentry reference leak in dcache readdir
    ceph: decode v5 of osdmap (pool names) [protocol change]
    ceph: fix ack counter reset on connection reset
    ceph: fix leaked inode ref due to snap metadata writeback race
    ceph: fix snap context reference leaks
    ceph: allow writeback of snapped pages older than 'oldest' snapc
    ceph: fix dentry rehashing on virtual .snap dir

    Linus Torvalds
     

14 Apr, 2010

1 commit

  • This simplifies the calling convention, and fixes a bug where we queue a
    capsnap with a context other than i_head_snapc (the one that matches the
    dirty pages). The result was a BUG at fs/ceph/caps.c:2178 on writeback
    completion when a capsnap matching the writeback snapc could not be found.

    Signed-off-by: Sage Weil

    Sage Weil
     

30 Mar, 2010

1 commit

  • …it slab.h inclusion from percpu.h

    percpu.h is included by sched.h and module.h and thus ends up being
    included when building most .c files. percpu.h includes slab.h which
    in turn includes gfp.h making everything defined by the two files
    universally available and complicating inclusion dependencies.

    percpu.h -> slab.h dependency is about to be removed. Prepare for
    this change by updating users of gfp and slab facilities include those
    headers directly instead of assuming availability. As this conversion
    needs to touch large number of source files, the following script is
    used as the basis of conversion.

    http://userweb.kernel.org/~tj/misc/slabh-sweep.py

    The script does the followings.

    * Scan files for gfp and slab usages and update includes such that
    only the necessary includes are there. ie. if only gfp is used,
    gfp.h, if slab is used, slab.h.

    * When the script inserts a new include, it looks at the include
    blocks and try to put the new include such that its order conforms
    to its surrounding. It's put in the include block which contains
    core kernel includes, in the same order that the rest are ordered -
    alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
    doesn't seem to be any matching order.

    * If the script can't find a place to put a new include (mostly
    because the file doesn't have fitting include block), it prints out
    an error message indicating which .h file needs to be added to the
    file.

    The conversion was done in the following steps.

    1. The initial automatic conversion of all .c files updated slightly
    over 4000 files, deleting around 700 includes and adding ~480 gfp.h
    and ~3000 slab.h inclusions. The script emitted errors for ~400
    files.

    2. Each error was manually checked. Some didn't need the inclusion,
    some needed manual addition while adding it to implementation .h or
    embedding .c file was more appropriate for others. This step added
    inclusions to around 150 files.

    3. The script was run again and the output was compared to the edits
    from #2 to make sure no file was left behind.

    4. Several build tests were done and a couple of problems were fixed.
    e.g. lib/decompress_*.c used malloc/free() wrappers around slab
    APIs requiring slab.h to be added manually.

    5. The script was run on all .h files but without automatically
    editing them as sprinkling gfp.h and slab.h inclusions around .h
    files could easily lead to inclusion dependency hell. Most gfp.h
    inclusion directives were ignored as stuff from gfp.h was usually
    wildly available and often used in preprocessor macros. Each
    slab.h inclusion directive was examined and added manually as
    necessary.

    6. percpu.h was updated not to include slab.h.

    7. Build test were done on the following configurations and failures
    were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
    distributed build env didn't work with gcov compiles) and a few
    more options had to be turned off depending on archs to make things
    build (like ipr on powerpc/64 which failed due to missing writeq).

    * x86 and x86_64 UP and SMP allmodconfig and a custom test config.
    * powerpc and powerpc64 SMP allmodconfig
    * sparc and sparc64 SMP allmodconfig
    * ia64 SMP allmodconfig
    * s390 SMP allmodconfig
    * alpha SMP allmodconfig
    * um on x86_64 SMP allmodconfig

    8. percpu.h modifications were reverted so that it could be applied as
    a separate patch and serve as bisection point.

    Given the fact that I had only a couple of failures from tests on step
    6, I'm fairly confident about the coverage of this conversion patch.
    If there is a breakage, it's likely to be something in one of the arch
    headers which should be easily discoverable easily on most builds of
    the specific arch.

    Signed-off-by: Tejun Heo <tj@kernel.org>
    Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
    Cc: Ingo Molnar <mingo@redhat.com>
    Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>

    Tejun Heo
     

06 Mar, 2010

1 commit


05 Mar, 2010

1 commit

  • This simplifies the process of timing out messages. We
    keep lru of current messages that are in flight. If a
    timeout has passed, we reset the osd connection, so that
    messages will be retransmitted. This is a failsafe in case
    we hit some sort of problem sending out message to the OSD.
    Normally, we'll get notification via an updated osdmap if
    there are problems.

    If a request is older than the keepalive timeout, send a
    keepalive to ensure we detect any breaks in the TCP connection.

    Signed-off-by: Yehuda Sadeh
    Signed-off-by: Sage Weil

    Yehuda Sadeh
     

02 Mar, 2010

1 commit

  • The flush_dirty_caps() used to loop over the first entry of the cap_dirty
    dirty list on the assumption that after calling ceph_check_caps() it would
    be removed from the list. This isn't true for caps that are being
    migrated between MDSs, where we've received the EXPORT but not the IMPORT.

    Instead, do a safe list iteration, and pin the next inode on the list via
    the CEPH_I_NOFLUSH flag.

    Signed-off-by: Sage Weil

    Sage Weil
     

24 Feb, 2010

1 commit


18 Feb, 2010

2 commits

  • We need to be able to iterate over all caps on a session with a
    possibly slow callback on each cap. To allow this, we used to
    prevent cap reordering while we were iterating. However, we were
    not safe from races with removal: removing the 'next' cap would
    make the next pointer from list_for_each_entry_safe be invalid,
    and cause a lock up or similar badness.

    Instead, we keep an iterator pointer in the session pointing to
    the current cap. As before, we avoid reordering. For removal,
    if the cap isn't the current cap we are iterating over, we are
    fine. If it is, we clear cap->ci (to mark the cap as pending
    removal) but leave it in the session list. In iterate_caps, we
    can safely finish removal and get the next cap pointer.

    While we're at it, clean up put_cap to not take a cap reservation
    context, as it was never used.

    Signed-off-by: Sage Weil

    Sage Weil
     
  • Use a global counter for the minimum number of allocated caps instead of
    hard coding a check against readdir_max. This takes into account multiple
    client instances, and avoids examining the superblock mount options when a
    cap is dropped.

    Signed-off-by: Sage Weil

    Sage Weil
     

17 Feb, 2010

1 commit