search for: 408,13

Displaying 10 results from an estimated 10 matches for "408,13".

Did you mean: 108,13
2015 Mar 11
2
[PATCH] maint.mk: remove error_message_period check
...sed at: https://www.redhat.com/archives/libguestfs/2014-September/msg00215.html Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com> --- maint.mk | 7 ------- 1 file changed, 7 deletions(-) diff --git a/maint.mk b/maint.mk index b6ec1b5..76759d4 100644 --- a/maint.mk +++ b/maint.mk @@ -408,13 +408,6 @@ sc_error_message_uppercase: { echo '$(ME): found capitalized error message' 1>&2; \ exit 1; } || : -# Error messages should not end with a period -sc_error_message_period: - @grep -nEA2 '[^rp]error *\(' $$($(VC_LIST_EXCEPT)) \ - | grep -E '[...
2015 Mar 12
1
Re: [PATCH] maint.mk: remove error_message_period check
...ff-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com> > > --- > > maint.mk | 7 ------- > > 1 file changed, 7 deletions(-) > > > > diff --git a/maint.mk b/maint.mk > > index b6ec1b5..76759d4 100644 > > --- a/maint.mk > > +++ b/maint.mk > > @@ -408,13 +408,6 @@ sc_error_message_uppercase: > > { echo '$(ME): found capitalized error message' 1>&2; \ > > exit 1; } || : > > > > -# Error messages should not end with a period > > -sc_error_message_period: > > - @grep -nEA2 '[^rp]erro...
2015 Mar 12
0
Re: [PATCH] maint.mk: remove error_message_period check
...-September/msg00215.html > > Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com> > --- > maint.mk | 7 ------- > 1 file changed, 7 deletions(-) > > diff --git a/maint.mk b/maint.mk > index b6ec1b5..76759d4 100644 > --- a/maint.mk > +++ b/maint.mk > @@ -408,13 +408,6 @@ sc_error_message_uppercase: > { echo '$(ME): found capitalized error message' 1>&2; \ > exit 1; } || : > > -# Error messages should not end with a period > -sc_error_message_period: > - @grep -nEA2 '[^rp]error *\(' $$($(VC_LIST_EXCE...
2012 Mar 13
3
[LLVMdev] Your commit 103140
...+declare i32 @xstat64(i32, i8*, i8*) > Index: lib/CodeGen/AsmPrinter/AsmPrinter.cpp > =================================================================== > --- lib/CodeGen/AsmPrinter/AsmPrinter.cpp (revision 103139) > +++ lib/CodeGen/AsmPrinter/AsmPrinter.cpp (revision 103140) > @@ -408,7 +408,13 @@ > /// EmitFunctionEntryLabel - Emit the label that is the entrypoint for the > /// function. This can be overridden by targets as required to do custom stuff. > void AsmPrinter::EmitFunctionEntryLabel() { > - OutStreamer.EmitLabel(CurrentFnSym); > + // The function...
2011 Aug 31
1
[PATCH] hivex: Add byte runs for nodes and values
...} static int @@ -310,6 +385,7 @@ value_string_invalid_utf16 (hive_h *h, void *writer_v, hive_node_h node, { xmlTextWriterPtr writer = (xmlTextWriterPtr) writer_v; const char *type; + int ret = 0; switch (t) { case hive_t_string: type = "bad-string"; break; @@ -332,10 +408,13 @@ value_string_invalid_utf16 (hive_h *h, void *writer_v, hive_node_h node, } start_value (writer, key, type, "base64"); + XML_CHECK (xmlTextWriterStartAttribute, (writer, BAD_CAST "value")); XML_CHECK (xmlTextWriterWriteBase64, (writer, str, 0, len)); + XML_CHEC...
2015 Sep 29
8
[PATCH 0/7] copy-in/copy-out: Capture errors from tar subprocess (RHBZ#1267032).
Commits 3c27f3d91e1566854747bbe844186783fc84f3a8 and 1b6f0daa9ae7fcc94e389232d0c397816cda973d added an internal API for running commands asynchronously. It is only used by the copy-in and copy-out APIs. Unfortunately this made the command code very complex: it was almost impossible to redirect stderr to a file, and there were a lot of long-range dependencies through the file. It was also buggy:
2010 Aug 31
13
[PATCH v2] Add progress bars
This is an updated and extended version of the original patch: https://www.redhat.com/archives/libguestfs/2010-August/msg00163.html This adds OCaml and Perl bindings (both tested), support for progress bars in virt-resize, and adds progress notifications to a number of the simpler commands. Still to do is to add progress messages to more commands. There are still a few commands which would be
2020 Aug 13
28
[PATCH 00/20] Convert all remaining drivers to GEM object functions
The GEM and PRIME related callbacks in struct drm_driver are deprecated in favor of GEM object functions in struct drm_gem_object_funcs. This patchset converts the remaining drivers to object functions and removes most of the obsolete interfaces. Patches #1 to #18 convert DRM drivers to GEM object functions, one by one. Each patch moves existing callbacks from struct drm_driver to an instance of
2014 Jul 31
19
[PATCH 01/19] fence: add debugging lines to fence_is_signaled for the callback
fence_is_signaled callback should support being run in atomic context, but not in irq context. Signed-off-by: Maarten Lankhorst <maarten.lankhorst at canonical.com> --- include/linux/fence.h | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/include/linux/fence.h b/include/linux/fence.h index d174585b874b..c1a4519ba2f5 100644 ---
2017 Jun 21
45
[PATCH v8 00/42] Refactor utilities and reimplement inspection.
v7 was: https://www.redhat.com/archives/libguestfs/2017-June/msg00169.html https://www.redhat.com/archives/libguestfs/2017-June/msg00184.html I believe this addresses all comments received so far. Also it now passes a test where I compared about 100 disk images processed with old and new virt-inspector binaries. The output is identical in all cases except one which is caused by a bug in blkid