stid->sc_stateid.si_opaque.so_clid = cl->cl_clientid;
        /* Will be incremented before return to client: */
        stid->sc_stateid.si_generation = 0;
+       atomic_set(&stid->sc_count, 1);
 
        /*
         * It shouldn't be a problem to reuse an opaque stateid value.
        dp->dl_type = NFS4_OPEN_DELEGATE_READ;
        fh_copy_shallow(&dp->dl_fh, ¤t_fh->fh_handle);
        dp->dl_time = 0;
-       atomic_set(&dp->dl_count, 1);
        INIT_WORK(&dp->dl_recall.cb_work, nfsd4_run_cb_recall);
        return dp;
 }
 void
 nfs4_put_delegation(struct nfs4_delegation *dp)
 {
-       if (atomic_dec_and_test(&dp->dl_count)) {
+       if (atomic_dec_and_test(&dp->dl_stid.sc_count)) {
                remove_stid(&dp->dl_stid);
                nfs4_free_stid(deleg_slab, &dp->dl_stid);
                num_delegations--;
         * lock) we know the server hasn't removed the lease yet, we know
         * it's safe to take a reference.
         */
-       atomic_inc(&dp->dl_count);
+       atomic_inc(&dp->dl_stid.sc_count);
        nfsd4_cb_recall(dp);
 }
 
 
 };
 
 struct nfs4_stid {
+       atomic_t sc_count;
 #define NFS4_OPEN_STID 1
 #define NFS4_LOCK_STID 2
 #define NFS4_DELEG_STID 4
        struct list_head        dl_perfile;
        struct list_head        dl_perclnt;
        struct list_head        dl_recall_lru;  /* delegation recalled */
-       atomic_t                dl_count;       /* ref count */
        struct nfs4_file        *dl_file;
        u32                     dl_type;
        time_t                  dl_time;