forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
BPF alignment tests got a conflict because the registers are output as Rn_w instead of just Rn in net-next, and in net a fixup for a testcase prohibits logical operations on pointers before using them. Also, we should attempt to patch BPF call args if JIT always on is enabled. Instead, if we fail to JIT the subprogs we should pass an error back up and fail immediately. Signed-off-by: David S. Miller <[email protected]>
- Loading branch information
Showing
72 changed files
with
778 additions
and
348 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,11 +9,11 @@ Contents: | |
batman-adv | ||
kapi | ||
z8530book | ||
msg_zerocopy | ||
|
||
.. only:: subproject | ||
|
||
Indices | ||
======= | ||
|
||
* :ref:`genindex` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
CONFIG_SMP=y | ||
CONFIG_PCI=y | ||
CONFIG_PCIE_XILINX=y | ||
CONFIG_SYSVIPC=y | ||
CONFIG_POSIX_MQUEUE=y | ||
CONFIG_IKCONFIG=y | ||
CONFIG_IKCONFIG_PROC=y | ||
CONFIG_CGROUPS=y | ||
CONFIG_CGROUP_SCHED=y | ||
CONFIG_CFS_BANDWIDTH=y | ||
CONFIG_CGROUP_BPF=y | ||
CONFIG_NAMESPACES=y | ||
CONFIG_USER_NS=y | ||
CONFIG_BLK_DEV_INITRD=y | ||
CONFIG_EXPERT=y | ||
CONFIG_CHECKPOINT_RESTORE=y | ||
CONFIG_BPF_SYSCALL=y | ||
CONFIG_NET=y | ||
CONFIG_PACKET=y | ||
CONFIG_UNIX=y | ||
CONFIG_INET=y | ||
CONFIG_IP_MULTICAST=y | ||
CONFIG_IP_ADVANCED_ROUTER=y | ||
CONFIG_IP_PNP=y | ||
CONFIG_IP_PNP_DHCP=y | ||
CONFIG_IP_PNP_BOOTP=y | ||
CONFIG_IP_PNP_RARP=y | ||
CONFIG_NETLINK_DIAG=y | ||
CONFIG_DEVTMPFS=y | ||
CONFIG_BLK_DEV_LOOP=y | ||
CONFIG_VIRTIO_BLK=y | ||
CONFIG_BLK_DEV_SD=y | ||
CONFIG_BLK_DEV_SR=y | ||
CONFIG_ATA=y | ||
CONFIG_SATA_AHCI=y | ||
CONFIG_SATA_AHCI_PLATFORM=y | ||
CONFIG_NETDEVICES=y | ||
CONFIG_VIRTIO_NET=y | ||
CONFIG_MACB=y | ||
CONFIG_E1000E=y | ||
CONFIG_R8169=y | ||
CONFIG_MICROSEMI_PHY=y | ||
CONFIG_INPUT_MOUSEDEV=y | ||
CONFIG_SERIAL_8250=y | ||
CONFIG_SERIAL_8250_CONSOLE=y | ||
CONFIG_SERIAL_OF_PLATFORM=y | ||
# CONFIG_PTP_1588_CLOCK is not set | ||
CONFIG_DRM=y | ||
CONFIG_DRM_RADEON=y | ||
CONFIG_FRAMEBUFFER_CONSOLE=y | ||
CONFIG_USB=y | ||
CONFIG_USB_XHCI_HCD=y | ||
CONFIG_USB_XHCI_PLATFORM=y | ||
CONFIG_USB_EHCI_HCD=y | ||
CONFIG_USB_EHCI_HCD_PLATFORM=y | ||
CONFIG_USB_OHCI_HCD=y | ||
CONFIG_USB_OHCI_HCD_PLATFORM=y | ||
CONFIG_USB_STORAGE=y | ||
CONFIG_USB_UAS=y | ||
CONFIG_VIRTIO_MMIO=y | ||
CONFIG_RAS=y | ||
CONFIG_EXT4_FS=y | ||
CONFIG_EXT4_FS_POSIX_ACL=y | ||
CONFIG_AUTOFS4_FS=y | ||
CONFIG_MSDOS_FS=y | ||
CONFIG_VFAT_FS=y | ||
CONFIG_TMPFS=y | ||
CONFIG_TMPFS_POSIX_ACL=y | ||
CONFIG_NFS_FS=y | ||
CONFIG_NFS_V4=y | ||
CONFIG_NFS_V4_1=y | ||
CONFIG_NFS_V4_2=y | ||
CONFIG_ROOT_NFS=y | ||
# CONFIG_RCU_TRACE is not set | ||
CONFIG_CRYPTO_USER_API_HASH=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.