messages from 2018-03-29 10:56:01 to 2018-03-29 11:24:05 UTC [more...]
defconfig file (or fragment files) not used
2018-03-29 11:06 UTC (7+ messages)
[PATCH 000/109] remove in-kernel calls to syscalls
2018-03-29 11:24 UTC (90+ messages)
` [PATCH 001/109] syscalls: define and explain goal to not call syscalls in the kernel
` [PATCH 002/109] kernel: use kernel_wait4() instead of sys_wait4()
` [PATCH 003/109] kernel: open-code sys_rt_sigpending() in sys_sigpending()
` [PATCH 004/109] kexec: call do_kexec_load() in compat syscall directly
` [PATCH 005/109] mm: use do_futex() instead of sys_futex() in mm_release()
` [PATCH 006/109] x86: use _do_fork() in compat_sys_x86_clone()
` [PATCH 007/109] x86: remove compat_sys_x86_waitpid()
` [PATCH 008/109] net: socket: add __sys_recvfrom() helper; remove in-kernel call to syscall
` [PATCH 009/109] net: socket: add __sys_sendto() "
` [PATCH 010/109] net: socket: add __sys_accept4() "
` [PATCH 011/109] net: socket: add __sys_socket() "
` [PATCH 012/109] net: socket: add __sys_bind() "
` [PATCH 013/109] net: socket: add __sys_connect() "
` [PATCH 014/109] net: socket: add __sys_listen() "
` [PATCH 015/109] net: socket: add __sys_getsockname() "
` [PATCH 016/109] net: socket: add __sys_getpeername() "
` [PATCH 017/109] net: socket: add __sys_socketpair() "
` [PATCH 018/109] net: socket: add __sys_shutdown() "
` [PATCH 019/109] net: socket: add __sys_setsockopt() "
` [PATCH 020/109] net: socket: add __sys_getsockopt() "
` [PATCH 021/109] net: socket: add do_sys_recvmmsg() "
` [PATCH 022/109] net: socket: move check for forbid_cmsg_compat to __sys_...msg()
` [PATCH 023/109] net: socket: replace calls to sys_send() with __sys_sendto()
` [PATCH 024/109] net: socket: replace call to sys_recv() with __sys_recvfrom()
` [PATCH 025/109] net: socket: add __compat_sys_recvfrom() helper; remove in-kernel call to compat syscall
` [PATCH 026/109] net: socket: add __compat_sys_setsockopt() "
` [PATCH 027/109] net: socket: add __compat_sys_getsockopt() "
` [PATCH 028/109] net: socket: add __compat_sys_recvmmsg() "
` [PATCH 029/109] net: socket: add __compat_sys_...msg() helpers; remove in-kernel calls to compat syscalls
` [PATCH 030/109] ipc: add semtimedop syscall/compat_syscall wrappers
` [PATCH 031/109] ipc: add semget syscall wrapper
` [PATCH 032/109] ipc: add semctl syscall/compat_syscall wrappers
` [PATCH 033/109] ipc: add msgget syscall wrapper
` [PATCH 034/109] ipc: add shmget "
` [PATCH 035/109] ipc: add shmdt "
` [PATCH 036/109] ipc: add shmctl syscall/compat_syscall wrappers
` [PATCH 037/109] ipc: add msgctl "
` [PATCH 038/109] ipc: add msgrcv "
` [PATCH 039/109] ipc: add msgsnd "
` [PATCH 040/109] kernel: add do_getpgid() helper; remove internal call to sys_getpgid()
` [PATCH 041/109] kernel: add do_compat_sigaltstack() helper; remove in-kernel call to compat syscall
` [PATCH 042/109] kernel: provide ksys_*() wrappers for syscalls called by kernel/uid16.c
` [PATCH 043/109] sched: add do_sched_yield() helper; remove in-kernel call to sched_yield()
` [PATCH 044/109] mm: add kernel_migrate_pages() helper, move compat syscall to mm/mempolicy.c
` [PATCH 045/109] mm: add kernel_move_pages() helper, move compat syscall to mm/migrate.c
` [PATCH 046/109] mm: add kernel_mbind() helper; remove in-kernel call to syscall
` [PATCH 047/109] mm: add kernel_[sg]et_mempolicy() helpers; remove in-kernel calls to syscalls
` [PATCH 048/109] fs: add do_readlinkat() helper; remove internal call to sys_readlinkat()
` [PATCH 049/109] fs: add do_pipe2() helper; remove internal call to sys_pipe2()
` [PATCH 050/109] fs: add do_renameat2() helper; remove internal call to sys_renameat2()
` [PATCH 051/109] fs: add do_futimesat() helper; remove internal call to sys_futimesat()
` [PATCH 052/109] fs: add do_epoll_*() helpers; remove internal calls to sys_epoll_*()
` [PATCH 053/109] fs: add do_signalfd4() helper; remove internal calls to sys_signalfd4()
` [PATCH 054/109] fs: add do_eventfd() helper; remove internal call to sys_eventfd()
` [PATCH 055/109] fs: add do_lookup_dcookie() helper; remove in-kernel call to syscall
` [PATCH 056/109] fs: add do_vmsplice() "
` [PATCH 057/109] fs: add kern_select() helper; remove in-kernel call to sys_select()
` [PATCH 058/109] fs: add do_compat_fcntl64() helper; remove in-kernel call to compat syscall
` [PATCH 059/109] fs: add do_compat_select() "
` [PATCH 060/109] fs: add do_compat_signalfd4() "
` [PATCH 061/109] fs: add do_compat_futimesat() "
` [PATCH 062/109] inotify: add do_inotify_init() helper; remove in-kernel call to syscall
` [PATCH 063/109] fanotify: add do_fanotify_mark() "
` [PATCH 064/109] fs/quota: add kernel_quotactl() "
` [PATCH 065/109] fs/quota: use COMPAT_SYSCALL_DEFINE for sys32_quotactl()
` [PATCH 066/109] fs: add ksys_mount() helper; remove in-kernel calls to sys_mount()
` [PATCH 067/109] fs: add ksys_umount() helper; remove in-kernel call to sys_umount()
` [PATCH 068/109] fs: add ksys_dup{,3}() helper; remove in-kernel calls to sys_dup{,3}()
` [PATCH 069/109] fs: add ksys_chroot() helper; remove-in kernel calls to sys_chroot()
` [PATCH 070/109] fs: add ksys_write() helper; remove in-kernel calls to sys_write()
` [PATCH 071/109] fs: add ksys_chdir() helper; remove in-kernel calls to sys_chdir()
` [PATCH 072/109] fs: add ksys_unlink() wrapper; remove in-kernel calls to sys_unlink()
` [PATCH 073/109] hostfs: rename do_rmdir() to hostfs_do_rmdir()
` [PATCH 074/109] fs: add ksys_rmdir() wrapper; remove in-kernel calls to sys_rmdir()
` [PATCH 075/109] fs: add do_mkdirat() helper and ksys_mkdir() wrapper; remove in-kernel calls to syscall
` [PATCH 076/109] fs: add do_symlinkat() helper and ksys_symlink() "
` [PATCH 077/109] fs: add do_mknodat() helper and ksys_mknod() "
` [PATCH 078/109] fs: add do_linkat() helper and ksys_link() "
` [PATCH 079/109] fs: add ksys_fchmod() and do_fchmodat() helpers and ksys_chmod() "
` [PATCH 080/109] fs: add do_faccessat() helper and ksys_access() "
` [PATCH 081/109] fs: add do_fchownat(), ksys_fchown() helpers and ksys_{,l}chown() wrappers
` [PATCH 082/109] fs: add ksys_ftruncate() wrapper; remove in-kernel calls to sys_ftruncate()
` [PATCH 083/109] fs: add ksys_close() wrapper; remove in-kernel calls to sys_close()
` [PATCH 084/109] fs: add ksys_open() wrapper; remove in-kernel calls to sys_open()
` [PATCH 085/109] fs: add ksys_getdents64() helper; remove in-kernel calls to sys_getdents64()
` [PATCH 086/109] fs: add ksys_ioctl() helper; remove in-kernel calls to sys_ioctl()
` [PATCH 087/109] fs: add ksys_lseek() helper; remove in-kernel calls to sys_lseek()
` [PATCH 088/109] fs: add ksys_read() helper; remove in-kernel calls to sys_read()
[PATCH 0/2] add pipe event for optimizing negotiating
2018-03-29 11:24 UTC (4+ messages)
` [PATCH 2/2] vhost: "
SEGFAULT on sim_remove()
2018-03-29 11:23 UTC (2+ messages)
[PATCH] drm/gpu-sched: fix force APP kill hang
2018-03-29 11:23 UTC (8+ messages)
[PATCH 1/3] drm/i915/execlists: Reset ring registers on rebinding contexts
2018-03-29 11:22 UTC (6+ messages)
` [PATCH 3/3] drm/i915: Include the HW breadcrumb whenever we trace the global_seqno
[PATCH 1/3] virt: vbox: Add vbg_req_free() helper function
2018-03-29 11:21 UTC (3+ messages)
` [PATCH 2/3] virt: vbox: Use __get_free_pages instead of kmalloc for DMA32 memory
` [PATCH 3/3] virt: vbox: Log an error whenwe fail to get the host version
[PATCHv2 00/14] Partial MKTME enabling
2018-03-29 11:20 UTC (3+ messages)
` [PATCHv2 06/14] mm/page_alloc: Propagate encryption KeyID through page allocator
[PATCH 0/4] rte_flow extension for vSwitch acceleration
2018-03-29 11:20 UTC (3+ messages)
` [PATCH 1/4] ether: add flow action to redirect packet in a switch domain
[PATCH] credential: cred helper fast exit can cause SIGPIPE, crash
2018-03-29 11:19 UTC (2+ messages)
[Qemu-arm] [PATCH v2 0/2] two fixes for KVM GICv3 dist get/put functions
2018-03-29 11:11 UTC (10+ messages)
` [Qemu-arm] [PATCH v2 2/2] arm_gicv3_kvm: kvm_dist_get/put: skip the registers banked by GICR
` [Qemu-devel] "
[PATCH] drm: Use srcu to protect drm_device.unplugged
2018-03-29 11:18 UTC (4+ messages)
[PATCH] drm/i915/execlists: Set queue priority from secondary port
2018-03-29 11:17 UTC (2+ messages)
` ✗ Fi.CI.CHECKPATCH: warning for "
[PATCH 1/4] drm/vgem: Fix vgem_init to get drm device avaliable
2018-03-29 11:17 UTC (5+ messages)
` [PATCH 3/4] drm/virtio: remove drm_dev_set_unique workaround
[RFCv9 PATCH 00/29] Request API
2018-03-29 11:16 UTC (8+ messages)
` [RFCv9 PATCH 03/29] media-request: allocate media requests
[PATCH] nl80211: Update ERP info using NL80211_CMD_UPDATE_CONNECT_PARAMS
2018-03-29 11:16 UTC (4+ messages)
[GIT PULL 00/10] stm class/intel_th: Updates for v4.17
2018-03-29 11:14 UTC (11+ messages)
` [GIT PULL 01/10] MAINTAINERS: Bestow upon myself the care for drivers/hwtracing
` [GIT PULL 02/10] stm class: Add SPDX GPL-2.0 header to replace GPLv2 boilerplate
` [GIT PULL 03/10] stm class: Make dummy's master/channel ranges configurable
` [GIT PULL 04/10] intel_th: Add SPDX GPL-2.0 header to replace GPLv2 boilerplate
` [GIT PULL 05/10] intel_th: Use correct method of finding hub
` [GIT PULL 06/10] intel_th: Don't touch switch routing in host mode
` [GIT PULL 07/10] intel_th: Pick up irq number from resources
` [GIT PULL 08/10] intel_th: Allow forcing host mode through drvdata
` [GIT PULL 09/10] intel_th: Add ACPI glue layer
` [GIT PULL 10/10] hwtracing: Add HW tracing support menu
[PATCH v4 0/9] extend PWM framework to support PWM modes
2018-03-29 11:10 UTC (30+ messages)
` [PATCH v4 1/9] pwm: extend PWM framework with "
` [PATCH v4 2/9] pwm: clps711x: populate PWM mode in of_xlate function
` [PATCH v4 3/9] pwm: cros-ec: "
` [PATCH v4 4/9] pwm: pxa: "
` [PATCH v4 5/9] pwm: add PWM modes
` [PATCH v4 6/9] pwm: atmel: add pwm capabilities
` [PATCH v4 7/9] pwm: add push-pull mode support
` [PATCH v4 8/9] pwm: add documentation for pwm push-pull mode
` [PATCH v4 9/9] pwm: atmel: add push-pull mode support
[PATCH] Extract initrd free logic from arch-specific code
2018-03-29 11:12 UTC (6+ messages)
` [PATCH v4 0/16] Generic initrd_free_mem
` [PATCH v4 02/16] riscv: Use generic free_initrd_mem
[PATCH v3 0/8] arm: Base support for Renesas RZN1D-DB Board
2018-03-29 11:12 UTC (7+ messages)
` [PATCH v3 4/8] reset: Renesas RZ/N1 reboot driver
` [PATCH v3 6/8] DT: arm: Add Renesas RZ/N1 SoC base device tree file
[PATCH resend 0/2] preparatory arm64 asm patches for yielding the NEON
2018-03-29 11:12 UTC (7+ messages)
` [PATCH resend 2/2] arm64: assembler: add macros to conditionally yield the NEON under PREEMPT
[LTP] LTP-20170116: in6_01 fail
2018-03-29 11:12 UTC
[PATCH BlueZ 1/4] shared/shell: Don't allocate any data if env value is NULL
2018-03-29 11:12 UTC (2+ messages)
[GIT PULL] irqchip updates for v4.17
2018-03-29 11:11 UTC
[PATCH v2 2/2] media: Add a driver for the ov7251 camera sensor
2018-03-29 11:11 UTC (4+ messages)
` [v2,2/2] "
[Qemu-devel] [RFC PATCH 0/8] qemu-img convert with copy offloading
2018-03-29 11:09 UTC (9+ messages)
` [Qemu-devel] [RFC PATCH 1/8] block: Introduce bdrv_co_map_range API
` [Qemu-devel] [RFC PATCH 2/8] qcow2: Implement bdrv_co_map_range
` [Qemu-devel] [RFC PATCH 3/8] block: Introduce bdrv_co_copy_range
` [Qemu-devel] [RFC PATCH 4/8] file-posix: Implement bdrv_co_copy_range
` [Qemu-devel] [RFC PATCH 5/8] file-posix: Implement bdrv_co_map_range
` [Qemu-devel] [RFC PATCH 6/8] raw: Implement raw_co_map_range
` [Qemu-devel] [RFC PATCH 7/8] block-backend: Add blk_co_copy_range
` [Qemu-devel] [RFC PATCH 8/8] qemu-img: Convert with copy offloading
Cut-off date for Xen 4.11 is March 30th, 2018
2018-03-29 11:05 UTC (8+ messages)
[RFC][PATCH] ovl: opaque xattr should overrule redirect xattr
2018-03-29 11:04 UTC (3+ messages)
[PATCH v4 0/7] phy: qcom: Updates for USB PHYs on SDM845
2018-03-29 11:04 UTC (9+ messages)
` [PATCH v4 1/7] clk: msm8996-gcc: change halt check for USB/PCIE pipe_clk
` [PATCH v4 2/7] phy: qcom-qmp: Enable pipe_clk before PHY initialization
` [PATCH v4 3/7] phy: qcom-qusb2: Fix crash if nvmem cell not specified
` [PATCH v4 4/7] dt-bindings: phy-qcom-qmp: Update bindings for sdm845
` [PATCH v4 5/7] phy: qcom-qmp: Add QMP V3 USB3 UNI PHY support "
` [PATCH v4 6/7] dt-bindings: phy-qcom-usb2: Add support to override tuning values
` [PATCH v4 7/7] phy: qcom-qusb2: Add QUSB2 PHYs support for sdm845
[PATCH] Delete some unusefull operations for centaur CPU/platform
2018-03-29 11:03 UTC (3+ messages)
` 答复: "
` 答复: "
[PATCH v3 1/2] eventdev: add device stop flush callback
2018-03-29 11:02 UTC (6+ messages)
` [PATCH v4 "
[PATCH v18 00/11] x86: guest resource mapping
2018-03-29 11:02 UTC (5+ messages)
` [PATCH v18 10/11] common: add a new mappable resource type: XENMEM_resource_grant_table
[PATCH 1/3] drm/omap: fix uninitialized ret variable
2018-03-29 11:02 UTC (6+ messages)
` [PATCH 2/3] drm/omap: fix possible NULL ref issue in tiler_reserve_2d
` [PATCH 3/3] drm/omap: remove unused function
[Qemu-devel] [PATCH for-2.13] pc-bios/s390-ccw: Increase virtio timeout to 30 seconds
2018-03-29 11:02 UTC (3+ messages)
[PATCH] drm/i915: Don't deballoon unused ggtt drm_mm_node in linux guest
2018-03-29 11:01 UTC (2+ messages)
` ✗ Fi.CI.IGT: failure for "
[U-Boot] MPC8548 U boot
2018-03-29 11:01 UTC
[PATCH] pci: move pcie_pme_root_status_cleanup into SUSPEND section
2018-03-29 11:01 UTC (2+ messages)
[PATCH net-next] MAINTAINERS: Update my email address from freescale to nxp
2018-03-29 10:58 UTC
[Buildroot] [PATCH v2] board: add support for ARC HS Development Kit (HSDK)
2018-03-29 10:58 UTC (5+ messages)
[PATCH 00/41] Memory Hotplug for DPDK
2018-03-29 10:57 UTC (5+ messages)
` [PATCH v2 "
[PATCH][RFC] ASoC: wm8350: remove snd_soc_codec
2018-03-29 10:56 UTC (4+ messages)
[PATCH v4 4/6] ipc: Clamp msgmni and shmmni to the real IPCMNI limit
2018-03-29 10:56 UTC (11+ messages)
` [RFC][PATCH] ipc: Remove IPCMNI
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.