diff options
author | Julian Wiedmann <jwi@linux.ibm.com> | 2020-09-23 10:36:57 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-09-23 12:07:54 -0700 |
commit | 7fb7fe5c7bacb1b1189b779f7f81c785bfc964a4 (patch) | |
tree | 675f2b9cba28732df8b1f0fed45f1e5be58858aa /drivers/s390/net/qeth_core.h | |
parent | f3380b1edc1dd06d874227570a5fe0fbf50eb607 (diff) | |
download | linux-7fb7fe5c7bacb1b1189b779f7f81c785bfc964a4.tar.gz linux-7fb7fe5c7bacb1b1189b779f7f81c785bfc964a4.tar.bz2 linux-7fb7fe5c7bacb1b1189b779f7f81c785bfc964a4.zip |
s390/qeth: cancel cmds earlier during teardown
Originators of cmd IO typically hold the rtnl or conf_mutex to protect
against a concurrent teardown.
Since qeth_set_offline() already holds the conf_mutex, the main reason
why we still care about cancelling pending cmds is so that they release
the rtnl when we need it ourselves.
So move this step a little earlier into the teardown sequence.
Signed-off-by: Julian Wiedmann <jwi@linux.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/s390/net/qeth_core.h')
-rw-r--r-- | drivers/s390/net/qeth_core.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/s390/net/qeth_core.h b/drivers/s390/net/qeth_core.h index f931b764d6a4..711ab5097bd1 100644 --- a/drivers/s390/net/qeth_core.h +++ b/drivers/s390/net/qeth_core.h @@ -1067,7 +1067,6 @@ void qeth_put_cmd(struct qeth_cmd_buffer *iob); int qeth_schedule_recovery(struct qeth_card *card); void qeth_flush_local_addrs(struct qeth_card *card); int qeth_poll(struct napi_struct *napi, int budget); -void qeth_clear_ipacmd_list(struct qeth_card *); int qeth_qdio_clear_card(struct qeth_card *, int); void qeth_clear_working_pool_list(struct qeth_card *); void qeth_drain_output_queues(struct qeth_card *card); |