diff options
author | Sathya Perla <sathya.perla@emulex.com> | 2011-06-29 23:32:56 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-06-30 22:32:50 -0700 |
commit | 2b3f291bf98e7cbf76afd9b0c96c81df5f5890f9 (patch) | |
tree | c393be90e989391c804531b65fc524a98ac6e117 /drivers/net/benet/be_cmds.h | |
parent | qlcnic: add external loopback support (diff) | |
download | linux-dev-2b3f291bf98e7cbf76afd9b0c96c81df5f5890f9.tar.xz linux-dev-2b3f291bf98e7cbf76afd9b0c96c81df5f5890f9.zip |
be2net: fix certain cmd failure logging
Some (older)versions of cards/fw may not recognize certain cmds and
return illegal/unsupported errors. As long as the driver can handle
this gracefully there is no need to log an error msg.
Also finetuned 2 existing error log messages.
Signed-off-by: Sathya Perla <sathya.perla@emulex.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r-- | drivers/net/benet/be_cmds.h | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/drivers/net/benet/be_cmds.h b/drivers/net/benet/be_cmds.h index d08289e21f61..f0d745742d9d 100644 --- a/drivers/net/benet/be_cmds.h +++ b/drivers/net/benet/be_cmds.h @@ -51,17 +51,12 @@ struct be_mcc_wrb { /* Completion Status */ enum { - MCC_STATUS_SUCCESS = 0x0, -/* The client does not have sufficient privileges to execute the command */ - MCC_STATUS_INSUFFICIENT_PRIVILEGES = 0x1, -/* A parameter in the command was invalid. */ - MCC_STATUS_INVALID_PARAMETER = 0x2, -/* There are insufficient chip resources to execute the command */ - MCC_STATUS_INSUFFICIENT_RESOURCES = 0x3, -/* The command is completing because the queue was getting flushed */ - MCC_STATUS_QUEUE_FLUSHING = 0x4, -/* The command is completing with a DMA error */ - MCC_STATUS_DMA_FAILED = 0x5, + MCC_STATUS_SUCCESS = 0, + MCC_STATUS_FAILED = 1, + MCC_STATUS_ILLEGAL_REQUEST = 2, + MCC_STATUS_ILLEGAL_FIELD = 3, + MCC_STATUS_INSUFFICIENT_BUFFER = 4, + MCC_STATUS_UNAUTHORIZED_REQUEST = 5, MCC_STATUS_NOT_SUPPORTED = 66 }; |