All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2018-08-23 16:31:34 to 2018-08-23 17:07:54 UTC [more...]

[PATCH 2/2] arm64: dts: rockchip: fix vcc5v0_host regulator dependency for Firefly-RK3399
 2018-08-23 17:07 UTC 

[PATCH 1/2] arm64: dts: rockchip: fix vcc3v3_sys regulator dependency for Firefly-RK3399
 2018-08-23 17:07 UTC 

[PATCH] turbostat: upgrade to 18.07.27
 2018-08-23  9:58 UTC 

[PATCH] ath9k: turn on btcoex_enable as default
 2018-08-23 17:06 UTC  (10+ messages)

[Qemu-devel] [PATCH v3 00/58] json: Fixes, error reporting improvements, cleanups
 2018-08-23 17:05 UTC  (60+ messages)
` [Qemu-devel] [PATCH v3 01/58] docs/interop/qmp-spec: How to force known good parser state
` [Qemu-devel] [PATCH v3 02/58] check-qjson: Cover multiple JSON objects in same string
` [Qemu-devel] [PATCH v3 03/58] check-qjson: Cover blank and lexically erroneous input
` [Qemu-devel] [PATCH v3 04/58] check-qjson: Cover whitespace more thoroughly
` [Qemu-devel] [PATCH v3 05/58] qmp-cmd-test: Split off qmp-test
` [Qemu-devel] [PATCH v3 06/58] qmp-test: Cover syntax and lexical errors
` [Qemu-devel] [PATCH v3 07/58] test-qga: Clean up how we test QGA synchronization
` [Qemu-devel] [PATCH v3 08/58] check-qjson: Cover escaped characters more thoroughly, part 1
` [Qemu-devel] [PATCH v3 09/58] check-qjson: Streamline escaped_string()'s test strings
` [Qemu-devel] [PATCH v3 10/58] check-qjson: Cover escaped characters more thoroughly, part 2
` [Qemu-devel] [PATCH v3 11/58] check-qjson: Consolidate partly redundant string tests
` [Qemu-devel] [PATCH v3 12/58] check-qjson: Cover UTF-8 in single quoted strings
` [Qemu-devel] [PATCH v3 13/58] check-qjson: Simplify utf8_string()
` [Qemu-devel] [PATCH v3 14/58] check-qjson: Fix utf8_string() to test all invalid sequences
` [Qemu-devel] [PATCH v3 15/58] check-qjson qmp-test: Cover control characters more thoroughly
` [Qemu-devel] [PATCH v3 16/58] check-qjson: Cover interpolation "
` [Qemu-devel] [PATCH v3 17/58] json: Fix lexer to include the bad character in JSON_ERROR token
` [Qemu-devel] [PATCH v3 18/58] json: Reject unescaped control characters
` [Qemu-devel] [PATCH v3 19/58] json: Revamp lexer documentation
` [Qemu-devel] [PATCH v3 20/58] json: Tighten and simplify qstring_from_escaped_str()'s loop
` [Qemu-devel] [PATCH v3 21/58] check-qjson: Document we expect invalid UTF-8 to be rejected
` [Qemu-devel] [PATCH v3 22/58] json: Reject invalid UTF-8 sequences
` [Qemu-devel] [PATCH v3 23/58] json: Report first rather than last parse error
` [Qemu-devel] [PATCH v3 24/58] json: Leave rejecting invalid UTF-8 to parser
` [Qemu-devel] [PATCH v3 25/58] json: Accept overlong \xC0\x80 as U+0000 ("modified UTF-8")
` [Qemu-devel] [PATCH v3 26/58] json: Leave rejecting invalid escape sequences to parser
` [Qemu-devel] [PATCH v3 27/58] json: Simplify parse_string()
` [Qemu-devel] [PATCH v3 28/58] json: Reject invalid \uXXXX, fix \u0000
` [Qemu-devel] [PATCH v3 29/58] json: Fix \uXXXX for surrogate pairs
` [Qemu-devel] [PATCH v3 30/58] check-qjson: Fix and enable utf8_string()'s disabled part
` [Qemu-devel] [PATCH v3 31/58] json: remove useless return value from lexer/parser
` [Qemu-devel] [PATCH v3 32/58] json-parser: simplify and avoid JSONParserContext allocation
` [Qemu-devel] [PATCH v3 33/58] json: Have lexer call streamer directly
` [Qemu-devel] [PATCH v3 34/58] json: Redesign the callback to consume JSON values
` [Qemu-devel] [PATCH v3 35/58] json: Don't pass null @tokens to json_parser_parse()
` [Qemu-devel] [PATCH v3 36/58] json: Don't create JSON_ERROR tokens that won't be used
` [Qemu-devel] [PATCH v3 37/58] json: Rename token JSON_ESCAPE & friends to JSON_INTERP
` [Qemu-devel] [PATCH v3 38/58] json: Treat unwanted interpolation as lexical error
` [Qemu-devel] [PATCH v3 39/58] json: Pass lexical errors and limit violations to callback
` [Qemu-devel] [PATCH v3 40/58] json: Leave rejecting invalid interpolation to parser
` [Qemu-devel] [PATCH v3 41/58] json: Replace %I64d, %I64u by %PRId64, %PRIu64
` [Qemu-devel] [PATCH v3 42/58] json: Improve names of lexer states related to numbers
` [Qemu-devel] [PATCH v3 43/58] qjson: Fix qobject_from_json() & friends for multiple values
` [Qemu-devel] [PATCH v3 44/58] json: Fix latent parser aborts at end of input
` [Qemu-devel] [PATCH v3 45/58] json: Fix streamer not to ignore trailing unterminated structures
` [Qemu-devel] [PATCH v3 46/58] json: Assert json_parser_parse() consumes all tokens on success
` [Qemu-devel] [PATCH v3 47/58] qjson: Have qobject_from_json() & friends reject empty and blank
` [Qemu-devel] [PATCH v3 48/58] json: Enforce token count and size limits more tightly
` [Qemu-devel] [PATCH v3 49/58] json: Streamline json_message_process_token()
` [Qemu-devel] [PATCH v3 50/58] json: Unbox tokens queue in JSONMessageParser
` [Qemu-devel] [PATCH v3 51/58] json: Make JSONToken opaque outside json-parser.c
` [Qemu-devel] [PATCH v3 52/58] qobject: Drop superfluous includes of qemu-common.h
` [Qemu-devel] [PATCH v3 53/58] json: Clean up headers
` [Qemu-devel] [PATCH v3 54/58] tests/drive_del-test: Fix harmless JSON interpolation bug
` [Qemu-devel] [PATCH v3 55/58] json: Keep interpolation state in JSONParserContext
` [Qemu-devel] [PATCH v3 56/58] json: Improve safety of qobject_from_jsonf_nofail() & friends
` [Qemu-devel] [PATCH v3 57/58] json: Support %% in JSON strings when interpolating
` [Qemu-devel] [PATCH v3 58/58] json: Update references to RFC 7159 to RFC 8259

