search for: qfull

Displaying 5 results from an estimated 5 matches for "qfull".

Did you mean: full
2013 Dec 17
1
What is the formula of Pseudo-F statistic in capscale in vegan?
...w that PRIMER uses the following formula to calculate the pseudo-F for a sequential test of significance (equation 4.3, Anderson, Gorley, and Clarke 2008, Chapter 4. Pg. 129, and based on pseudo-F equation in Legendre and Anderson (1999), Ecological Monographs vol. 69): F= (SSFull - SSReduced)/(qFull-qReduced) (SSTotal-SSFull)/(N - qFull - 1) (3) R code ## creating Bray-Curtis of Biodiversity data H.BC <- vegdist(H.Full [,14:211], "bray") ## Distance based redundancy analysis (dbRDA) m1<-capscale(H.BC ~ GroupSize + Board + MtgStyle + DmStyle + DifView + VolAuto...
2018 May 15
0
[PATCH 1/2] Convert target drivers to use sbitmap
..._tag(scsi_qla_host_t *vha, qlt_incr_num_pend_cmds(vha); cmd->vha = vha; cmd->se_cmd.map_tag = tag; + cmd->se_cmd.map_cpu = cpu; cmd->sess = sess; cmd->loop_id = sess->loop_id; cmd->conf_compl_supported = sess->conf_compl_supported; @@ -5212,7 +5215,7 @@ qlt_alloc_qfull_cmd(struct scsi_qla_host *vha, struct fc_port *sess; struct se_session *se_sess; struct qla_tgt_cmd *cmd; - int tag; + int tag, cpu; unsigned long flags; if (unlikely(tgt->tgt_stop)) { @@ -5244,7 +5247,7 @@ qlt_alloc_qfull_cmd(struct scsi_qla_host *vha, se_sess = sess->se_sess...
2018 Jun 12
8
[PATCH 0/3] Use sbitmap instead of percpu_ida
Removing the percpu_ida code nets over 400 lines of removal. It's not as spectacular as deleting an entire architecture, but it's still a worthy reduction in lines of code. Untested due to lack of hardware and not understanding how to set up a target platform. Changes from v1: - Fixed bugs pointed out by Jens in iscsit_wait_for_tag() - Abstracted out tag freeing as requested by Bart
2018 Jun 12
8
[PATCH 0/3] Use sbitmap instead of percpu_ida
Removing the percpu_ida code nets over 400 lines of removal. It's not as spectacular as deleting an entire architecture, but it's still a worthy reduction in lines of code. Untested due to lack of hardware and not understanding how to set up a target platform. Changes from v1: - Fixed bugs pointed out by Jens in iscsit_wait_for_tag() - Abstracted out tag freeing as requested by Bart
2018 May 15
6
[PATCH 0/2] Use sbitmap instead of percpu_ida
From: Matthew Wilcox <mawilcox at microsoft.com> This is a pretty rough-and-ready conversion of the target drivers from using percpu_ida to sbitmap. It compiles; I don't have a target setup, so it's completely untested. I haven't tried to do anything particularly clever here, so it's possible that, for example, the wait queue in iscsi_target_util could be more clever, like