summaryrefslogtreecommitdiff
path: root/README.devel
blob: 021b18f445d7300bed2d1b9b355b65a0b0739cb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
A Travis CI instance for continuous integration testing of netsniff-ng
can be found here:

  https://travis-ci.org/netsniff-ng/netsniff-ng

An analysis by the Coverity Scanner is run occasionally against the source of
netsniff-ng. The corresponding scan reports can be found here:

  https://scan.coverity.com/projects/329

If you are a project admin, use the command

  `make COV_EMAIL=<email> COV_PASSWD=<passwd> coverity'

to trigger a new scan yourself. Alternatively, the Coverity integration of
Travis CI can be used by pushing to the branch 'coverity_scan' to trigger a new
analysis.
et-next.git/commit/?h=nds-private-remove&id=4fa507992f0a1063d7326abaf705f9408548349e'>4fa507992f0a1063d7326abaf705f9408548349e (patch) tree4896b7a0375fcf61c935b86e67ba9239b65563d6 parent8a4236a2c7868768943a24dc7b1e2ff495836880 (diff)
scsi: libiscsi: Fix locking in __iscsi_conn_send_pdu
The code at free_task label in __iscsi_conn_send_pdu can get executed from blk_timeout_work which takes queue_lock using spin_lock_irq. back_lock taken with spin_unlock_bh will cause WARN_ON_ONCE. The code gets executed either with bottom half or IRQ disabled hence using spin_lock/spin_unlock for back_lock is safe. Signed-off-by: Jitendra Bhivare <jitendra.bhivare@broadcom.com> Reviewed-by: Hannes Reinecke <hare@suse.com> Reviewed-by: Chris Leech <cleech@redhat.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat