|
@@ -154,7 +154,7 @@ static struct fc_fcp_pkt *fc_fcp_pkt_alloc(struct fc_lport *lport, gfp_t gfp)
|
|
|
memset(fsp, 0, sizeof(*fsp));
|
|
|
fsp->lp = lport;
|
|
|
fsp->xfer_ddp = FC_XID_UNKNOWN;
|
|
|
- atomic_set(&fsp->ref_cnt, 1);
|
|
|
+ refcount_set(&fsp->ref_cnt, 1);
|
|
|
init_timer(&fsp->timer);
|
|
|
fsp->timer.data = (unsigned long)fsp;
|
|
|
INIT_LIST_HEAD(&fsp->list);
|
|
@@ -175,7 +175,7 @@ static struct fc_fcp_pkt *fc_fcp_pkt_alloc(struct fc_lport *lport, gfp_t gfp)
|
|
|
*/
|
|
|
static void fc_fcp_pkt_release(struct fc_fcp_pkt *fsp)
|
|
|
{
|
|
|
- if (atomic_dec_and_test(&fsp->ref_cnt)) {
|
|
|
+ if (refcount_dec_and_test(&fsp->ref_cnt)) {
|
|
|
struct fc_fcp_internal *si = fc_get_scsi_internal(fsp->lp);
|
|
|
|
|
|
mempool_free(fsp, si->scsi_pkt_pool);
|
|
@@ -188,7 +188,7 @@ static void fc_fcp_pkt_release(struct fc_fcp_pkt *fsp)
|
|
|
*/
|
|
|
static void fc_fcp_pkt_hold(struct fc_fcp_pkt *fsp)
|
|
|
{
|
|
|
- atomic_inc(&fsp->ref_cnt);
|
|
|
+ refcount_inc(&fsp->ref_cnt);
|
|
|
}
|
|
|
|
|
|
/**
|