|
@@ -613,7 +613,9 @@ static long ipa_adpl_ioctl(struct file *filp,
|
|
|
switch (cmd) {
|
|
|
case IPA_IOC_ODL_GET_AGG_BYTE_LIMIT:
|
|
|
odl_pipe_info.agg_byte_limit =
|
|
|
- ipa3_odl_ctx->odl_sys_param.ipa_ep_cfg.aggr.aggr_byte_limit;
|
|
|
+ /*Modem expecting value in bytes. so passing 15 = 15*1024*/
|
|
|
+ (ipa3_odl_ctx->odl_sys_param.ipa_ep_cfg.aggr.aggr_byte_limit *
|
|
|
+ 1024);
|
|
|
if (copy_to_user((void __user *)arg, &odl_pipe_info,
|
|
|
sizeof(odl_pipe_info))) {
|
|
|
retval = -EFAULT;
|