Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Jun 2017 03:09:47 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-bugs@FreeBSD.org
Subject:   [Bug 220236] sys/dev/dpt/dpt_scsi.c: A possible sleep-under-mutex bug in dpt_init (different from Bug 220095)
Message-ID:  <bug-220236-8@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D220236

            Bug ID: 220236
           Summary: sys/dev/dpt/dpt_scsi.c: A possible sleep-under-mutex
                    bug in dpt_init (different from Bug 220095)
           Product: Base System
           Version: CURRENT
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Only Me
          Priority: ---
         Component: kern
          Assignee: freebsd-bugs@FreeBSD.org
          Reporter: baijiaju1990@163.com

The driver may sleep under a mutex, and the code path is:
dpt_init [line 1134: acquire the mutex]
  bus_dmamap_tag_create(BUS_DMA_WAITOK) [line 1143] --> may sleep

The possible fix of this bug is to replace the "BUS_DMA_WAITOK" in
bus_dmamap_tag_create with "BUS_DMA_NOWAIT".

This bug is found by a static analysis tool written by myself, and it is
checked by my review of the FreeBSD code.

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-220236-8>