[PATCH] selftests: android: move config up a level
 2018-08-23 17:05 UTC  (4+ messages)

[Qemu-devel] clean/simple Q35 support in libvirt+QEMU for guest OSes that don't support virtio-1.0
 2018-08-23 17:04 UTC  (11+ messages)
  ` [Qemu-devel] [libvirt] "

How to submit patch for ti-u-boot.git
 2018-08-23 17:03 UTC  (2+ messages)

[PATCH v3 1/2] mm: migration: fix migration of huge PMD shared pages
 2018-08-23 17:01 UTC  (10+ messages)

[PATCH 0/8] Improve running DPDK without hugetlbfs mounpoint
 2018-08-23 16:59 UTC  (9+ messages)
` [PATCH 1/8] fbarray: fix detach in noshconf mode
` [PATCH 2/8] eal: don't allow legacy mode with in-memory mode
` [PATCH 3/8] mem: raise maximum fd limit unconditionally
` [PATCH 4/8] memalloc: rename lock list to fd list
` [PATCH 5/8] memalloc: track page fd's in non-single file mode
` [PATCH 6/8] memalloc: add EAL-internal API to get and set segment fd's
` [PATCH 7/8] mem: add external API to retrieve page fd from EAL
` [PATCH 8/8] mem: support using memfd segments for in-memory mode

[PATCH] scsi: hisi_sas: Switch from msleep to usleep_range per timers-howto.txt
 2018-08-23 17:01 UTC  (3+ messages)

[PATCH xf86-video-ati 1/2] Add m4 directory
 2018-08-23 17:01 UTC  (2+ messages)
  ` [PATCH xf86-video-ati 2/2] Use AC_CONFIG_MACRO_DIR instead of AC_CONFIG_MACRO_DIRS

