diff options
author | Gavin Shan <gwshan@linux.vnet.ibm.com> | 2016-10-04 03:25:51 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-10-04 09:11:50 +0300 |
commit | a0509cbeef5dafbab42c42622e012bcc94c3eb9e (patch) | |
tree | 9f4493950b3f7b8c7f5bc2f33774edaf608383bd /net/ncsi/ncsi-rsp.c | |
parent | a15af54f8f2a32d629781417503843bfbd02a004 (diff) | |
download | linux-a0509cbeef5dafbab42c42622e012bcc94c3eb9e.tar.xz |
net/ncsi: Allow to extend NCSI request properties
There is only one NCSI request property for now: the response for
the sent command need drive the workqueue or not. So we had one
field (@driven) for the purpose. We lost the flexibility to extend
NCSI request properties.
This replaces @driven with @flags and @req_flags in NCSI request
and NCSI command argument struct. Each bit of the newly introduced
field can be used for one property. No functional changes introduced.
Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com>
Reviewed-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ncsi/ncsi-rsp.c')
-rw-r--r-- | net/ncsi/ncsi-rsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ncsi/ncsi-rsp.c b/net/ncsi/ncsi-rsp.c index af84389a6bf1..86cdaebd8d9e 100644 --- a/net/ncsi/ncsi-rsp.c +++ b/net/ncsi/ncsi-rsp.c @@ -317,7 +317,7 @@ static int ncsi_rsp_handler_gls(struct ncsi_request *nr) ncm->data[3] = ntohl(rsp->other); ncm->data[4] = ntohl(rsp->oem_status); - if (nr->driven) + if (nr->flags & NCSI_REQ_FLAG_EVENT_DRIVEN) return 0; /* Reset the channel monitor if it has been enabled */ |