1. 05 3月, 2021 2 次提交
  2. 30 1月, 2021 1 次提交
  3. 08 1月, 2021 3 次提交
  4. 01 12月, 2020 1 次提交
  5. 20 11月, 2020 2 次提交
  6. 17 11月, 2020 10 次提交
  7. 27 10月, 2020 1 次提交
  8. 01 9月, 2020 2 次提交
  9. 24 8月, 2020 1 次提交
  10. 05 8月, 2020 1 次提交
  11. 25 7月, 2020 1 次提交
    • L
      scsi: lpfc: Fix some function parameter descriptions · a0e4a64f
      Lee Jones 提交于
      Fixes the following W=1 kernel build warning(s):
      
       drivers/scsi/lpfc/lpfc_els.c:3619: warning: Function parameter or member 't' not described in 'lpfc_els_retry_delay'
       drivers/scsi/lpfc/lpfc_els.c:3619: warning: Excess function parameter 'ptr' description in 'lpfc_els_retry_delay'
       drivers/scsi/lpfc/lpfc_els.c:4877: warning: Function parameter or member 'rejectError' not described in 'lpfc_els_rsp_reject'
       drivers/scsi/lpfc/lpfc_els.c:7900: warning: Function parameter or member 't' not described in 'lpfc_els_timeout'
       drivers/scsi/lpfc/lpfc_els.c:7900: warning: Excess function parameter 'ptr' description in 'lpfc_els_timeout'
       drivers/scsi/lpfc/lpfc_els.c:8272: warning: Function parameter or member 'payload' not described in 'lpfc_send_els_event'
       drivers/scsi/lpfc/lpfc_els.c:8272: warning: Excess function parameter 'cmd' description in 'lpfc_send_els_event'
       drivers/scsi/lpfc/lpfc_els.c:8355: warning: Function parameter or member 'tlv' not described in 'lpfc_els_rcv_fpin_li'
       drivers/scsi/lpfc/lpfc_els.c:8355: warning: Excess function parameter 'lnk_not' description in 'lpfc_els_rcv_fpin_li'
       drivers/scsi/lpfc/lpfc_els.c:9688: warning: Function parameter or member 't' not described in 'lpfc_fabric_block_timeout'
       drivers/scsi/lpfc/lpfc_els.c:9688: warning: Excess function parameter 'ptr' description in 'lpfc_fabric_block_timeout'
      
      Link: https://lore.kernel.org/r/20200723122446.1329773-2-lee.jones@linaro.org
      Cc: James Smart <james.smart@broadcom.com>
      Cc: Dick Kennedy <dick.kennedy@broadcom.com>
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      Signed-off-by: NMartin K. Petersen <martin.petersen@oracle.com>
      a0e4a64f
  12. 03 7月, 2020 1 次提交
    • D
      scsi: lpfc: Add an internal trace log buffer · 372c187b
      Dick Kennedy 提交于
      The current logging methods typically end up requesting a reproduction with
      a different logging level set to figure out what happened. This was mainly
      by design to not clutter the kernel log messages with things that were
      typically not interesting and the messages themselves could cause other
      issues.
      
      When looking to make a better system, it was seen that in many cases when
      more data was wanted was when another message, usually at KERN_ERR level,
      was logged.  And in most cases, what the additional logging that was then
      enabled was typically. Most of these areas fell into the discovery machine.
      
      Based on this summary, the following design has been put in place: The
      driver will maintain an internal log (256 elements of 256 bytes).  The
      "additional logging" messages that are usually enabled in a reproduction
      will be changed to now log all the time to the internal log.  A new logging
      level is defined - LOG_TRACE_EVENT.  When this level is set (it is not by
      default) and a message marked as KERN_ERR is logged, all the messages in
      the internal log will be dumped to the kernel log before the KERN_ERR
      message is logged.
      
      There is a timestamp on each message added to the internal log. However,
      this timestamp is not converted to wall time when logged. The value of the
      timestamp is solely to give a crude time reference for the messages.
      
      Link: https://lore.kernel.org/r/20200630215001.70793-14-jsmart2021@gmail.comSigned-off-by: NDick Kennedy <dick.kennedy@broadcom.com>
      Signed-off-by: NJames Smart <jsmart2021@gmail.com>
      Signed-off-by: NMartin K. Petersen <martin.petersen@oracle.com>
      372c187b
  13. 27 5月, 2020 1 次提交
  14. 22 4月, 2020 1 次提交
  15. 25 2月, 2020 1 次提交
  16. 18 2月, 2020 1 次提交
    • J
      scsi: lpfc: add RDF registration and Link Integrity FPIN logging · df3fe766
      James Smart 提交于
      This patch modifies lpfc to register for Link Integrity events via the use
      of an RDF ELS and to perform Link Integrity FPIN logging.
      
      Specifically, the driver was modified to:
      
       - Format and issue the RDF ELS immediately following SCR registration.
         This registers the ability of the driver to receive FPIN ELS.
      
       - Adds decoding of the FPIN els into the received descriptors, with
         logging of the Link Integrity event information. After decoding, the ELS
         is delivered to the scsi fc transport to be delivered to any user-space
         applications.
      
       - To aid in logging, simple helpers were added to create enum to name
         string lookup functions that utilize the initialization helpers from the
         fc_els.h header.
      
       - Note: base header definitions for the ELS's don't populate the
         descriptor payloads. As such, lpfc creates it's own version of the
         structures, using the base definitions (mostly headers) and additionally
         declaring the descriptors that will complete the population of the ELS.
      
      Link: https://lore.kernel.org/r/20200210173155.547-3-jsmart2021@gmail.comSigned-off-by: NDick Kennedy <dick.kennedy@broadcom.com>
      Signed-off-by: NJames Smart <jsmart2021@gmail.com>
      Signed-off-by: NMartin K. Petersen <martin.petersen@oracle.com>
      df3fe766
  17. 11 2月, 2020 2 次提交
  18. 13 11月, 2019 1 次提交
  19. 06 11月, 2019 1 次提交
  20. 25 10月, 2019 2 次提交
  21. 01 10月, 2019 3 次提交
  22. 20 8月, 2019 1 次提交