public inbox for linux-um@lists.infradead.org
 help / color / mirror / Atom feed
 messages from 2018-09-04 04:42:39 to 2018-10-17 21:18:45 UTC [more...]

[RFC v1 00/31] kunit: Introducing KUnit, the Linux kernel unit testing framework
 2018-10-17 21:18 UTC  (42+ messages)
` [RFC v1 01/31] kunit: test: added string_stream a std::stream like string builder
` [RFC v1 02/31] kunit: test: adds KUnit test runner core
` [RFC v1 03/31] kunit: test: added test resource management API
` [RFC v1 04/31] kunit: test: added test_stream a std::stream like logger
` [RFC v1 05/31] kunit: test: added the concept of expectations
` [RFC v1 06/31] arch: um: enabled running kunit from User Mode Linux
` [RFC v1 07/31] kunit: test: added initial tests
` [RFC v1 08/31] arch: um: added shim to trap to allow installing a fault catcher for tests
` [RFC v1 09/31] kunit: test: added the concept of assertions
` [RFC v1 10/31] kunit: test: added concept of initcalls
` [RFC v1 11/31] kunit: test: added concept of post conditions
` [RFC v1 12/31] checkpatch: added support for struct MOCK(foo) syntax
` [RFC v1 13/31] kunit: mock: added parameter list minipulation macros
` [RFC v1 14/31] kunit: mock: added internal mock infrastructure
` [RFC v1 15/31] kunit: mock: added basic matchers and actions
` [RFC v1 16/31] kunit: mock: added class mocking support
` [RFC v1 17/31] kunit: mock: added struct param matcher
` [RFC v1 18/31] kunit: mock: added parameter formatters
` [RFC v1 19/31] kunit: mock: implemented nice, strict and naggy mock distinctions
` [RFC v1 20/31] kunit: mock: add ability to mock functions with void context
` [RFC v1 21/31] kunit: mock: added support for arbitrary function mocking
` [RFC v1 22/31] kunit: mock: add the concept of spyable functions
` [RFC v1 23/31] kunit: mock: add parameter capturers
` [RFC v1 24/31] kunit: improved sigsegv stack trace printing
` [RFC v1 25/31] kunit: added concept of platform mocking
` [RFC v1 26/31] arch: um: added stubs for mock iomem for KUnit
` [RFC v1 27/31] Documentation: kunit: adds complete documentation "
` [RFC v1 28/31] kunit: added Python libraries for handing KUnit config and kernel
` [RFC v1 29/31] kunit: added KUnit wrapper script and simple output parser
` [RFC v1 30/31] kunit.py: improved output from python wrapper
` [RFC v1 31/31] MAINTAINERS: add entry for KUnit the unit testing framework

Bad MAINTAINERS pattern in section 'USER-MODE LINUX (UML)'
 2018-10-17 16:15 UTC  (3+ messages)

[bug report] um: Convert ubd driver to blk-mq
 2018-10-17  9:26 UTC 

[PATCH 0/4] Add support for fast mremap
 2018-10-17  7:38 UTC  (10+ messages)
` [PATCH 1/4] treewide: remove unused address argument from pte_alloc functions (v2)
` [PATCH 2/4] mm: speed up mremap by 500x on large regions (v2)
` [PATCH 3/4] arm64: select HAVE_MOVE_PMD for faster mremap (v1)
` [PATCH 4/4] x86: "

[PATCH, RFC] ubd: remove use of blk_rq_map_sg
 2018-10-17  6:21 UTC  (16+ messages)

[PATCH v2 1/2] treewide: remove unused address argument from pte_alloc functions
 2018-10-16  2:08 UTC  (39+ messages)
` [PATCH v2 2/2] mm: speed up mremap by 500x on large regions

[PATCH] memblock: stop using implicit alignement to SMP_CACHE_BYTES
 2018-10-11  6:08 UTC  (8+ messages)

[PATCH] samples: disable CONFIG_SAMPLES for UML
 2018-10-09 14:56 UTC  (6+ messages)

[PATCH] Optimise TLB flush for kernel mm in UML
 2018-10-08 11:39 UTC  (2+ messages)

[PATCH v3] Optimise TLB flush for kernel mm in UML
 2018-10-07  7:41 UTC  (5+ messages)

