1. 27 10月, 2012 1 次提交
  2. 24 9月, 2012 2 次提交
  3. 15 9月, 2012 1 次提交
  4. 22 5月, 2012 3 次提交
    • N
      [SCSI] qla2xxx: Add LLD target-mode infrastructure for >= 24xx series · 2d70c103
      Nicholas Bellinger 提交于
      Add LLD target mode for >= 24xx series HW.  This code was originally based on
      external qla2x00t module based on 8.02.01-k4, and has been refactored to
      push the bulk of code into mainline qla2xxx.ko LLD -> qla_target.c.
      
      The implementation uses internal workqueues for I/O context submission
      into tcm_qla2xxx code, and includes the struct qla_tgt_func_tmpl API for
      external interaction to allow qla2xxx LDD to function without direct
      target-core dependencies:
      
      It also enables qla_target.c usage within existing qla2xxx LLD code.
      This includes:
      
      *) Addition of target mode specific members to existing data
      structures in qla_def.h and struct qla_hw_data->tgt_ops using
      qla_target.h:struct qla_tgt_func_tmpl
      
      *) Addition of struct qla_tgt_func_tmpl and direct calls into
      qla_target.c logic w/ qlt_* prefixed functions.
      
      *) Addition of qla_iocb.c:qla2x00_req_pkt() for ring processing, and
      qla2x00_issue_marker() for handling request/response queue processing
      for target mode operation
      
      *) Addition of various qla_tgt_mode_enabled() logic checks in
      qla24xx_nvram_config(), qla2x00_initialize_adapter(), qla2x00_rff_id(),
      qla2x00_abort_isp(), qla24xx_modify_vp_config(), and
      qla2x00_vp_abort_isp().
      
      By default the new qlini_mode module parameter is setting initiator-mode
      to 'enabled' in order for 'modprobe qla2xxx' to continue to function as
      expected in initiator only mode.  Enabling target-mode operation will
      currently require a:
      
          modprobe qla2xxx qlini_mode="disabled"
      
      in order to explictly disabled initiator mode and allow target-mode
      to be enabled via tcm_qla2xxx configfs fabric callers.
      
      (nab: Convert to qlini_mode='enabled' by default in qla_target.c)
      (joern: Remove loop_id from qla_tgt_make_local_sess() arguments +
              Remove unused s_id + fix s_id endianness bug +
              simplify qla_tgt_abort_work)
      (gerard: fix section __exit mismatch in qla_tgt_exit)
      (arun: Capture ATIO queue during firmware dump + Send SCR in target mode +
             Target mode review comments)
      (roland: Don't create duplicate target sessions to address tearing down
               ACLs with IO in flight + Add missing call to qlt_fc_port_deleted
      	 call during qla2x00_schedule_rport_del timeout)
      Signed-off-by: NNicholas A. Bellinger <nab@linux-iscsi.org>
      Signed-off-by: NChad Dupuis <chad.dupuis@qlogic.com>
      Signed-off-by: NJames Bottomley <JBottomley@Parallels.com>
      2d70c103
    • J
      [SCSI] qla2xxx: Remove mirrored field vp_idx from struct fc_port. · c6d39e23
      Joe Carnuccio 提交于
      The field vp_idx in struct fc_port is a redundant/mirror copy of
      the same field in struct scsi_qla_host;
      
      struct fc_port has a pointer vha to scsi_qla_host which allows
      the original copy of vp_idx to be readily accessed.
      Signed-off-by: NJoe Carnuccio <joe.carnuccio@qlogic.com>
      Signed-off-by: NChad Dupuis <chad.dupuis@qlogic.com>
      Signed-off-by: NJames Bottomley <JBottomley@Parallels.com>
      c6d39e23
    • S
      [SCSI] qla2xxx: Add ql_dbg_verbose logging level. · 5f28d2d7
      Saurav Kashyap 提交于
      Add an extra layer of logging granularity for messages that are necessary in
      some circumstances but may flood the kernel log buffer with too many messages
      otherwise.
      Signed-off-by: NSaurav Kashyap <saurav.kashyap@qlogic.com>
      Signed-off-by: NChad Dupuis <chad.dupuis@qlogic.com>
      Signed-off-by: NJames Bottomley <JBottomley@Parallels.com>
      5f28d2d7
  5. 19 2月, 2012 1 次提交
  6. 27 8月, 2011 1 次提交
    • A
      [SCSI] qla2xxx: T10 DIF - Fix incorrect error reporting. · e02587d7
      Arun Easi 提交于
      This fix:
          - Disables app tag peeking; correct tag check will be added when the
            SCSI API is available.
          - Always derive ref_tag from scsi_get_lba()
          - Removes incorrect swap of FCP_LUN in FCP_CMND
          - Moves app-tag error check before ref-tag check. The reason being,
            currently there is no interface in SCSI to retrieve the app-tag
            for protection I/Os, so driver puts zero for app-tag in the
            firmware interface, but requests not to validate it, but when a
            ref-tag error is detected by firmware, it would put
            expected/actual tags for all the protection tags (guard/app/ref).
            As driver checks for app tag error first, a ref-tag error is
            incorrectly flagged as app-tag error.
          - Convert HBA specific checks to capability based.
      Signed-off-by: NArun Easi <arun.easi@qlogic.com>
      Signed-off-by: NChad Dupuis <chad.dupuis@qlogic.com>
      Signed-off-by: NJames Bottomley <JBottomley@Parallels.com>
      e02587d7
  7. 27 7月, 2011 1 次提交
  8. 17 5月, 2011 1 次提交
  9. 01 5月, 2011 2 次提交
  10. 06 9月, 2010 2 次提交
  11. 28 7月, 2010 4 次提交
  12. 30 3月, 2010 1 次提交
    • T
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking... · 5a0e3ad6
      Tejun Heo 提交于
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
      
      percpu.h is included by sched.h and module.h and thus ends up being
      included when building most .c files.  percpu.h includes slab.h which
      in turn includes gfp.h making everything defined by the two files
      universally available and complicating inclusion dependencies.
      
      percpu.h -> slab.h dependency is about to be removed.  Prepare for
      this change by updating users of gfp and slab facilities include those
      headers directly instead of assuming availability.  As this conversion
      needs to touch large number of source files, the following script is
      used as the basis of conversion.
      
        http://userweb.kernel.org/~tj/misc/slabh-sweep.py
      
      The script does the followings.
      
      * Scan files for gfp and slab usages and update includes such that
        only the necessary includes are there.  ie. if only gfp is used,
        gfp.h, if slab is used, slab.h.
      
      * When the script inserts a new include, it looks at the include
        blocks and try to put the new include such that its order conforms
        to its surrounding.  It's put in the include block which contains
        core kernel includes, in the same order that the rest are ordered -
        alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
        doesn't seem to be any matching order.
      
      * If the script can't find a place to put a new include (mostly
        because the file doesn't have fitting include block), it prints out
        an error message indicating which .h file needs to be added to the
        file.
      
      The conversion was done in the following steps.
      
      1. The initial automatic conversion of all .c files updated slightly
         over 4000 files, deleting around 700 includes and adding ~480 gfp.h
         and ~3000 slab.h inclusions.  The script emitted errors for ~400
         files.
      
      2. Each error was manually checked.  Some didn't need the inclusion,
         some needed manual addition while adding it to implementation .h or
         embedding .c file was more appropriate for others.  This step added
         inclusions to around 150 files.
      
      3. The script was run again and the output was compared to the edits
         from #2 to make sure no file was left behind.
      
      4. Several build tests were done and a couple of problems were fixed.
         e.g. lib/decompress_*.c used malloc/free() wrappers around slab
         APIs requiring slab.h to be added manually.
      
      5. The script was run on all .h files but without automatically
         editing them as sprinkling gfp.h and slab.h inclusions around .h
         files could easily lead to inclusion dependency hell.  Most gfp.h
         inclusion directives were ignored as stuff from gfp.h was usually
         wildly available and often used in preprocessor macros.  Each
         slab.h inclusion directive was examined and added manually as
         necessary.
      
      6. percpu.h was updated not to include slab.h.
      
      7. Build test were done on the following configurations and failures
         were fixed.  CONFIG_GCOV_KERNEL was turned off for all tests (as my
         distributed build env didn't work with gcov compiles) and a few
         more options had to be turned off depending on archs to make things
         build (like ipr on powerpc/64 which failed due to missing writeq).
      
         * x86 and x86_64 UP and SMP allmodconfig and a custom test config.
         * powerpc and powerpc64 SMP allmodconfig
         * sparc and sparc64 SMP allmodconfig
         * ia64 SMP allmodconfig
         * s390 SMP allmodconfig
         * alpha SMP allmodconfig
         * um on x86_64 SMP allmodconfig
      
      8. percpu.h modifications were reverted so that it could be applied as
         a separate patch and serve as bisection point.
      
      Given the fact that I had only a couple of failures from tests on step
      6, I'm fairly confident about the coverage of this conversion patch.
      If there is a breakage, it's likely to be something in one of the arch
      headers which should be easily discoverable easily on most builds of
      the specific arch.
      Signed-off-by: NTejun Heo <tj@kernel.org>
      Guess-its-ok-by: NChristoph Lameter <cl@linux-foundation.org>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
      5a0e3ad6
  13. 09 2月, 2010 1 次提交
  14. 31 12月, 2009 1 次提交
  15. 10 12月, 2009 1 次提交
  16. 05 12月, 2009 1 次提交
  17. 03 10月, 2009 1 次提交
  18. 12 9月, 2009 1 次提交
  19. 05 9月, 2009 1 次提交
  20. 23 8月, 2009 1 次提交
  21. 13 7月, 2009 1 次提交
  22. 21 5月, 2009 2 次提交
  23. 03 4月, 2009 2 次提交
  24. 10 3月, 2009 1 次提交
  25. 11 2月, 2009 2 次提交
  26. 14 1月, 2009 1 次提交
  27. 08 1月, 2009 1 次提交
  28. 30 12月, 2008 2 次提交