SCHED_DEADLINE as user
 2018-08-23 13:30 UTC  (11+ messages)

[PATCH v2] scripts: Add autobuilder worker test script
 2018-08-23 16:59 UTC 

[PATCH v3 0/2] Add R8A77980/Condor/V3HSK LVDS/HDMI support
 2018-08-23 16:59 UTC  (3+ messages)
` [PATCH v4] arm64: dts: renesas: condor/v3hsk: add DU/LVDS/HDMI support

[PATCH 00/30] v4l: add support for multiplexed streams
 2018-08-23 13:25 UTC  (31+ messages)
` [PATCH 01/30] media: entity: Use pad as a starting point for graph walk
` [PATCH 02/30] media: entity: Use pads instead of entities in the media graph walk stack
` [PATCH 03/30] media: entity: Walk the graph based on pads
` [PATCH 04/30] v4l: mc: Start walk from a specific pad in use count calculation
` [PATCH 05/30] media: entity: Move the pipeline from entity to pads
` [PATCH 06/30] media: entity: Use pad as the starting point for a pipeline
` [PATCH 07/30] media: entity: Add has_route entity operation
` [PATCH 08/30] media: entity: Add media_has_route() function
` [PATCH 09/30] media: entity: Swap pads if route is checked from source to sink
` [PATCH 10/30] media: entity: Use routing information during graph traversal
` [PATCH 11/30] media: entity: Skip link validation for pads to which there is no route to
` [PATCH 12/30] media: entity: Add an iterator helper for connected pads
` [PATCH 13/30] media: entity: Add only connected pads to the pipeline
` [PATCH 14/30] media: entity: Add debug information in graph walk route check
` [PATCH 15/30] media: entity: Look for indirect routes
` [PATCH 16/30] v4l: subdev: Add [GS]_ROUTING subdev ioctls and operations
` [PATCH 17/30] v4l: subdev: compat: Implement handling for VIDIOC_SUBDEV_[GS]_ROUTING
` [PATCH 18/30] v4l: subdev: Take routing information into account in link validation
` [PATCH 19/30] v4l: subdev: Improve link format validation debug messages
` [PATCH 20/30] v4l: mc: Add an S_ROUTING helper function for power state changes
` [PATCH 21/30] v4l: Add bus type to frame descriptors
` [PATCH 22/30] v4l: Add CSI-2 bus configuration "
` [PATCH 23/30] v4l: Add stream to frame descriptor
` [PATCH 24/30] adv748x: csi2: add translation from pixelcode to CSI-2 datatype
` [PATCH 25/30] adv748x: csi2: only allow formats on sink pads
` [PATCH 26/30] adv748x: csi2: describe the multiplexed stream
` [PATCH 27/30] adv748x: csi2: add internal routing configuration
` [PATCH 28/30] adv748x: afe: add routing support
` [PATCH 29/30] rcar-csi2: use frame description information to configure CSI-2 bus
` [PATCH 30/30] rcar-csi2: expose the subdevice internal routing

[PATCH 4.4 00/79] 4.4.152-stable review
 2018-08-23 16:56 UTC  (3+ messages)

KASAN: use-after-free Read in __list_del_entry_valid (4)
 2018-08-23 16:55 UTC  (8+ messages)
  ` [RDMA bug] "

