]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'bnx2-kdump-fix'
authorDavid S. Miller <davem@davemloft.net>
Mon, 14 Nov 2016 21:20:54 +0000 (16:20 -0500)
committerDavid S. Miller <davem@davemloft.net>
Mon, 14 Nov 2016 21:20:54 +0000 (16:20 -0500)
commitae8e3b73d868efd0b5b5f4037ec0afb97a2cba26
tree31491c40f00c8b5a9f0fe2d7fc2a1bbcf878578f
parenta117ab410a83a145614681b73d914fd32bd9d926
parent3d0f38050d52bb90b387942d8f5c760b46d70785
Merge branch 'bnx2-kdump-fix'

Baoquan He says:

====================
bnx2: Wait for in-flight DMA to complete at probe stage

This is v2 post.

In commit 28190b3 ("bnx2: Reset device during driver initialization"),
firmware requesting code was moved from open stage to probe stage.
The reason is in kdump kernel hardware iommu need device be reset in
driver probe stage, otherwise those in-flight DMA from 1st kernel
will continue going and look up into the newly created io-page tables.
However bnx2 chip resetting involves firmware requesting issue, that
need be done in open stage.

Michale Chan suggested we can just wait for the old in-flight DMA to
complete at probe stage, then though without device resetting, we
don't need to worry the old in-flight DMA could continue looking up
the newly created io-page tables.

v1->v2:
    Michael suggested to wait for the in-flight DMA to complete at probe
    stage. So give up the old method of trying to reset chip at probe
    stage, take the new way accordingly.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>