All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2016-05-11 12:59:00 to 2016-05-11 13:25:15 UTC [more...]

[PATCH v2 00/94] libify apply and use lib in am
 2016-05-11 13:17 UTC  (87+ messages)
` [PATCH v2 01/94] builtin/apply: make gitdiff_verify_name() return void
` [PATCH v2 02/94] builtin/apply: avoid parameter shadowing 'p_value' global
` [PATCH v2 03/94] builtin/apply: avoid parameter shadowing 'linenr' global
` [PATCH v2 04/94] builtin/apply: avoid local variable shadowing 'len' parameter
` [PATCH v2 06/94] builtin/apply: move 'options' variable into cmd_apply()
` [PATCH v2 07/94] builtin/apply: move 'read_stdin' global "
` [PATCH v2 08/94] builtin/apply: introduce 'struct apply_state' to start libifying
` [PATCH v2 09/94] builtin/apply: move 'state' init into init_apply_state()
` [PATCH v2 10/94] builtin/apply: move 'unidiff_zero' global into 'struct apply_state'
` [PATCH v2 12/94] builtin/apply: move 'check_index' "
` [PATCH v2 13/94] builtin/apply: move 'apply_in_reverse' "
` [PATCH v2 17/94] builtin/apply: move 'allow_overlap' "
` [PATCH v2 18/94] builtin/apply: move 'cached' "
` [PATCH v2 20/94] builtin/apply: move 'numstat' "
` [PATCH v2 21/94] builtin/apply: move 'summary' "
` [PATCH v2 23/94] builtin/apply: move 'no_add' "
` [PATCH v2 24/94] builtin/apply: move 'unsafe_paths' "
` [PATCH v2 25/94] builtin/apply: move 'line_termination' "
` [PATCH v2 26/94] builtin/apply: move 'fake_ancestor' "
` [PATCH v2 27/94] builtin/apply: move 'p_context' "
` [PATCH v2 28/94] builtin/apply: move 'apply' "
` [PATCH v2 29/94] builtin/apply: move 'patch_input_file' "
` [PATCH v2 30/94] builtin/apply: move 'limit_by_name' "
` [PATCH v2 31/94] builtin/apply: move 'has_include' "
` [PATCH v2 32/94] builtin/apply: move 'p_value' "
` [PATCH v2 33/94] builtin/apply: move 'p_value_known' "
` [PATCH v2 34/94] builtin/apply: move 'root' "
` [PATCH v2 35/94] builtin/apply: move 'whitespace_error' "
` [PATCH v2 36/94] builtin/apply: move 'whitespace_option' "
` [PATCH v2 37/94] builtin/apply: remove whitespace_option arg from set_default_whitespace_mode()
` [PATCH v2 38/94] builtin/apply: move 'squelch_whitespace_errors' into 'struct apply_state'
` [PATCH v2 39/94] builtin/apply: move 'applied_after_fixing_ws' "
` [PATCH v2 40/94] builtin/apply: move 'ws_error_action' "
` [PATCH v2 41/94] builtin/apply: move 'ws_ignore_action' "
` [PATCH v2 42/94] builtin/apply: move 'max_change' and 'max_len' "
` [PATCH v2 43/94] builtin/apply: move 'state_linenr' global "
` [PATCH v2 44/94] builtin/apply: move 'fn_table' "
` [PATCH v2 45/94] builtin/apply: move 'symlink_changes' "
` [PATCH v2 46/94] builtin/apply: move 'state' check into check_apply_state()
` [PATCH v2 47/94] builtin/apply: move applying patches into apply_all_patches()
` [PATCH v2 48/94] builtin/apply: rename 'prefix_' parameter to 'prefix'
` [PATCH v2 49/94] builtin/apply: move 'lock_file' global into 'struct apply_state'
` [PATCH v2 50/94] builtin/apply: move 'newfd' "
` [PATCH v2 51/94] builtin/apply: make apply_patch() return -1 instead of die()ing
` [PATCH v2 52/94] builtin/apply: read_patch_file() "
` [PATCH v2 53/94] builtin/apply: make find_header() "
` [PATCH v2 54/94] builtin/apply: make parse_chunk() return a negative integer on error
` [PATCH v2 55/94] builtin/apply: make parse_single_patch() return -1 "
` [PATCH v2 56/94] apply: move 'struct apply_state' to apply.h
` [PATCH v2 57/94] builtin/apply: make parse_whitespace_option() return -1 instead of die()ing
` [PATCH v2 58/94] builtin/apply: make parse_ignorewhitespace_option() "
` [PATCH v2 59/94] builtin/apply: move init_apply_state() to apply.c
` [PATCH v2 60/94] apply: make init_apply_state() return -1 instead of exit()ing
` [PATCH v2 61/94] builtin/apply: make check_apply_state() return -1 instead of die()ing
` [PATCH v2 62/94] builtin/apply: move check_apply_state() to apply.c
` [PATCH v2 63/94] builtin/apply: make apply_all_patches() return -1 on error
` [PATCH v2 64/94] builtin/apply: make parse_traditional_patch() "
` [PATCH v2 65/94] builtin/apply: make gitdiff_*() return 1 at end of header
` [PATCH v2 66/94] builtin/apply: make gitdiff_*() return -1 on error
` [PATCH v2 67/94] builtin/apply: change die_on_unsafe_path() to check_unsafe_path()
` [PATCH v2 68/94] builtin/apply: make build_fake_ancestor() return -1 on error
` [PATCH v2 69/94] builtin/apply: make remove_file() "
` [PATCH v2 70/94] builtin/apply: make add_conflicted_stages_file() "
` [PATCH v2 71/94] builtin/apply: make add_index_file() "
` [PATCH v2 72/94] builtin/apply: make create_file() "
` [PATCH v2 73/94] builtin/apply: make write_out_one_result() "
` [PATCH v2 74/94] builtin/apply: make write_out_results() "
` [PATCH v2 75/94] builtin/apply: make try_create_file() "
` [PATCH v2 76/94] builtin/apply: make create_one_file() "
` [PATCH v2 77/94] builtin/apply: rename option parsing functions
` [PATCH v2 78/94] apply: rename and move opt constants to apply.h
` [PATCH v2 80/94] apply: make some parsing functions static again
` [PATCH v2 81/94] run-command: make dup_devnull() non static
` [PATCH v2 82/94] apply: roll back index lock file in case of error
` [PATCH v2 83/94] environment: add set_index_file()
` [PATCH v2 84/94] builtin/am: use apply api in run_apply()
` [PATCH v2 85/94] write_or_die: use warning() instead of fprintf(stderr, ...)
` [PATCH v2 86/94] apply: add 'be_silent' variable to 'struct apply_state'
` [PATCH v2 87/94] apply: make 'be_silent' incomatible with 'apply_verbosely'
` [PATCH v2 88/94] apply: don't print on stdout when be_silent is set
` [PATCH v2 89/94] usage: add set_warn_routine()
` [PATCH v2 90/94] usage: add get_error_routine() and get_warn_routine()
` [PATCH v2 91/94] apply: change error_routine when be_silent is set
` [PATCH v2 92/94] am: use be_silent in 'struct apply_state' to shut up applying patches
` [PATCH v2 93/94] run-command: make dup_devnull() static again
` [PATCH v2 94/94] builtin/apply: add a cli option for be_silent

