messages from 2018-03-29 09:42:16 to 2018-03-29 11:53:32 UTC [more...]
[PATCH v4 1/3] Add notrace to lib/ucmpdi2.c
2018-03-29 10:41 UTC (3+ messages)
` [PATCH v4 2/3] lib: Rename compiler intrinsic selects to GENERIC_LIB_*
` [PATCH v4 3/3] MIPS: use generic GCC library routines from lib/
[PATCH 000/109] remove in-kernel calls to syscalls
2018-03-29 11:41 UTC (91+ 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 009/109] net: socket: add __sys_sendto() helper; remove in-kernel call to syscall
` [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 018/109] net: socket: add __sys_shutdown() "
` [PATCH 021/109] net: socket: add do_sys_recvmmsg() "
` [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 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 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 085/109] fs: add ksys_getdents64() helper; remove in-kernel calls to sys_getdents64()
` [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 089/109] fs: add ksys_sync() helper; remove in-kernel calls to sys_sync()
` [PATCH 090/109] kernel: add ksys_unshare() helper; remove in-kernel calls to sys_unshare()
` [PATCH 091/109] kernel: add ksys_setsid() helper; remove in-kernel call to sys_setsid()
` [PATCH 093/109] fs: add ksys_truncate() wrapper; remove in-kernel calls to sys_truncate()
` [PATCH 094/109] fs: add ksys_p{read,write}64() helpers; remove in-kernel calls to syscalls
` [PATCH 095/109] fs: add ksys_fallocate() wrapper; remove in-kernel calls to sys_fallocate()
` [PATCH 096/109] mm: add ksys_fadvise64_64() helper; remove in-kernel call to sys_fadvise64_64()
` [PATCH 097/109] mm: add ksys_mmap_pgoff() helper; remove in-kernel calls to sys_mmap_pgoff()
` [PATCH 099/109] x86/ioport: add ksys_ioperm() helper; remove in-kernel calls to sys_ioperm()
` [PATCH 100/109] x86: fix sys_sigreturn() return type to be long, not unsigned long
` [PATCH 102/109] kexec: move sys_kexec_load() prototype to syscalls.h
` [PATCH 103/109] syscalls: sort syscall prototypes in include/linux/syscalls.h
` [PATCH 104/109] net: remove compat_sys_*() prototypes from net/compat.h
` [PATCH 106/109] syscalls/x86: auto-create compat_sys_*() prototypes
` [PATCH 108/109] kernel/sys_ni: remove {sys_,sys_compat} from cond_syscall definitions
[PATCH v7 1/4] ioremap: Update pgtable free interfaces with addr
2018-03-29 11:53 UTC (2+ messages)
[PATCH] jffs2: safely remove obsolete dirent from the f->dents list
2018-03-29 12:00 UTC
[PATCH v2 0/2] Add support for ov7251 camera sensor
2018-03-29 11:51 UTC (9+ messages)
` [PATCH v2 2/2] media: Add a driver for the "
` [v2,2/2] "
[PATCH] Extract initrd free logic from arch-specific code
2018-03-29 11:50 UTC (22+ messages)
` [PATCH v4 0/16] Generic initrd_free_mem
` [PATCH v4 02/16] riscv: Use generic free_initrd_mem
` [PATCH v5 01/16] initrd: Add weakly-linked "
` [PATCH v5 02/16] riscv: Free initrds with "
` [PATCH v5 03/16] alpha: Switch to "
` [PATCH v5 04/16] arc: "
` [PATCH v5 05/16] c6x: "
` [PATCH v5 06/16] frv: "
` [PATCH v5 07/16] h8300: "
` [PATCH v5 08/16] m32r: "
` [PATCH v5 09/16] m68k: "
` [PATCH v5 10/16] microblaze: "
` [PATCH v5 11/16] nios2: "
` [PATCH v5 12/16] openrisc: "
` [PATCH v5 13/16] parisc: "
` [PATCH v5 14/16] powerpc: "
` [PATCH v5 15/16] sh: "
` [PATCH v5 16/16] um: "
[PATCH] MAINTAINERS: update entry for entry for ARM/berlin
2018-03-29 11:46 UTC (2+ messages)
[PATCH 1/8] lib/scatterlist: add sg_set_dma_addr() helper
2018-03-29 11:44 UTC (15+ messages)
` [PATCH 2/8] PCI: Add pci_find_common_upstream_dev()
` [PATCH 4/8] dma-buf: add peer2peer flag
[PATCH] crypto: chelsio: move chcr_ahash_continue declation out of header
2018-03-29 11:43 UTC (2+ messages)
[PATCH 0/2] net: mvneta: improve suspend/resume
2018-03-29 11:42 UTC (4+ messages)
` [PATCH 1/2] net: mvneta: split rxq/txq init into SW and HW parts
` [PATCH 2/2] net: mvneta: improve suspend/resume
[PATCH v3 0/6] clocksource: rework Atmel TCB timer driver
2018-03-29 11:42 UTC (7+ messages)
[RFC PATCH 0/2] driver core: add new dl device status DL_DEV_PROBE_FAILED
2018-03-29 11:24 UTC (5+ messages)
` [RFC PATCH 1/2] "
` [RFC PATCH 2/2] ACPI/IORT: use swiotlb_dma_ops when smmu probe failed
[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] drm: Use srcu to protect drm_device.unplugged
2018-03-29 11:18 UTC (3+ 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 (10+ 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 v3 0/8] arm: Base support for Renesas RZN1D-DB Board
2018-03-29 11:12 UTC (5+ 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
[GIT PULL] irqchip updates for v4.17
2018-03-29 11:11 UTC
[PATCH v4 0/7] phy: qcom: Updates for USB PHYs on SDM845
2018-03-29 11:04 UTC (8+ 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] 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
[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
[PATCH v3 0/8] Decode IA32/X64 CPER
2018-03-29 10:54 UTC (5+ messages)
` [PATCH v3 2/8] efi: Decode IA32/X64 Processor Error Section
` [PATCH v3 3/8] efi: Decode IA32/X64 Processor Error Info Structure
[PATCH v2] staging: vt6655: check for memory allocation failures
2018-03-29 10:53 UTC (3+ messages)
4.16-rc2+git: pata_serverworks: hanging ata detection thread on HP DL380G3
2018-03-29 10:50 UTC (4+ messages)
[PATCH v1] kernel/trace:check the val against the available mem
2018-03-29 10:41 UTC
[PATCH] lockdep: Show address of "struct lockdep_map" at print_lock()
2018-03-29 10:26 UTC (5+ messages)
` [PATCH v2] "
[PATCH v8 00/14] iommu/rockchip: Use OF_IOMMU
2018-03-29 10:24 UTC (2+ messages)
[PATCH v5 00/12] PCI endpoint 64-bit BAR fixes
2018-03-29 10:03 UTC (15+ messages)
` [PATCH v5 04/12] PCI: endpoint: Setting 64-bit/prefetch bit is invalid when IO is set
` [PATCH v5 05/12] PCI: endpoint: Setting a BAR size > 4 GB is invalid if 64-bit flag is not set
` [PATCH v5 06/12] PCI: designware-ep: Make dw_pcie_ep_set_bar() handle 64-bit BARs properly
` [PATCH v5 08/12] PCI: endpoint: Handle "
` [PATCH v5 09/12] PCI: endpoint: Make epc->ops->clear_bar()/pci_epc_clear_bar() take struct *epf_bar
` [PATCH v5 10/12] PCI: endpoint: Make sure that BAR_5 does not have 64-bit flag set when clearing
` [PATCH v5 11/12] PCI: designware-ep: Make dw_pcie_ep_reset_bar() handle 64-bit BARs properly
[PATCH] Documentation/usb: Fix dead links and convert others to https
2018-03-29 10:02 UTC (2+ messages)
[PATCH v6 1/3] dt-bindings: display: bridge: Document THC63LVD1024 LVDS decoder
2018-03-29 10:02 UTC (10+ messages)
[PATCH] w1: gpio: fix problem with platfom data in w1-gpio
2018-03-29 10:01 UTC (6+ messages)
[PATCH] staging: mt7621-eth: Fix sparse warning in ethtool.c
2018-03-29 9:56 UTC (2+ messages)
[PATCH] Staging: comedi: ni_stc: Fixed comment coding style issue
2018-03-29 9:53 UTC (2+ messages)
[PATCH] [mmc_block] Prevent bus reference leak in mmc_blk_init
2018-03-29 9:52 UTC (2+ messages)
[PATCH 1/9] staging: ks7010: Replace manual array copy with ether_addr_copy()
2018-03-29 9:51 UTC (5+ messages)
` [PATCH 3/9] staging: ks7010: Reorder ks_wlan_netdev_ops members
` [PATCH 7/9] staging: ks7010: Remove trailing "_t" from all structure names
[RFC PATCH] sdhci: arasan: Add runtime PM support
2018-03-29 9:46 UTC (3+ messages)
linux-next: Tree for Mar 29
2018-03-29 9:45 UTC
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox