mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 23:02:02 -04:00
Remove a mismatched splbio() in aac_start (the called functions each protect
themselves correctly). Submitted by: ps
This commit is contained in:
parent
691eb641af
commit
ed5c5fb423
1 changed files with 1 additions and 2 deletions
|
|
@ -545,7 +545,7 @@ static int
|
|||
aac_start(struct aac_command *cm)
|
||||
{
|
||||
struct aac_softc *sc = cm->cm_sc;
|
||||
int s, error;
|
||||
int error;
|
||||
|
||||
debug_called(2);
|
||||
|
||||
|
|
@ -560,7 +560,6 @@ aac_start(struct aac_command *cm)
|
|||
cm->cm_fib->Header.SenderData = (u_int32_t)cm; /* XXX 64-bit physical address issue */
|
||||
|
||||
/* put the FIB on the outbound queue */
|
||||
s = splbio();
|
||||
if (aac_enqueue_fib(sc, AAC_ADAP_NORM_CMD_QUEUE, cm->cm_fib->Header.Size,
|
||||
cm->cm_fib->Header.ReceiverFibAddress)) {
|
||||
error = EBUSY;
|
||||
|
|
|
|||
Loading…
Reference in a new issue