Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c54df097 authored by Subash Abhinov Kasiviswanathan's avatar Subash Abhinov Kasiviswanathan Committed by Gerrit - the friendly Code Review server
Browse files

rmnet: shs: Initial commit



shs is smart hash stamping.
This module does load based cpu re-routing of data.

Change-Id: I2a464b77cf6003309a49241807d53a1a777e9ab0
Acked-by: default avatarMahadevan Appadurai <mappadur@qti.qualcomm.com>
Signed-off-by: default avatarSubash Abhinov Kasiviswanathan <subashab@codeaurora.org>
parent 45ce10bd
Loading
Loading
Loading
Loading

drivers/Android.mk

0 → 100644
+1 −0
Original line number Diff line number Diff line
include $(call all-subdir-makefiles)
+1 −0
Original line number Diff line number Diff line
include $(call all-subdir-makefiles)
+25 −0
Original line number Diff line number Diff line
ifeq ($(call is-board-platform-in-list, msmnile),true)
#Make file to create RMNET_SHS DLKM
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)

LOCAL_CFLAGS := -Wno-macro-redefined -Wno-unused-function -Wall -Werror
LOCAL_CLANG :=true

LOCAL_MODULE_PATH := $(KERNEL_MODULES_OUT)
LOCAL_MODULE := rmnet_shs.ko

LOCAL_SRC_FILES := rmnet_shs_main.c rmnet_shs_config.c rmnet_shs_wq.c

RMNET_SHS_BLD_DIR := $(ANDROID_BUILD_TOP)/vendor/qcom/opensource/data-kernel/drivers/rmnet/shs

KBUILD_OPTIONS := $(RMNET_SHS_BLD_DIR)
LOCAL_MODULE_TAGS := debug

DLKM_DIR := $(ANDROID_BUILD_TOP)/device/qcom/common/dlkm


$(warning $(DLKM_DIR))
include $(DLKM_DIR)/AndroidKernelModule.mk

endif #End of Check for target
+2 −0
Original line number Diff line number Diff line
obj-m += rmnet_shs.o
rmnet_shs-y := rmnet_shs_config.o rmnet_shs_main.o rmnet_shs_wq.o
+10 −0
Original line number Diff line number Diff line
#
# RMNET_SHS driver
#

menuconfig RMNET_SHS
    tristate "Rmnet SHS driver"
    default m
#    depends on RMNET
    ---help---
        performance mode of rmnet driver
Loading