[PATCH v2] Optimise TLB flush for kernel mm in UML
 2018-10-04 17:10 UTC  (2+ messages)

Question about process.c
 2018-09-28 12:16 UTC  (7+ messages)

[PATCH] Optimise TLB flush for kernel mm in UML
 2018-09-28  7:11 UTC 

[PATCH 00/30] mm: remove bootmem allocator
 2018-09-27  4:50 UTC  (49+ messages)
` [PATCH 01/30] mips: switch to NO_BOOTMEM
` [PATCH 02/30] mm: remove CONFIG_NO_BOOTMEM
` [PATCH 03/30] mm: remove CONFIG_HAVE_MEMBLOCK
` [PATCH 04/30] mm: remove bootmem allocator implementation
` [PATCH 05/30] mm: nobootmem: remove dead code
` [PATCH 06/30] memblock: rename memblock_alloc{_nid,_try_nid} to memblock_phys_alloc*
` [PATCH 07/30] memblock: remove _virt from APIs returning virtual address
` [PATCH 08/30] memblock: replace alloc_bootmem_align with memblock_alloc
` [PATCH 09/30] memblock: replace alloc_bootmem_low with memblock_alloc_low
` [PATCH 10/30] memblock: replace __alloc_bootmem_node_nopanic with memblock_alloc_try_nid_nopanic
` [PATCH 11/30] memblock: replace alloc_bootmem_pages_nopanic with memblock_alloc_nopanic
` [PATCH 12/30] memblock: replace alloc_bootmem_low with memblock_alloc_low
` [PATCH 13/30] memblock: replace __alloc_bootmem_nopanic with memblock_alloc_from_nopanic
` [PATCH 14/30] memblock: add align parameter to memblock_alloc_node()
` [PATCH 15/30] memblock: replace alloc_bootmem_pages_node with memblock_alloc_node
` [PATCH 16/30] memblock: replace __alloc_bootmem_node with appropriate memblock_ API
` [PATCH 17/30] memblock: replace alloc_bootmem_node with memblock_alloc_node
` [PATCH 18/30] memblock: replace alloc_bootmem_low_pages with memblock_alloc_low
` [PATCH 19/30] memblock: replace alloc_bootmem_pages with memblock_alloc
` [PATCH 20/30] memblock: replace __alloc_bootmem with memblock_alloc_from
` [PATCH 21/30] memblock: replace alloc_bootmem with memblock_alloc
` [PATCH 22/30] mm: nobootmem: remove bootmem allocation APIs
` [PATCH 23/30] memblock: replace free_bootmem{_node} with memblock_free
` [PATCH 24/30] memblock: replace free_bootmem_late with memblock_free_late
` [PATCH 25/30] memblock: rename free_all_bootmem to memblock_free_all
` [PATCH 26/30] memblock: rename __free_pages_bootmem to memblock_free_pages
` [PATCH 27/30] mm: remove nobootmem
` [PATCH 28/30] memblock: replace BOOTMEM_ALLOC_* with MEMBLOCK variants
` [PATCH 29/30] mm: remove include/linux/bootmem.h
` [PATCH 30/30] docs/boot-time-mm: remove bootmem documentation

[PATCH] Make line/tty semantics use true write IRQ
 2018-09-25  7:47 UTC 

[PATCH] Don't hardcode path as it is architecture dependent
 2018-09-20 19:05 UTC  (2+ messages)

[PATCH 0/3] Kbuild: fix and clean-up arch/um/Makefile
 2018-09-18  4:01 UTC  (4+ messages)
` [PATCH 1/3] um: fix parallel building with O= option

[PATCH v2 10/17] compat_ioctl: remove translation for sound ioctls
 2018-09-13 13:37 UTC  (2+ messages)

[PATCH 00/25] Change tty_port(standard)_install's return type
 2018-09-12 14:41 UTC  (6+ messages)
` [PATCH 01/25] tty: Change return type to void

[PATCH 03/11] compat_ioctl: remove translation for sound ioctls
 2018-09-11 19:35 UTC  (3+ messages)

[PATCH v2] tty: Change tty_{port|standard}_install() return type to void
 2018-09-05  2:50 UTC 


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox