All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2019-08-09 14:17:35 to 2019-08-09 14:59:59 UTC [more...]

[Xen-devel] [PATCH v2 00/48] xen: add core scheduling support
 2019-08-09 14:58 UTC  (47+ messages)
` [Xen-devel] [PATCH v2 01/48] xen/sched: use new sched_unit instead of vcpu in scheduler interfaces
` [Xen-devel] [PATCH v2 02/48] xen/sched: move per-vcpu scheduler private data pointer to sched_unit
` [Xen-devel] [PATCH v2 03/48] xen/sched: build a linked list of struct sched_unit
` [Xen-devel] [PATCH v2 04/48] xen/sched: introduce struct sched_resource
` [Xen-devel] [PATCH v2 05/48] xen/sched: let pick_cpu return a scheduler resource
` [Xen-devel] [PATCH v2 06/48] xen/sched: switch schedule_data.curr to point at sched_unit
` [Xen-devel] [PATCH v2 07/48] xen/sched: move per cpu scheduler private data into struct sched_resource
` [Xen-devel] [PATCH v2 08/48] xen/sched: switch vcpu_schedule_lock to unit_schedule_lock
` [Xen-devel] [PATCH v2 09/48] xen/sched: move some per-vcpu items to struct sched_unit
` [Xen-devel] [PATCH v2 10/48] xen/sched: add scheduler helpers hiding vcpu
` [Xen-devel] [PATCH v2 11/48] xen/sched: rename scheduler related perf counters
` [Xen-devel] [PATCH v2 12/48] xen/sched: switch struct task_slice from vcpu to sched_unit
` [Xen-devel] [PATCH v2 13/48] xen/sched: add is_running indicator to struct sched_unit
` [Xen-devel] [PATCH v2 14/48] xen/sched: make null scheduler vcpu agnostic
` [Xen-devel] [PATCH v2 16/48] xen/sched: make credit "
` [Xen-devel] [PATCH v2 17/48] xen/sched: make credit2 "
` [Xen-devel] [PATCH v2 18/48] xen/sched: make arinc653 "
` [Xen-devel] [PATCH v2 19/48] xen: add sched_unit_pause_nosync() and sched_unit_unpause()
` [Xen-devel] [PATCH v2 21/48] xen/sched: use sched_resource cpu instead smp_processor_id in schedulers
` [Xen-devel] [PATCH v2 22/48] xen/sched: switch schedule() from vcpus to sched_units
` [Xen-devel] [PATCH v2 23/48] xen/sched: switch sched_move_irqs() to take sched_unit as parameter
` [Xen-devel] [PATCH v2 24/48] xen: switch from for_each_vcpu() to for_each_sched_unit()
` [Xen-devel] [PATCH v2 25/48] xen/sched: add runstate counters to struct sched_unit
` [Xen-devel] [PATCH v2 26/48] xen/sched: rework and rename vcpu_force_reschedule()
` [Xen-devel] [PATCH v2 27/48] xen/sched: Change vcpu_migrate_*() to operate on schedule unit
` [Xen-devel] [PATCH v2 28/48] xen/sched: move struct task_slice into struct sched_unit
` [Xen-devel] [PATCH v2 29/48] xen/sched: add code to sync scheduling of all vcpus of a sched unit
` [Xen-devel] [PATCH v2 30/48] xen/sched: introduce unit_runnable_state()
` [Xen-devel] [PATCH v2 31/48] xen/sched: add support for multiple vcpus per sched unit where missing
` [Xen-devel] [PATCH v2 32/48] xen/sched: modify cpupool_domain_cpumask() to be an unit mask
` [Xen-devel] [PATCH v2 33/48] xen/sched: support allocating multiple vcpus into one sched unit
` [Xen-devel] [PATCH v2 34/48] xen/sched: add a percpu resource index
` [Xen-devel] [PATCH v2 35/48] xen/sched: add fall back to idle vcpu when scheduling unit
` [Xen-devel] [PATCH v2 36/48] xen/sched: make vcpu_wake() and vcpu_sleep() core scheduling aware
` [Xen-devel] [PATCH v2 37/48] xen/sched: carve out freeing sched_unit memory into dedicated function
` [Xen-devel] [PATCH v2 38/48] xen/sched: move per-cpu variable scheduler to struct sched_resource
` [Xen-devel] [PATCH v2 39/48] xen/sched: move per-cpu variable cpupool "
` [Xen-devel] [PATCH v2 40/48] xen/sched: reject switching smt on/off with core scheduling active
` [Xen-devel] [PATCH v2 41/48] xen/sched: prepare per-cpupool scheduling granularity
` [Xen-devel] [PATCH v2 42/48] xen/sched: split schedule_cpu_switch()
` [Xen-devel] [PATCH v2 43/48] xen/sched: protect scheduling resource via rcu
` [Xen-devel] [PATCH v2 44/48] xen/sched: support multiple cpus per scheduling resource
` [Xen-devel] [PATCH v2 45/48] xen/sched: support differing granularity in schedule_cpu_[add/rm]()
` [Xen-devel] [PATCH v2 46/48] xen/sched: support core scheduling for moving cpus to/from cpupools
` [Xen-devel] [PATCH v2 47/48] xen/sched: disable scheduling when entering ACPI deep sleep states
` [Xen-devel] [PATCH v2 48/48] xen/sched: add scheduling granularity enum

[PATCH v3 00/21] Common patches from downstream development
 2019-08-09 14:59 UTC  (20+ messages)
` [PATCH v3 04/21] ARM: dts: imx7-colibri: Add sleep mode to ethernet
` [PATCH v3 05/21] ARM: dts: add recovery for I2C for iMX7
` [PATCH v3 06/21] ARM: dts: imx7-colibri: add GPIO wakeup key
` [PATCH v3 07/21] ARM: dts: imx7-colibri: fix 1.8V/UHS support
` [PATCH v3 08/21] ARM: dts: imx7-colibri: Add touch controllers
` [PATCH v3 09/21] ARM: dts: imx6qdl-colibri: add phy to fec

[PATCH 1/2] lib/oeqa/utils/qemurunner.py: add runqemuparams after kvm/nographic/snapshot/slirp
 2019-08-09 14:59 UTC  (2+ messages)
` [PATCH 2/2] mesa: enable glx-tls option in native and nativesdk builds

[dpdk-dev] [PATCH] net/nfb: remove resources when dev is closed
 2019-08-09 14:59 UTC 

[Bug 110865] Rx480 consumes 20w more power in idle than under Windows
 2019-08-09 14:59 UTC  (2+ messages)

[PATCH] powerpc/ptdump: fix addresses display on PPC32
 2019-08-09 14:58 UTC 

[PATCH v3 1/2] selftests: kvm: Adding config fragments
 2019-08-09 14:58 UTC  (5+ messages)

[PATCH] drm/i915: Extend non readable mcr range
 2019-08-09 14:56 UTC 

[PATCH 0/6] arm64: dts: ti: k3-j721e: Add gpio nodes
 2019-08-09 14:56 UTC  (17+ messages)
` [PATCH 2/6] arm64: dts: ti: k3-j721e: Add gpio nodes in main domain
` [PATCH 3/6] arm64: dts: ti: k3-j721e: Add gpio nodes in wakeup domain
` [PATCH 4/6] arm64: dts: ti: k3-j721e-common-proc-board: Disable unused gpio modules
` [PATCH 6/6] arm64: dts: k3-j721e: Add gpio-keys on common processor board

Let's talk about the elephant in the room - the Linux kernel's inability to gracefully handle low memory pressure
 2019-08-09 14:56 UTC  (22+ messages)

[PATCH 00/67] target/arm: Convert aa32 base isa to decodetree
 2019-08-09 14:55 UTC  (7+ messages)
` [PATCH 11/67] target/arm: Add stubs for aa32 decodetree
  ` [Qemu-devel] "

[PATCH v3 0/2] Add default binderfs devices
 2019-08-09 14:55 UTC  (6+ messages)
` [PATCH v3 1/2] binder: Add default binder devices through binderfs when configured
` [PATCH v3 2/2] binder: Validate the default binderfs device names

[SPDK] .module_fini called twice
 2019-08-09 14:55 UTC 

[Regression] Commit "nvme/pci: Use host managed power state for suspend" has problems
 2019-08-09 14:52 UTC  (12+ messages)
            ` [PATCH v3 0/2] nvme-pci: Allow PCI bus-level PM to be used if ASPM is disabled

[PATCH 0/2] Compression level API cleanups
 2019-08-09 14:55 UTC  (3+ messages)
` [PATCH 1/2] btrfs: define compression levels statically
` [PATCH 2/2] btrfs: compression: replace set_level callbacks by a common helper

ina226 as IIO device instead of HWMON
 2019-08-09 14:54 UTC  (4+ messages)

[PATCH] ALSA: hda - Add a quirk model for fixing Huawei Matebook X right speaker
 2019-08-09 14:53 UTC 

[PATCH] ALSA: hda - Inform too slow responses
 2019-08-09 14:49 UTC 

[PATCH 4.19 00/45] 4.19.66-stable review
 2019-08-09 14:49 UTC  (3+ messages)

[PATCH v2 0/2] Lookup PCS offset, and cleanup hex formatting
 2019-08-09 14:48 UTC  (3+ messages)
` [PATCH v2 1/2] ata: ahci: Lookup PCS register offset based on PCI device ID
` [PATCH v2 2/2] ata: ahci: Cleanup hex values to use lowercase everywhere

[PATCH 5.2 00/56] 5.2.8-stable review
 2019-08-09 14:48 UTC  (3+ messages)

[v4 0/6] platform: dwc: Adding DesignWare MIPI CSI-2 Host and D-PHY
 2019-08-09 14:47 UTC  (7+ messages)
` [v4 3/6] media: platform: dwc: Add MIPI CSI-2 platform data
` [v4 4/6] dt-bindings: phy: Document the Synopsys MIPI DPHY Rx bindings

[PATCH] drm/panfrost: Implement per FD address spaces
 2019-08-09 14:46 UTC  (3+ messages)

[PATCH v2 00/13] v2: ARM: move lpc32xx to multiplatform
 2019-08-09 14:40 UTC  (31+ messages)
` [PATCH v2 01/13] usb: ohci-nxp: enable compile-testing
` [PATCH v2 02/13] usb: udc: lpc32xx: allow compile-testing
` [PATCH v2 03/13] watchdog: pnx4008_wdt: "
` [PATCH v2 04/13] serial: lpc32xx_hs: "
` [PATCH v2 05/13] gpio: lpc32xx: allow building on non-lpc32xx targets
` [PATCH v2 06/13] net: lpc-enet: factor out iram access
` [PATCH v2 07/13] net: lpc-enet: move phy setup into platform code
` [PATCH v2 08/13] net: lpc-enet: fix badzero.cocci warnings
` [PATCH v2 09/13] net: lpc-enet: fix printk format strings
` [PATCH v2 10/13] net: lpc-enet: allow compile testing
` [PATCH v2 11/13] serial: lpc32xx: "
` [PATCH v2 12/13] ARM: lpc32xx: clean up header files
` [PATCH v2 13/13] ARM: lpc32xx: allow multiplatform build

RFC: remove sn2, hpsim and ia64 machvecs
 2019-08-09 14:45 UTC  (8+ messages)
`  "

[cip-dev] Testing CIP kernel with Debian gcc
 2019-08-09 14:45 UTC  (4+ messages)

[PATCH 0/2] genriq/affinity: two improvement on __irq_build_affinity_masks
 2019-08-09 14:42 UTC  (4+ messages)
` [PATCH 1/2] genirq/affinity: improve __irq_build_affinity_masks()

[PATCH] SCSI: fix queue cleanup race before scsi_requeue_run_queue is done
 2019-08-09 14:43 UTC  (2+ messages)

[PATCH 1/5] drm/amdgpu: Extends amdgpu vm definitions
 2019-08-09 14:43 UTC  (9+ messages)
` [PATCH 3/5] drm/amdkfd: Postpone memory mapping flags calculation to mapping time
` [PATCH 4/5] drm/amdgpu: Support snooped PTE flag

[CI 1/3] drm/i915: Check for a second VCS engine more carefully
 2019-08-09 14:43 UTC  (2+ messages)
` ✗ Fi.CI.SPARSE: warning for series starting with drm/i915: Check for a second VCS engine more carefully (rev2)

[master][PATCH] standard.py: Provide an additional option for devtool reset
 2019-08-09 14:42 UTC  (8+ messages)

[PATCH] git-gui: Call do_quit before destroying the main window
 2019-08-09 14:42 UTC  (8+ messages)

[PATCH] mm/memremap: Fix reuse of pgmap instances with internal references
 2019-08-09 14:42 UTC  (2+ messages)

[LTP] [RFC PATCH 0/1] tst API for dropping or requiring capabilities
 2019-08-09 14:42 UTC  (4+ messages)
` [LTP] [RFC PATCH 1/1] capability: Introduce capability API

[PATCH 1/2] dt-bindings: pwm: sprd: Add Spreadtrum PWM documentation
 2019-08-09 14:41 UTC  (5+ messages)
` [PATCH 2/2] pwm: sprd: Add Spreadtrum PWM support

5.3-rc3: Frozen graphics with kcompactd migrating i915 pages
 2019-08-09 14:31 UTC 

[PATCH] gpio: tqmx86: Pass irqchip when adding gpiochip
 2019-08-09 14:40 UTC 

[PATCH] dt-bindings: arm: Extend SCMI to support new reset protocol
 2019-08-09 14:40 UTC 

