summaryrefslogtreecommitdiff
path: root/arch/um/configs (follow)
Commit message (Collapse)AuthorAge
* defconfig: Enable support for destroying TCP sockets through diagSubash Abhinov Kasiviswanathan2016-08-17
| | | | | | | | | | | | | | | | This enables the SOCK_DESTROY feature for TCP sockets. When changing networks, this is needed to close all blocking calls on existing sockets and return ECONNABORTED and close the socket gracefully. The other end of the connection is sent a RST to notify this event. This feature was earlier implemented using IOCTL SIOCKILLADDR and called a custom function tcp_nuke_addr internally. This functionality will be deprecated going forward in favor of SOCK_DESTROY. CRs-Fixed: 1056029 Change-Id: Ibdba6c1a4fc4ce75d8ba1b6c61353ab6662e7914 Signed-off-by: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
* Revert "net: activity_stats: Add statistics for network transmission activity"Amit Pundir2016-07-28
| | | | | | | | | | | | This reverts commit afedd7beba14385fd797166751fde39e0f52cf72. Change-Id: Ibc9160b445254b0212c23664a94fd27b7788aa76 CRs-Fixed: 1035969 Signed-off-by: Amit Pundir <amit.pundir@linaro.org> Git-commit: 42d9422a803afc7c1db3502787fdbe75577bc14d Git-repo: https://android.googlesource.com/kernel/common/ [bflowers@codeaurora.org: Fix-up internal configs] Signed-off-by: Bryse Flowers <bflowers@codeaurora.org>
* defconfig: um: Disable activity statsBryse Flowers2016-07-19
| | | | | | | | Temporarily disable modules while stability issues are resolved. Change-Id: I9c21883988e3da494c3a0a815fd3eee4c1a70a0f CRs-Fixed: 1035969 Signed-off-by: Bryse Flowers <bflowers@codeaurora.org>
* defconfig: arm64: msm: Disable qtaguid and net activity statsBryse Flowers2016-07-11
| | | | | | | | Temporarily disable modules while stability issues are resolved. Change-Id: I6bab3370caf776de25316da58ca48fcd9fbc4b5e CRs-Fixed: 1035969 Signed-off-by: Bryse Flowers <bflowers@codeaurora.org>
* UM: x86_64: add defconfig file for UML on x86_64Jeevan Shriram2016-03-23
| | | | | | | | Add defconfig file for compiling UML build on x86_64 architecture. Change-Id: I84746ce766c0f1032ec33eb5ea16a7fb5dfa3de9 Signed-off-by: Jeevan Shriram <jshriram@codeaurora.org>
* arch/um: make it work with defconfig and x86_64Ramkumar Ramachandra2013-11-17
arch/um/defconfig only lists one default configuration, and that applies only to the i386 architecture. Replace it with two minimal configuration files generated using `make savedefconfig`: i386_defconfig and x86_64_defconfig The build scripts now require two updates: 1. um's Kconfig (arch/x86/um/Kconfig) should specify an ARCH_DEFCONFIG section explicitly pointing to these scripts if the required variables are set. Take care to remove the DEFCONFIG_LIST section defined in the included file arch/um/Kconfig.common. 2. um's Makefile (arch/um/Makefile) should set KBUILD_DEFCONFIG properly for the top-level Makefile to pick up. Copy the logic in arch/x86/Makefile to properly pick the defconfig file depending on the actual architecture; except we're working with $SUBARCH here, instead of $ARCH. Now, you can do: $ ARCH=um make defconfig $ ARCH=um make and successfully build User-Mode Linux on an x86_64 box in default configuration. Cc: Richard Weinberger <richard@nod.at> Cc: Jeff Dike <jdike@addtoit.com> Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com> Signed-off-by: Richard Weinberger <richard@nod.at>