[Qemu-devel] [PATCH v3 00/14] block: Move I/O throttling to BlockBackend
 2016-05-11 13:24 UTC  (11+ messages)
` [Qemu-devel] [PATCH v3 01/14] block: Make sure throttled BDSes always have a BB
` [Qemu-devel] [PATCH v3 02/14] block: Introduce BlockBackendPublic
` [Qemu-devel] [PATCH v3 03/14] block: throttle-groups: Use BlockBackend pointers internally
` [Qemu-devel] [PATCH v3 04/14] block: Convert throttle_group_get_name() to BlockBackend
` [Qemu-devel] [PATCH v3 05/14] block: Move throttling fields from BDS to BB
` [Qemu-devel] [PATCH v3 06/14] block: Move actual I/O throttling to BlockBackend
` [Qemu-devel] [PATCH v3 07/14] block: Move I/O throttling configuration functions "
` [Qemu-devel] [PATCH v3 08/14] block: Introduce BdrvChild.opaque
` [Qemu-devel] [PATCH v3 10/14] block/io: Quiesce parents between drained_begin/end
` [Qemu-devel] [PATCH v3 11/14] block: Decouple throttling from BlockDriverState

[PATCH v2 0/9] Add support for remote unwind
 2016-05-11 13:24 UTC  (7+ messages)
` [PATCH v2 3/9] perf build: Add build-test for libunwind cross-platforms support
` [PATCH v2 4/9] perf build: Add build-test for debug-frame on arm/arm64