[PATCH v2 00/58] qla2xxx patches for kernel v5.4
 2019-08-09 14:39 UTC  (2+ messages)

[PATCH] drm/i915: Free the imported shmemfs file for phys objects
 2019-08-09 14:38 UTC  (2+ messages)
` ✓ Fi.CI.BAT: success for "

cleanup the walk_page_range interface
 2019-08-09 14:36 UTC  (5+ messages)

[PATCH 00/22] ARM: omap1 multiplatform support
 2019-08-09 14:36 UTC  (6+ messages)
  ` [PATCH 02/22] ARM: omap1: make omapfb standalone compilable

[PATCH] Btrfs: Fix an assert statement in __btrfs_map_block()
 2019-08-09 14:36 UTC  (3+ messages)

[PATCH] python-panads: remove the python 2.x version of the recipe
 2019-08-09 14:32 UTC  (2+ messages)
` ✗ patchtest: failure for "

[U-Boot] [PATCH] board: ls1028a: set up integrated PCI stream IDs and cache attributes
 2019-08-09 14:31 UTC  (5+ messages)

[LTP] [PATCH v2 1/2] clock_getres01: drop case which is passing NULL res parameter
 2019-08-09 14:31 UTC  (2+ messages)
` [LTP] [PATCH v2 2/2] clock_getres01: add test variants

[PATCH for-5.3] drm/omap: ensure we have a valid dma_mask
 2019-08-09 14:31 UTC  (5+ messages)

[PATCH v2] RDMA/siw: Fix a memory leak in siw_init_cpulist()
 2019-08-09 14:28 UTC  (3+ messages)

[Patch V6 7/8] usb: gadget: Add UDC driver for tegra XUSB device mode controller
 2019-08-09 14:28 UTC  (3+ messages)

[Xen-devel] [PATCH v4 0/2] x86/xpti: Don't leak TSS-adjacent percpu data via Meltdown
 2019-08-09 14:28 UTC  (4+ messages)
` [Xen-devel] [PATCH v4 1/2] xen/link: Introduce .bss.percpu.page_aligned

[RFC PATCH v2] mm: slub: print kernel addresses in slub debug messages
 2019-08-09 14:26 UTC  (4+ messages)

[Qemu-devel] [Bug 1796520] [NEW] autogen crashes on qemu-sh4-user after 61dedf2af7
 2019-08-09 14:18 UTC  (2+ messages)
` [Qemu-devel] [Bug 1796520] "

[PATCH v7 0/4] mtd: spi-nor: add support for is25wp256 spi-nor flash
 2019-08-09 14:25 UTC  (11+ messages)
` [PATCH v7 2/4] mtd: spi-nor: fix nor->addr_width for is25wp256
` [PATCH v7 4/4] mtd: spi-nor: add locking support for is25wp256 device

[bug report] mm,thp: add read-only THP support for (non-shmem) FS
 2019-08-09 14:24 UTC  (2+ messages)

[igt-dev] [PATCH i-g-t 1/3] i915/gem_exec_schedule: Check timeslice
 2019-08-09 14:24 UTC  (2+ messages)
` [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/3] "

[PATCH] ARM: defconfig: lpc32xx: enable lpc32xx GPIO driver
 2019-08-09 14:22 UTC  (4+ messages)

/var/volatile not mounted as tmpfs on read-only rootfs when migrating to Warrior
 2019-08-09 14:21 UTC  (4+ messages)

[PATCH 1/2] cni: fix problem about cross compilation
 2019-08-09 14:21 UTC  (2+ messages)

[PATCH 00/14] ARM: move lpc32xx and dove to multiplatform
 2019-08-09 14:19 UTC  (12+ messages)
` [PATCH 05/14] gpio: lpc32xx: allow building on non-lpc32xx targets

[PATCH] gpio: vf610: Pass irqchip when adding gpiochip
 2019-08-09 14:19 UTC 

XTS template wrapping question
 2019-08-09 14:18 UTC  (2+ messages)

[RFC] audit support for BPF notification
 2019-08-09 14:18 UTC 

[PATCH] EDAC, pnd2: Fix ioremap() size in dnv_rd_reg()
 2019-08-09 14:18 UTC 

[PATCH v2 0/2] drm: bridge: adv7511: Add support For ADV7535
 2019-08-09 14:16 UTC  (3+ messages)
` [PATCH v2 1/2] dt-bindings: drm: bridge: adv7511: Add ADV7535 support
` [PATCH v2 2/2] drm: bridge: adv7511: Add support for ADV7535


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.