[PATCH v2.1] btrfs: Handle owner mismatch gracefully when walking up tree
 2018-08-23 13:25 UTC  (4+ messages)

[lkp-robot] [mm] 15d36fecd0: WARNING:at_kernel/memremap.c:#devm_memremap_pages
 2018-08-23 16:55 UTC  (3+ messages)

[PATCH 0/2] Add R-Car V3H (R8A77980) support to the R-Car LVDS driver
 2018-08-23 16:53 UTC  (2+ messages)

[RFC] IPMI state machine regression
 2018-08-23 16:52 UTC  (5+ messages)

[Qemu-devel] [PATCH v6 1/2] linux-headers: Update to kernel mainline commit 815f0ddb3
 2018-08-23 16:52 UTC  (3+ messages)
` [Qemu-devel] [PATCH v6 2/2] target: arm: Add support for VCPU event states

[RFC 00/10] vhost: add postcopy live-migration support
 2018-08-23 16:51 UTC  (11+ messages)
` [RFC 01/10] vhost: define postcopy protocol flag
` [RFC 02/10] vhost: add number of fds to vhost-user messages and use it
` [RFC 03/10] vhost: enable fds passing when sending vhost-user messages
` [RFC 04/10] vhost: introduce postcopy's advise message
` [RFC 05/10] vhost: add support for postcopy's listen message
` [RFC 06/10] vhost: register new regions with userfaultfd
` [RFC 07/10] vhost: avoid useless VhostUserMemory copy
` [RFC 08/10] vhost: send userfault range addresses back to qemu
` [RFC 09/10] vhost: add support to postcopy's end request
` [RFC 10/10] vhost: enable postcopy protocol feature

[PATCH] sched/fair: vruntime should normalize when switching from fair
 2018-08-23 16:52 UTC  (3+ messages)

[PATCH] scripts: Add autobuilder worker test script
 2018-08-23 16:51 UTC 

[igt-dev] [PATCH i-g-t] gem_storedw_loop: Remove unused variable
 2018-08-23 16:49 UTC  (3+ messages)

[PATCH v5 0/8] drm: Add generic fbdev emulation
 2018-08-23 16:49 UTC  (8+ messages)
` [PATCH v5 4/8] drm/cma-helper: Use the "

[PATCH v1] security/capabilities: remove check for -EINVAL
 2018-08-23 16:48 UTC  (4+ messages)

[PATCH v2] crypto: arm64/aes-modes - get rid of literal load of addend vector
 2018-08-23 16:48 UTC  (2+ messages)

[Qemu-devel] [PULL v4 00/69] Misc patches for 2018-08-21
 2018-08-23 16:47 UTC  (2+ messages)