[PATCH v3 00/55] KVM: arm/arm64: Rework virtual GIC emulation
 2016-05-11 13:24 UTC  (30+ messages)
` [PATCH v3 18/55] KVM: arm/arm64: vgic-new: Add GICv2 world switch backend
` [PATCH v3 23/55] KVM: arm/arm64: vgic-new: Add CTLR, TYPER and IIDR handlers
` [PATCH v3 24/55] KVM: arm/arm64: vgic-new: Add ENABLE registers handlers
` [PATCH v3 25/55] KVM: arm/arm64: vgic-new: Add PENDING "

[Qemu-devel] [RFC for-2.7] block: keep AioContext pointer in BlockBackend
 2016-05-11 13:24 UTC  (5+ messages)

[PATCH 0/6] IB/srp: Second series of patches for kernel v4.7
 2016-05-11 13:24 UTC  (3+ messages)
` [PATCH 1/6] IB/srp: Print "ib_srp: " prefix once

Add top down metrics to perf stat
 2016-05-11 13:23 UTC  (7+ messages)
` [PATCH 03/10] x86, perf: Add Top Down events to Intel Core
` [PATCH 06/10] perf, tools, stat: Avoid fractional digits for integer scales

[Qemu-devel] [PATCH v4 0/8] bdrv_flush_io_queue removal, shared LinuxAioState
 2016-05-11 13:23 UTC  (10+ messages)
` [Qemu-devel] [PATCH v4 8/8] linux-aio: share one LinuxAioState within an AioContext
  ` [Qemu-devel] [Qemu-block] "

[PATCH v2 1/2] direct-io: cleanup get_more_blocks()
 2016-05-11 13:23 UTC  (3+ messages)

[GIT PULL FOR v4.7] Renesas VSP updates
 2016-05-11 13:23 UTC 

[PATCH v4 0/6] Add alignment check for DAX mount
 2016-05-11 13:20 UTC  (2+ messages)

[Buildroot] [PATCH] python-coherence: fix twisted detection
 2016-05-11 13:22 UTC  (2+ messages)

[PATCH] MIPS: Allow R6 compact branch policy to be left unspecified
 2016-05-11 13:22 UTC  (7+ messages)

[Buildroot] [git commit] python-coherence: fix twisted detection
 2016-05-11 13:22 UTC 

[PATCH 1/4] drm: add generic zpos property
 2016-05-11 13:21 UTC  (5+ messages)

[LTP] [PATCH 1/2] checkpoints: avoid unnecesasry sleep in checkpoint_wake
 2016-05-11 13:21 UTC  (3+ messages)
` [LTP] [PATCH 2/2] pause01: rewrite testcase

[U-Boot] GPIO driver for Freescale QorIQ T2080
 2016-05-11 13:21 UTC  (3+ messages)

Hammer vs Jewel librbd performance testing and git bisection results
 2016-05-11 13:21 UTC 

[next-20160506 mm,smp] hang up at csd_lock_wait() from drain_all_pages()
 2016-05-11 13:19 UTC  (5+ messages)
