diff options
Diffstat (limited to 'sys/dev/sfxge/sfxge_dma.c')
-rw-r--r-- | sys/dev/sfxge/sfxge_dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sfxge/sfxge_dma.c b/sys/dev/sfxge/sfxge_dma.c index 076c7c6..f0d1754 100644 --- a/sys/dev/sfxge/sfxge_dma.c +++ b/sys/dev/sfxge/sfxge_dma.c @@ -97,7 +97,7 @@ retry: goto err_out; } else if (err == EFBIG || seg_count >= maxsegs) { if (!defragged) { - m = m_defrag(*mp, M_DONTWAIT); + m = m_defrag(*mp, M_NOWAIT); if (m == NULL) { err = ENOBUFS; goto err_out; |