mirror of
https://github.com/commaai/agnos-kernel-sdm845.git
synced 2026-06-16 07:14:50 +08:00
This is a snapshot of the rmnet_data driver taken as of msm-4.4.
commit 5da00923b1544ba ("rmnet_data: Changing format specifier to
%pK").
Additionally, fix some style issues reported by checkpatch.
CRs-Fixed: 1078373
Change-Id: Idb2df22e61803e04a01db64ea5e9d1e93ae92e09
Signed-off-by: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
#
|
|
# RMNET Data and MAP driver
|
|
#
|
|
|
|
menuconfig RMNET_DATA
|
|
depends on NETDEVICES
|
|
bool "RmNet Data and MAP driver"
|
|
---help---
|
|
If you say Y here, then the rmnet_data module will be statically
|
|
compiled into the kernel. The rmnet data module provides MAP
|
|
functionality for embedded and bridged traffic.
|
|
if RMNET_DATA
|
|
|
|
config RMNET_DATA_FC
|
|
bool "RmNet Data Flow Control"
|
|
depends on NET_SCHED && NET_SCH_PRIO
|
|
---help---
|
|
Say Y here if you want RmNet data to handle in-band flow control and
|
|
ioctl based flow control. This depends on net scheduler and prio queue
|
|
capability being present in the kernel. In-band flow control requires
|
|
MAP protocol be used.
|
|
config RMNET_DATA_DEBUG_PKT
|
|
bool "Packet Debug Logging"
|
|
---help---
|
|
Say Y here if you want RmNet data to be able to log packets in main
|
|
system log. This should not be enabled on production builds as it can
|
|
impact system performance. Note that simply enabling it here will not
|
|
enable the logging; it must be enabled at run-time as well.
|
|
endif # RMNET_DATA
|