Re: [Open-FCoE] [PATCH] MAINTAINERS: Change FCoE maintainer

2016-06-28 Thread Vasu Dev
t a/MAINTAINERS b/MAINTAINERS > index e1b090f..70af8c0 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -4661,7 +4661,7 @@ S: Maintained >  F: drivers/staging/fbtft/ >   >  FCOE SUBSYSTEM (libfc, libfcoe, fcoe) > -M: Vasu Dev > +M: Johannes Thumshirn >  L

Re: [PATCH] SCSI-libfc: Delete an unnecessary check before the function call "kmem_cache_destroy"

2015-11-19 Thread Vasu Dev
em_cache_destroy(scsi_pkt_cachep); > } > > /** Looks good. Acked-by: Vasu Dev -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH -resend 1/1] fcoe: use continue instead of goto+label

2015-10-06 Thread Vasu Dev
continue; > } > > spin_unlock_bh(&p->fcoe_rx_list.lock); Acked-by: Vasu Dev -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [Open-FCoE] [PATCH] scsi: fcoe: Convert use of __constant_htons to htons

2015-09-01 Thread Vasu Dev
type.type = htons(ETH_P_FCOE); > fcoe->fcoe_packet_type.dev = netdev; > dev_add_pack(&fcoe->fcoe_packet_type); > Acked-by: Vasu Dev -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH] SCSI-libfc: Delete an unnecessary check before the function call "fc_fcp_ddp_done"

2015-06-25 Thread Vasu Dev
if (fsp) > - fc_fcp_ddp_done(fsp); > + fc_fcp_ddp_done(fsp); > rc = fc_exch_done_locked(ep); > spin_unlock_bh(&ep->ex_lock); > if (!rc) Looks good. Acked-by: Vasu Dev -- To unsubscribe from this list: send the line "unsubscribe linux-kerne

Re: [Open-FCoE] [PATCH] [trivial] scsi:fcoe: Fix typo "a ethernet" in fcoe_transport.c

2015-06-23 Thread Vasu Dev
gt; +MODULE_PARM_DESC(enable, " Enables fcoe on an ethernet interface."); > > module_param_call(disable, fcoe_transport_disable, NULL, NULL, S_IWUSR); > __MODULE_PARM_TYPE(disable, "string"); > -MODULE_PARM_DESC(disable, " Disables fcoe on a ethernet interface.&q

Re: [PATCH] scsi: match wait_for_completion_timeout return type

2015-03-18 Thread Vasu Dev
-1292,7 +1293,7 @@ static int fc_lun_reset(struct fc_lport *lport, struct > fc_fcp_pkt *fsp, > fsp->wait_for_comp = 0; > spin_unlock_bh(&fsp->scsi_pkt_lock); > > - if (!rc) { > + if (!ticks_left) { > FC_SCSI_DBG(lport, "lun reset fa

Re: [PATCH] libfs: Replace rcu_assign_pointer() with RCU_INIT_POINTER()

2014-09-25 Thread Vasu Dev
pe], NULL); > + RCU_INIT_POINTER(fc_passive_prov[type], NULL); > else > - rcu_assign_pointer(fc_active_prov[type], NULL); > + RCU_INIT_POINTER(fc_active_prov[type], NULL); > mutex_unlock(&fc_prov_mutex); > synchronize_rcu(); > } Lo