` [Qemu-devel] [PULL 14/69] tests: Skip old versioned machine types in quick testing mode

[PATCH v2 0/2]: perf: reduce data loss when profiling highly parallel CPU bound workloads
 2018-08-23 16:47 UTC  (3+ messages)
` [PATCH v2 1/2]: perf util: map data buffer for preserving collected data
` [PATCH v2 2/2]: perf record: enable asynchronous trace writing

[PATCH] python3: enable profile optimized builds
 2018-08-23 16:47 UTC  (8+ messages)

[RESEND PATCH V5 0/8] x86: infrastructure to enable FSGSBASE
 2018-08-23 16:44 UTC  (9+ messages)
` [RESEND PATCH V5 1/8] x86/arch_prctl/64: Make ptrace read FS/GS base accurately
` [RESEND PATCH V5 2/8] x86/fsgsbase/64: Introduce FS/GS base helper functions
` [RESEND PATCH V5 3/8] x86/fsgsbase/64: Make ptrace use FS/GS base helpers
` [RESEND PATCH V5 4/8] x86/fsgsbase/64: Use FS/GS base helpers in core dump
` [RESEND PATCH V5 5/8] x86/fsgsbase/64: Factor out load FS/GS segments from __switch_to
` [RESEND PATCH V5 6/8] x86/segments/64: Rename PER_CPU segment to CPU_NUMBER
` [RESEND PATCH V5 7/8] x86/vdso: Introduce helper functions for CPU and node number
` [RESEND PATCH V5 8/8] x86/vdso: Move out the CPU initialization

[PATCH] x86/kvm/nVMX: avoid redundant double assignment of nested_run_pending
 2018-08-23 16:38 UTC  (2+ messages)

[PATCH] kernel: yocto: Add dependency on do_prepare_recipe_sysroot
 2018-08-23 16:45 UTC  (8+ messages)

[Intel-wired-lan] [PATCH v6 01/11] igc: Add skeletal frame for Intel(R) 2.5G Ethernet Controller support
 2018-08-23 16:44 UTC  (9+ messages)

[Qemu-devel] [PATCH] vl.c: make sure maxcpus matches topology to prevent migration failure
 2018-08-23 16:32 UTC  (2+ messages)

[Qemu-devel] [PULL v3 00/69] Misc patches for 2018-08-21
 2018-08-23 16:35 UTC  (4+ messages)

[Qemu-devel] [PATCH] Fix ARM v7m gen_intermediate_code()
 2018-08-23 16:36 UTC 

[U-Boot] [PATCH] efi_loader: Rename sections to allow for implicit data
 2018-08-23 16:41 UTC  (13+ messages)

[PATCH] HID: add support for Apple Magic Keyboards
 2018-08-23 16:40 UTC 

[PATCH] etnaviv: setup missing dma_mask
 2018-08-23 16:38 UTC  (2+ messages)

Ceph Testing Weekly Tomorrow — With Kubernetes/Install discussion
 2018-08-23 16:38 UTC  (2+ messages)

[Intel-wired-lan] [PATCH v6 04/11] igc: Add interrupt support
 2018-08-23 16:37 UTC  (2+ messages)

[Intel-wired-lan] [PATCH v6 03/11] igc: Add netdev
 2018-08-23 16:37 UTC  (2+ messages)

[PATCH 4.4 000/105] 4.4.106-stable review
 2018-08-23 16:37 UTC  (5+ messages)
` [PATCH 4.4 103/105] Revert "x86/mm/pat: Ensure cpa->pfn only contains page frame numbers"

[Intel-wired-lan] [PATCH v6 02/11] igc: Add support for PF
 2018-08-23 16:37 UTC  (2+ messages)

[Buildroot] Package with dependency with another git
 2018-08-23 16:36 UTC  (3+ messages)

[PATCH 00/24] staging: wilc1000: avoid use of static and global variable
 2018-08-23 13:06 UTC  (6+ messages)
` [PATCH 23/24] staging: wilc1000: move 'wilc_connecting' static variable to 'wilc_vif' struct

[PATCH v2] arm64: dts: rockchip: add WiFi module support for Firefly-RK3399
 2018-08-23 16:35 UTC 

[PATCH v5 00/23] IOMMU and VT-d driver support for Shared Virtual Address (SVA)
 2018-08-23 16:34 UTC  (3+ messages)
` [PATCH v5 01/23] iommu: introduce bind_pasid_table API function

[Buildroot] [git commit branch/2018.05.x] package/gnutls: bump version to 3.5.19
 2018-08-23 16:34 UTC 

Disabling CPU vulnerabilities workarounds
 2018-08-23 16:33 UTC 

[PATCH] doc: fix style and syntax errors in flow API guide
 2018-08-23 16:32 UTC  (3+ messages)
  ` [dpdk-stable] "

[U-Boot] [RESEND PATCH v9 01/18] Revert "efi_loader: Rename sections to allow for implicit data"
 2018-08-23 16:31 UTC  (7+ messages)

[U-Boot] [PATCH 00/10] AVB using OP-TEE
 2018-08-23 16:31 UTC  (8+ messages)
` [U-Boot] [PATCH 04/10] Add UCLASS_TEE for Trusted Execution Environment

[ANNOUNCE] Git v2.19.0-rc0
 2018-08-23 16:31 UTC  (11+ messages)
                  ` wide t/perf output, was "


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.