All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2019-03-22 05:17:56 to 2019-03-22 07:11:35 UTC [more...]

[PATCH net-next v9 00/19] WireGuard: Secure Network Tunnel
 2019-03-22  7:11 UTC  (19+ messages)
` [PATCH net-next v9 01/19] asm: simd context helper API
` [PATCH net-next v9 02/19] zinc: introduce minimal cryptography library
` [PATCH net-next v9 03/19] zinc: ChaCha20 generic C implementation and selftest
` [PATCH net-next v9 04/19] zinc: ChaCha20 x86_64 implementation
` [PATCH net-next v9 05/19] zinc: ChaCha20 ARM and ARM64 implementations
` [PATCH net-next v9 06/19] zinc: ChaCha20 MIPS32r2 implementation
` [PATCH net-next v9 07/19] zinc: Poly1305 generic C implementations and selftest
` [PATCH net-next v9 08/19] zinc: Poly1305 x86_64 implementation
` [PATCH net-next v9 09/19] zinc: Poly1305 ARM and ARM64 implementations
` [PATCH net-next v9 10/19] zinc: Poly1305 MIPS64 and MIPS32r2 implementations
` [PATCH net-next v9 11/19] zinc: ChaCha20Poly1305 construction and selftest
` [PATCH net-next v9 12/19] zinc: BLAKE2s generic C implementation "
` [PATCH net-next v9 13/19] zinc: BLAKE2s x86_64 implementation
` [PATCH net-next v9 14/19] zinc: Curve25519 generic C implementations and selftest
` [PATCH net-next v9 15/19] zinc: Curve25519 x86_64 implementation
` [PATCH net-next v9 16/19] zinc: import Bernstein and Schwabe's Curve25519 ARM implementation
` [PATCH net-next v9 17/19] zinc: "
` [PATCH net-next v9 18/19] security/keys: rewrite big_key crypto to use Zinc

[PATCH 1/2] arm64: tegra: Add pinmux for PWM-based DFLL support on Shield platform
 2019-03-22  7:11 UTC  (4+ messages)
` [PATCH 2/2] arm64: tegra: Enable DFLL clock "

[PATCH] drm/i915: Pass intel_context to i915_request_create()
 2019-03-22  7:10 UTC  (2+ messages)

[RFC] net/virtio: remove prefix from virtqueue struct fields
 2019-03-22  7:10 UTC  (4+ messages)

[PATCH 1/6] drm/i915: Refactor EDID fixed mode search
 2019-03-22  7:10 UTC  (2+ messages)
` ✓ Fi.CI.IGT: success for series starting with [1/6] "

[RFC v4 00/17] kunit: introduce KUnit, the Linux kernel unit testing framework
 2019-03-22  7:10 UTC  (11+ messages)
` [RFC v4 08/17] kunit: test: add support for test abort

[PATCH 1/5] powerpc/sparse: fix possible object reference leak
 2019-03-22  7:09 UTC  (3+ messages)
` [PATCH 5/5] powerpc/8xx: "

INFO: task hung in vivid_stop_generating_vid_cap
 2019-03-22  7:08 UTC  (2+ messages)

[PATCH 0/2] Remove macros and use BIT macros
 2019-03-22  7:07 UTC  (8+ messages)
` [PATCH 1/2] Staging: media: davinci_vpfe: Remove SETBIT macro and use BIT macro
` [PATCH 2/2] Staging: media: davinci_vpfe: Remove RESETBIT "
    ` [Outreachy kernel] "
  ` [Outreachy kernel] "

[PATCH] drm/i915: Add not fenceable reason to not enable FBC
 2019-03-22  7:06 UTC  (2+ messages)

[PATCH v2 net-next 0/3] tcp: add rx/tx cache to reduce lock contention
 2019-03-22  7:04 UTC  (3+ messages)

Radeon HD 7450 brightness oversaturated
 2019-03-22  7:02 UTC  (4+ messages)

[PATCH BlueZ] test: Enable test-mesh to send raw vendor commands
 2019-03-22  7:01 UTC  (2+ messages)

[Buildroot] [autobuild.buildroot.net] Build results for 2019-03-21
 2019-03-22  7:00 UTC 

[PATCH v2] tracing: initialize variable in create_dyn_event()
 2019-03-22  6:58 UTC 

[PATCH -next] ubifs: remove unused function __ubifs_shash_final
 2019-03-22  6:59 UTC  (6+ messages)

[pcmoore-selinux:next 8/10] htmldocs: include/linux/lsm_hooks.h:1814: warning: Function parameter or member 'kernfs_init_security' not described in 'security_list_options'
 2019-03-22  6:57 UTC  (2+ messages)

[PATCH] riscv: fix accessing 8-byte variable from RV32
 2019-03-22  6:37 UTC  (2+ messages)

[PATCH v3 0/3] CAAM job ring driver cleanups
 2019-03-22  6:56 UTC  (2+ messages)

[PATCH] nvme: schedule requeue whenever a LIVE state is entered
 2019-03-22  6:55 UTC  (3+ messages)

[PATCH] ipmi_si: remove an unused variable in try_smi_init()
 2019-03-22  6:54 UTC 

[RESEND PATCH] mm/hotplug: fix notification in offline error path
 2019-03-22  6:50 UTC  (2+ messages)

[PATCH 0/17] Add zinc using existing algorithm implementations
 2019-03-22  6:41 UTC  (33+ messages)
` [PATCH 1/17] asm: simd context helper API
` [PATCH 2/17] crypto: chacha20 - Export chacha20 functions without crypto API
` [PATCH 3/17] zinc: introduce minimal cryptography library
` [PATCH 4/17] zinc: Add generic C implementation of chacha20 and self-test
` [PATCH 5/17] zinc: Add x86 accelerated ChaCha20
` [PATCH 6/17] zinc: Add arm accelerated chacha20
` [PATCH 7/17] crypto: poly1305 - Export core functions without crypto API
` [PATCH 8/17] zinc: Add generic C implementation of poly1305 and self-test
` [PATCH 9/17] zinc: Add x86 accelerated poly1305
` [PATCH 10/17] zinc: ChaCha20Poly1305 construction and selftest
` [PATCH 11/17] zinc: BLAKE2s generic C implementation "
` [PATCH 12/17] zinc: BLAKE2s x86_64 implementation
` [PATCH 13/17] zinc: Curve25519 generic C implementations and selftest
` [PATCH 14/17] zinc: Curve25519 x86_64 implementation
` [PATCH 15/17] zinc: import Bernstein and Schwabe's Curve25519 ARM implementation
` [PATCH 16/17] zinc: "
` [PATCH 17/17] security/keys: rewrite big_key crypto to use Zinc

[PATCH] Staging: media: Use !x in place of NULL comparision
 2019-03-22  6:45 UTC  (3+ messages)
` [Outreachy kernel] "

[RFC] mm/hotplug: Make get_nid_for_pfn() work with HAVE_ARCH_PFN_VALID
 2019-03-22  6:45 UTC  (5+ messages)

[asoc:for-5.2 14/67] nau8810.c:undefined reference to `__udivdi3'
 2019-03-22  6:45 UTC 

[BISECTED, REGRESSION] Broken networking on MIPS/OCTEON EdgeRouter Lite
 2019-03-22  6:45 UTC  (2+ messages)

[PATCH] drm: shmem: Off by one in drm_gem_shmem_fault()
 2019-03-22  6:41 UTC  (2+ messages)

[PATCH 00/15] barebox Layerscape support
 2019-03-22  6:41 UTC  (5+ messages)
` [PATCH 04/15] ARM: Add arm64 pbl udelay

[PATCH V2] ASoC: fix hdmi codec driver contest in S3
 2019-03-22  6:24 UTC 

[PATCH] ieee1275: Include a.out header in assembly of sparc64 boot loader
 2019-03-22  6:35 UTC 

[PATCH V3] cpufreq: Call transition notifier only once for each policy
 2019-03-22  6:39 UTC  (9+ messages)

[PATCH net] r8169: fix cable re-plugging issue
 2019-03-22  6:39 UTC 

net: fix routing encapsulated packets when binding a socket to a tunnel interface
 2019-03-22  6:29 UTC 

[PATCH 1/2] regulator: act8865: Convert to regulator core's simplified DT parsing code
 2019-03-22  6:38 UTC  (2+ messages)
` [PATCH 2/2] regulator: act8865: Constify regulator_ops

[PATCH 1/3] rtc: omap: switch to rtc_time64_to_tm/rtc_tm_to_time64
 2019-03-22  6:35 UTC  (4+ messages)
` [PATCH 3/3] rtc: omap: checkpatch cleanup

[PATCH net-next v4 00/22] ethtool netlink interface, part 1
 2019-03-22  6:32 UTC  (4+ messages)
` [PATCH net-next v4 01/22] rtnetlink: provide permanent hardware address in RTM_NEWLINK

[PATCH] ARM: dts: imx7ulp: add ocotp support
 2019-03-22  6:31 UTC 

[PATCH 0/2] Auto-promotion logic for cpuidle states
 2019-03-22  6:25 UTC  (6+ messages)
` [PATCH 1/2] cpuidle : auto-promotion "
` [PATCH 2/2] cpuidle : Add auto-promotion flag to cpuidle flags

[PATCH] [v6,2/2] drm/panel: Add Boe Himax8279d MIPI-DSI LCD panel
 2019-03-22  6:28 UTC  (3+ messages)
` [PATCH] [v6, 2/2] "

[PATCH] X.509: Add messages for obsolete OIDs
 2019-03-22  6:27 UTC  (2+ messages)

[PATCH] net/iavf: fix vertor interrupt number configuration error
 2019-03-22  6:27 UTC  (2+ messages)
` [PATCH v2] "

[PATCH 1/2 v2] rtc: x1205: Add DT bindings
 2019-03-22  6:23 UTC  (2+ messages)

[RFC 0/7] netlink/genetlink: stricter parsing
 2019-03-22  6:23 UTC  (4+ messages)
` [RFC 1/6] netlink: add nlmsg_validate_strict() & nla_validate_strict()

[PATCH v11 00/14] arm64: untag user pointers passed to the kernel
 2019-03-22  6:22 UTC  (8+ messages)
` [PATCH v2 0/4] arm64 relaxed ABI
  ` [PATCH v2 2/4] arm64: Define Documentation/arm64/elf_at_flags.txt

[Intel-wired-lan] [jkirsher-next-queue:dev-queue] BUILD SUCCESS 131458bda9a920aac475cf7781c0d36088cc096a
 2019-03-22  6:21 UTC 

32bit kernel is broken for Linux-5.1-rc1 due to GCC cmodel=medlow
 2019-03-22  6:16 UTC 

regression (bisected): "modprobe parport_pc" hangs in current mainline
 2019-03-22  6:13 UTC  (4+ messages)

[PATCH 1/3] rtc: sh: stop resetting time to epoch
 2019-03-22  6:12 UTC  (5+ messages)
` [PATCH 3/3] rtc: sh: set range

[v3] usb: gadget: f_fs: don't free buffer prematurely
 2019-03-22  6:12 UTC  (5+ messages)
` [PATCH v3] "

[ndctl PATCH v2 4/4] ndctl, monitor: support NVDIMM_FAMILY_HYPERV
 2019-03-22  6:11 UTC  (9+ messages)

[PATCH] criu: upgrade to 3.11
 2019-03-22  6:09 UTC 

[PATCH RFC 0/5] readmirror feature
 2019-03-22  6:08 UTC  (3+ messages)

[PATCH for-4.12] passthrough/vtd: Drop the "workaround_bios_bug" logic entirely
 2019-03-22  6:07 UTC  (2+ messages)

[PATCH v4] usb: gadget: f_fs: don't free buffer prematurely
 2019-03-22  6:07 UTC  (2+ messages)
` [v4] "

[PATCH] drivers/virtio: fix duplicate naming of include guard
 2019-03-22  6:06 UTC  (3+ messages)
` [PATCH v2] "

[PATCH v2 2/2] KVM: PPC: Book3S HV: Implement real mode H_PAGE_INIT handler
 2019-03-22  6:05 UTC 

[PATCH v2 1/2] KVM: PPC: Book3S HV: Implement virtual mode H_PAGE_INIT handler
 2019-03-22  6:05 UTC 

[PATCH V6 0/8] make mt7623 clock of hdmi stable
 2019-03-22  6:02 UTC  (7+ messages)
` [PATCH v6 1/8] drm/mediatek: recalculate hdmi phy clock of MT2701 by querying hardware

[BUG] Cloning with git HEAD fails for some repositories
 2019-03-22  6:02 UTC 

[igt-dev] [PATCH i-g-t] tests/kms_plane_scaling: Minimum width and height for planar YUV formats on i915 devices
 2019-03-22  6:02 UTC  (2+ messages)
` [igt-dev] ✓ Fi.CI.IGT: success for "

[PATCH] ARM: dts: imx6dl-yapp4: Use correct pseudo PHY address for the switch
 2019-03-22  6:02 UTC  (4+ messages)
  ` PM: "

[meta-networking][PATCH] iscsi-initiator-utils: Fix 32bit build issues with Werror=format-truncation
 2019-03-22  6:02 UTC 

[PATCH 0/4] gc docs: modernize and fix the documentation
 2019-03-22  6:01 UTC  (3+ messages)
` [PATCH v2 01/10] gc docs: modernize the advice for manually running "gc"

[PATCH 0/2] EDAC Support for SiFive SoCs
 2019-03-22  6:00 UTC  (6+ messages)
` [2/2] edac: sifive: Add EDAC driver for SiFive FU540-C000 chip
    ` [PATCH 2/2] "

[RFC][PATCH] tracing/x86: Save CR2 before tracing irqsoff on error_entry
 2019-03-22  5:54 UTC  (9+ messages)

[PATCH v2 1/3] arm64: dts: imx: Add i.mx8mm dtsi support
 2019-03-22  5:53 UTC  (5+ messages)
` [PATCH v2 3/3] arm64: dts: imx: Add i.mx8mm evk basic dts support

[PATCH] ASoC: fix hdmi codec driver contest in S3
 2019-03-22  5:31 UTC 

Some problems about FruDevice in the entity-manager
 2019-03-22  5:41 UTC 

[PATCH v2 0/4] multi-pack-index: fix verify on large repos
 2019-03-22  5:37 UTC  (3+ messages)
` [PATCH v3 "

usb: dwc3: Softdep for GBit Ethernet on Odroid XU4
 2019-03-22  5:37 UTC  (3+ messages)
` [PATCH] "

[RESEND PATCH v1] moduleparam: Save information about built-in modules in separate file
 2019-03-22  5:34 UTC  (2+ messages)

[PATCH] drm/amdgpu: fix vm_cpu_update hit NULL pointer
 2019-03-22  5:30 UTC 

[PATCH] vfio-pci: Fix MSI IRQ forwarding for without per-vector masking
 2019-03-22  5:29 UTC  (2+ messages)

[PATCH v4] perf tools: Add missing case value
 2019-03-22  5:28 UTC  (6+ messages)

[PATCH 3.16 00/16] 3.16.64-rc1 review
 2019-03-22  5:20 UTC  (17+ messages)
` [PATCH 3.16 09/16] HID: debug: improve hid_debug_event()
` [PATCH 3.16 08/16] HID: debug: fix error handling in hid_debug_events_read()
` [PATCH 3.16 13/16] KVM: use after free in kvm_ioctl_create_device()
` [PATCH 3.16 15/16] KVM: nVMX: unconditionally cancel preemption timer in free_nested (CVE-2019-7221)
` [PATCH 3.16 12/16] KVM: Protect device ops->create and list_add with kvm->lock
` [PATCH 3.16 03/16] swiotlb: clean up reporting
` [PATCH 3.16 07/16] can: gw: ensure DLC boundaries after CAN frame modification
` [PATCH 3.16 10/16] HID: debug: fix the ring buffer implementation
` [PATCH 3.16 14/16] kvm: fix kvm_ioctl_create_device() reference counting (CVE-2019-6974)
` [PATCH 3.16 16/16] KVM: x86: work around leak of uninitialized stack contents (CVE-2019-7222)
` [PATCH 3.16 02/16] mm: cma: fix incorrect type conversion for size during dma allocation
` [PATCH 3.16 11/16] KVM: PPC: Move xics_debugfs_init out of create
` [PATCH 3.16 01/16] xfs: don't BUG() on mixed direct and mapped I/O
` [PATCH 3.16 04/16] sunrpc: use-after-free in svc_process_common()
` [PATCH 3.16 05/16] USB: hso: Fix OOB memory access in hso_probe/hso_get_config_data
` [PATCH 3.16 06/16] net/appletalk: fix minor pointer leak to userspace in SIOCFINDIPDDPRT

[PATCH 0/2] Randomize / timestamp trace2 targets
 2019-03-22  5:23 UTC  (4+ messages)
` [PATCH v3 0/1] Write trace2 output to directories

[PATCH v5] perf tools: Add missing case value
 2019-03-22  5:22 UTC  (2+ messages)

[PATCH] arch/mips/kvm/emulate.c: Don't waste /dev/random emulating TLBWR
 2019-03-22  5:22 UTC  (3+ messages)

[PATCH V1 1/1] watchdog: f71808e_wdt: fix F81866 bit operation
 2019-03-22  5:18 UTC  (2+ messages)

[PATCH v3] tpm: fix an invalid condition in tpm_common_poll
 2019-03-22  5:18 UTC  (2+ messages)

[PATCH v2 0/7] implement 2D acceleration, minor cleanups, doc updates
 2019-03-22  5:17 UTC  (8+ messages)
` [PATCH v2 4/7] fbdev: sm712fb: add 32-bit color modes, drops some other modes
` [PATCH v2 5/7] Documentation: fb: sm712fb: add information mainly about 2D
` [PATCH v2 6/7] fbdev: sm712fb: Kconfig: add information about docs
` [PATCH v2 7/7] MAINTAINERS: sm712fb: list myself as one maintainer


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.