diff options
author | Subash Abhinov Kasiviswanathan <subashab@codeaurora.org> | 2019-10-17 17:10:49 -0700 |
---|---|---|
committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2019-12-02 15:54:25 -0800 |
commit | db2b6dae75253bbfdc7f5d18273be8513d3766fc (patch) | |
tree | c054346f364c624ee6e33eac4aa6bbf58745113d | |
parent | 250aee961fa9ab303e93f8802677daad96c56e4e (diff) |
librmnetctl: Increase TX queue number
Increase TX queue number to 31 to support 5G SA requirement.
Change-Id: I3e57d2f527f7ac2059b54951eee2cf63b6028d02
-rw-r--r-- | rmnetctl/src/librmnetctl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rmnetctl/src/librmnetctl.c b/rmnetctl/src/librmnetctl.c index 691d51f..52e8ca9 100644 --- a/rmnetctl/src/librmnetctl.c +++ b/rmnetctl/src/librmnetctl.c @@ -131,7 +131,8 @@ enum { RMNET_FLOW_MSG_WDA_FREQ = 7, }; -#define RMNETCTL_NUM_TX_QUEUES 10 +/* 0 reserved, 1-15 for data, 16-30 for acks */ +#define RMNETCTL_NUM_TX_QUEUES 31 /* This needs to be hardcoded here because some legacy linux systems * do not have this definition |