/*
  * Fills in the passed counter variables, so you can prepare pagelist metadata
  * before calling ceph_encode_locks.
- *
- * FIXME: add counters to struct file_lock_context so we don't need to do this?
  */
 void ceph_count_locks(struct inode *inode, int *fcntl_count, int *flock_count)
 {
-       struct file_lock *lock;
        struct file_lock_context *ctx;
 
        *fcntl_count = 0;
 
        ctx = inode->i_flctx;
        if (ctx) {
-               spin_lock(&ctx->flc_lock);
-               list_for_each_entry(lock, &ctx->flc_posix, fl_list)
-                       ++(*fcntl_count);
-               list_for_each_entry(lock, &ctx->flc_flock, fl_list)
-                       ++(*flock_count);
-               spin_unlock(&ctx->flc_lock);
+               *fcntl_count = ctx->flc_posix_cnt;
+               *flock_count = ctx->flc_flock_cnt;
        }
        dout("counted %d flock locks and %d fcntl locks",
             *flock_count, *fcntl_count);
 
        struct cifs_tcon *tcon = tlink_tcon(cfile->tlink);
        struct file_lock *flock;
        struct file_lock_context *flctx = inode->i_flctx;
-       unsigned int count = 0, i;
+       unsigned int i;
        int rc = 0, xid, type;
        struct list_head locks_to_send, *el;
        struct lock_to_push *lck, *tmp;
        if (!flctx)
                goto out;
 
-       spin_lock(&flctx->flc_lock);
-       list_for_each(el, &flctx->flc_posix) {
-               count++;
-       }
-       spin_unlock(&flctx->flc_lock);
-
        INIT_LIST_HEAD(&locks_to_send);
 
        /*
-        * Allocating count locks is enough because no FL_POSIX locks can be
-        * added to the list while we are holding cinode->lock_sem that
+        * Allocating flc_posix_cnt locks is enough because no FL_POSIX locks
+        * can be added to the list while we are holding cinode->lock_sem that
         * protects locking operations of this inode.
         */
-       for (i = 0; i < count; i++) {
+       for (i = 0; i < flctx->flc_posix_cnt; i++) {
                lck = kmalloc(sizeof(struct lock_to_push), GFP_KERNEL);
                if (!lck) {
                        rc = -ENOMEM;
 
 }
 
 static void
-locks_insert_lock_ctx(struct file_lock *fl, struct list_head *before)
+locks_insert_lock_ctx(struct file_lock *fl, int *counter,
+                     struct list_head *before)
 {
        fl->fl_nspid = get_pid(task_tgid(current));
        list_add_tail(&fl->fl_list, before);
+       ++*counter;
        locks_insert_global_locks(fl);
 }
 
 static void
-locks_unlink_lock_ctx(struct file_lock *fl)
+locks_unlink_lock_ctx(struct file_lock *fl, int *counter)
 {
        locks_delete_global_locks(fl);
        list_del_init(&fl->fl_list);
+       --*counter;
        if (fl->fl_nspid) {
                put_pid(fl->fl_nspid);
                fl->fl_nspid = NULL;
 }
 
 static void
-locks_delete_lock_ctx(struct file_lock *fl, struct list_head *dispose)
+locks_delete_lock_ctx(struct file_lock *fl, int *counter,
+                     struct list_head *dispose)
 {
-       locks_unlink_lock_ctx(fl);
+       locks_unlink_lock_ctx(fl, counter);
        if (dispose)
                list_add(&fl->fl_list, dispose);
        else
                if (request->fl_type == fl->fl_type)
                        goto out;
                found = true;
-               locks_delete_lock_ctx(fl, &dispose);
+               locks_delete_lock_ctx(fl, &ctx->flc_flock_cnt, &dispose);
                break;
        }
 
        if (request->fl_flags & FL_ACCESS)
                goto out;
        locks_copy_lock(new_fl, request);
-       locks_insert_lock_ctx(new_fl, &ctx->flc_flock);
+       locks_insert_lock_ctx(new_fl, &ctx->flc_flock_cnt, &ctx->flc_flock);
        new_fl = NULL;
        error = 0;
 
                        else
                                request->fl_end = fl->fl_end;
                        if (added) {
-                               locks_delete_lock_ctx(fl, &dispose);
+                               locks_delete_lock_ctx(fl, &ctx->flc_posix_cnt,
+                                                       &dispose);
                                continue;
                        }
                        request = fl;
                                 * one (This may happen several times).
                                 */
                                if (added) {
-                                       locks_delete_lock_ctx(fl, &dispose);
+                                       locks_delete_lock_ctx(fl,
+                                               &ctx->flc_posix_cnt, &dispose);
                                        continue;
                                }
                                /*
                                locks_copy_lock(new_fl, request);
                                request = new_fl;
                                new_fl = NULL;
-                               locks_insert_lock_ctx(request, &fl->fl_list);
-                               locks_delete_lock_ctx(fl, &dispose);
+                               locks_insert_lock_ctx(request,
+                                       &ctx->flc_posix_cnt, &fl->fl_list);
+                               locks_delete_lock_ctx(fl,
+                                       &ctx->flc_posix_cnt, &dispose);
                                added = true;
                        }
                }
                        goto out;
                }
                locks_copy_lock(new_fl, request);
-               locks_insert_lock_ctx(new_fl, &fl->fl_list);
+               locks_insert_lock_ctx(new_fl, &ctx->flc_posix_cnt,
+                                       &fl->fl_list);
                new_fl = NULL;
        }
        if (right) {
                        left = new_fl2;
                        new_fl2 = NULL;
                        locks_copy_lock(left, right);
-                       locks_insert_lock_ctx(left, &fl->fl_list);
+                       locks_insert_lock_ctx(left, &ctx->flc_posix_cnt,
+                                               &fl->fl_list);
                }
                right->fl_start = request->fl_end + 1;
                locks_wake_up_blocks(right);
 /* We already had a lease on this file; just change its type */
 int lease_modify(struct file_lock *fl, int arg, struct list_head *dispose)
 {
+       struct file_lock_context *flctx;
        int error = assign_type(fl, arg);
 
        if (error)
        if (arg == F_UNLCK) {
                struct file *filp = fl->fl_file;
 
+               flctx = file_inode(filp)->i_flctx;
                f_delown(filp);
                filp->f_owner.signum = 0;
                fasync_helper(0, fl->fl_file, 0, &fl->fl_fasync);
                        printk(KERN_ERR "locks_delete_lock: fasync == %p\n", fl->fl_fasync);
                        fl->fl_fasync = NULL;
                }
-               locks_delete_lock_ctx(fl, dispose);
+               locks_delete_lock_ctx(fl, &flctx->flc_lease_cnt, dispose);
        }
        return 0;
 }
                        fl->fl_downgrade_time = break_time;
                }
                if (fl->fl_lmops->lm_break(fl))
-                       locks_delete_lock_ctx(fl, &dispose);
+                       locks_delete_lock_ctx(fl, &ctx->flc_lease_cnt,
+                                               &dispose);
        }
 
        if (list_empty(&ctx->flc_lease))
        if (!leases_enable)
                goto out;
 
-       locks_insert_lock_ctx(lease, &ctx->flc_lease);
+       locks_insert_lock_ctx(lease, &ctx->flc_lease_cnt, &ctx->flc_lease);
        /*
         * The check in break_lease() is lockless. It's possible for another
         * open to race in after we did the earlier check for a conflicting
        smp_mb();
        error = check_conflicting_open(dentry, arg);
        if (error) {
-               locks_unlink_lock_ctx(lease);
+               locks_unlink_lock_ctx(lease, &ctx->flc_lease_cnt);
                goto out;
        }