` x86_64 Question: Are concurrent IPI requests safe?

[PATCH] ata: dwc: add DMADEVICES dependency
 2016-05-11 13:19 UTC  (4+ messages)

aarch64 clone() man page omission
 2016-05-11 13:18 UTC  (5+ messages)

[fido][PATCH 0/1] Fido OpenSSL security upgrade
 2016-05-11 13:18 UTC 

[Qemu-devel] [PATCH v4 00/10]Provide a QOM-based authorization API
 2016-05-11 13:15 UTC  (11+ messages)
` [Qemu-devel] [PATCH v4 01/10] qdict: implement a qdict_crumple method for un-flattening a dict
` [Qemu-devel] [PATCH v4 02/10] qapi: allow QmpInputVisitor to auto-cast types
` [Qemu-devel] [PATCH v4 03/10] qom: support arbitrary non-scalar properties with -object
` [Qemu-devel] [PATCH v4 04/10] util: add QAuthZ object as an authorization base class
` [Qemu-devel] [PATCH v4 05/10] util: add QAuthZSimple object type for a simple access control list
` [Qemu-devel] [PATCH v4 06/10] acl: delete existing ACL implementation
` [Qemu-devel] [PATCH v4 07/10] qemu-nbd: add support for ACLs for TLS clients
` [Qemu-devel] [PATCH v4 08/10] nbd: allow an ACL to be set with nbd-server-start QMP command
` [Qemu-devel] [PATCH v4 09/10] chardev: add support for ACLs for TLS clients
` [Qemu-devel] [PATCH v4 10/10] vnc: allow specifying a custom ACL object name

[PATCH] dmaengine: of_dma: approximate an average distribution
 2016-05-11 13:15 UTC 

raid 5 crashed
 2016-05-11 13:15 UTC  (2+ messages)

[PATCHv3 0/4] ARM: dts: r8a779[0-4]: Reference both DMA controllers
 2016-05-11 13:13 UTC  (13+ messages)
` [PATCHv3 1/4] ARM: dts: r8a7790: "
` [PATCHv3 2/4] ARM: dts: r8a7791: "
` [PATCHv3 3/4] ARM: dts: r8a7793: "
` [PATCHv3 4/4] ARM: dts: r8a7794: "

crash on boot with 4.6.1 on fedora 24
 2016-05-11 13:15 UTC  (21+ messages)

[PATCH 1/1] devicetree: sunxi: Add OLinuXino Lime2 eMMC to the Makefile
 2016-05-11 13:14 UTC  (4+ messages)

[RFC PATCH 0/2] net: threadable napi poll loop
 2016-05-11 13:13 UTC  (10+ messages)

[B.A.T.M.A.N.] [PATCH 1/2] batman-adv: remove forward declaration by including proper header
 2016-05-11 13:11 UTC  (3+ messages)
` [B.A.T.M.A.N.] [PATCH 2/2] batman-adv: B.A.T.M.A.N. V - implement hard-iface init function

2 related bluestore questions
 2016-05-11 13:10 UTC  (8+ messages)

Is there anyone on MAC kernel
 2016-05-11 13:10 UTC  (2+ messages)

Regression: Kernel 4.6 DisplayPort Audio
 2016-05-11 13:09 UTC  (4+ messages)

[PATCH 0/2] ARM: dts: dra7: Add OCMCRAM nodes
 2016-05-11 13:09 UTC  (7+ messages)
` [PATCH 1/2] ARM: dts: dra7: Add ocmcram nodes
` [PATCH 2/2] ARM: dts: dra7: Add ti,secure-ram node to ocmcram1 node

[PATCH] xen: remove incorrect forward declaration
 2016-05-11 13:07 UTC 

[PATCH] xen: remove incorrect forward declaration
 2016-05-11 13:07 UTC 

live migrating hvm from 4.4 to 4.7 fails in ioreq server
 2016-05-11 13:07 UTC  (4+ messages)

[PATCH] watchdog: ebc-c384_wdt: Simplify ebc_c384_wdt_start timeout computation
 2016-05-11 13:05 UTC 

[PATCH v2 01/13] dt-bindings: Add Renesas R-Car FCP DT bindings
 2016-05-11 13:05 UTC  (3+ messages)
` [PATCH v2.1] "

[Qemu-devel] ipxe and arm
 2016-05-11 13:03 UTC 

[xen-unstable-smoke test] 94028: tolerable all pass - PUSHED
 2016-05-11 13:02 UTC 

[xen-4.5-testing test] 93989: tolerable FAIL - PUSHED
 2016-05-11 13:02 UTC 

[PATCH v2 1/1] HID: multitouch: enable input devices on Surface Book
 2016-05-11 13:01 UTC 

[Qemu-devel] [Bug 1580586] [NEW] Qemu WinXP SP3 second loadvm freezes Guest OS
 2016-05-11 12:50 UTC 

[meta-qt5][PATCH] cmake_qt5: prepend the Qt5 specific CMake variables to EXTRA_OECMAKE
 2016-05-11 13:00 UTC 

[PATCH 0/7] x86/ras: RAS queue
 2016-05-11 12:58 UTC  (4+ messages)
` [PATCH 1/7] x86/mce/AMD: Log Deferred Errors using SMCA MCA_DE{STAT,ADDR} registers
` [PATCH 4/7] x86/cpu: Add detection of AMD RAS Capabilities
` [PATCH 6/7] EDAC, mce_amd: Detect SMCA using X86_FEATURE_SMCA

[PATCH v9 0/7] KVM PCIe/MSI passthrough on ARM/ARM64: kernel part 3/3: vfio changes
 2016-05-11 12:58 UTC  (4+ messages)
` [PATCH v9 3/7] vfio/type1: bypass unmap/unpin and replay for VFIO_IOVA_RESERVED slots

[PATCH net] net/mlx4_core: Fix access to uninitialized index
 2016-05-11 12:59 UTC 


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.