Displaying 20 results from an estimated 409 matches for "84,7".
Did you mean:
24,7
2016 Nov 09
1
[PATCH] upload: improve file write callback
...o pass the pointer
to the struct itself.
Signed-off-by: Matteo Cafasso <noxdafox@gmail.com>
---
daemon/upload.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/daemon/upload.c b/daemon/upload.c
index f034627..8b4f600 100644
--- a/daemon/upload.c
+++ b/daemon/upload.c
@@ -84,7 +84,7 @@ upload (const char *filename, int flags, int64_t offset)
}
}
- r = receive_file (write_cb, &data.fd);
+ r = receive_file (write_cb, &data);
if (r == -1) { /* write error */
err = errno;
r = cancel_receive ();
--
2.10.2
2018 Jul 25
1
[PATCH] v2v: rhv plugin - case-sensitive search queries
...orage']
data_centers = system_service.data_centers_service().list(
search='storage.name=%s' % storage_name,
- case_sensitive=False,
+ case_sensitive=True,
)
if len(data_centers) == 0:
# The storage domain is not attached to a datacenter
@@ -84,7 +84,7 @@ def find_host(connection):
hosts_service = system_service.hosts_service()
hosts = hosts_service.list(
search="hw_id=%s and datacenter=%s and status=Up" % (vdsm_id, datacenter.name),
- case_sensitive=False,
+ case_sensitive=True,
)
if l...
2013 Apr 17
3
[LLVMdev] Patch to compile LLVM with MSVC 2010
...atches like this one below? Or maybe why I shouldn't try to do it.
Sincerely,Sergiy
Index: include/llvm/ADT/StringExtras.h===================================================================--- include/llvm/ADT/StringExtras.h (revision 179701)+++ include/llvm/ADT/StringExtras.h (working copy)@@ -84,7 +84,7 @@ return std::string(BufPtr, Buffer+11); } -static inline std::string utostr(uint64_t X, bool isNeg = false) {+static __declspec(noinline) inline std::string utostr(uint64_t X, bool isNeg = false) { char Buffer[21]; char *BufPtr = Buffer+21; Index: lib/Support/Host.cpp===============...
2002 Jan 30
1
Patch: update zlib/* to 1.1.3
...retrieving revision 1.1
diff -u -r1.1 inffixed.h
--- zlib/inffixed.h 7 May 1998 06:19:43 -0000 1.1
+++ zlib/inffixed.h 30 Jan 2002 01:12:44 -0000
@@ -10,116 +10,142 @@
local uInt fixed_bl = 9;
local uInt fixed_bd = 5;
local inflate_huft fixed_tl[] = {
- {{96,7},256}, {{0,8},80}, {{0,8},16}, {{84,8},115}, {{82,7},31},
- {{0,8},112}, {{0,8},48}, {{0,9},192}, {{80,7},10}, {{0,8},96},
- {{0,8},32}, {{0,9},160}, {{0,8},0}, {{0,8},128}, {{0,8},64},
- {{0,9},224}, {{80,7},6}, {{0,8},88}, {{0,8},24}, {{0,9},144},
- {{83,7},59}, {{0,8},120}, {{0,8},56}, {{0,9},208}, {{81,7},17},
- {{...
2012 Apr 30
4
[PATCHv2] x86info: dump kvm cpuid's
...dump_raw_cpuid(cpu->number, 0xC0000000, cpu->maxei2);
+
+ if (cpu->maxhv >= 0x40000000)
+ dump_raw_cpuid(cpu->number, 0x40000000, cpu->maxhv);
+
}
if (show_cacheinfo) {
diff --git a/x86info.h b/x86info.h
index 7d2a455..c4f5d81 100644
--- a/x86info.h
+++ b/x86info.h
@@ -84,7 +84,7 @@ struct cpudata {
unsigned int cachesize_trace;
unsigned int phyaddr_bits;
unsigned int viraddr_bits;
- unsigned int cpuid_level, maxei, maxei2;
+ unsigned int cpuid_level, maxei, maxei2, maxhv;
char name[CPU_NAME_LEN];
enum connector connector;
unsigned int flags_ecx;
2012 Apr 30
4
[PATCHv2] x86info: dump kvm cpuid's
...dump_raw_cpuid(cpu->number, 0xC0000000, cpu->maxei2);
+
+ if (cpu->maxhv >= 0x40000000)
+ dump_raw_cpuid(cpu->number, 0x40000000, cpu->maxhv);
+
}
if (show_cacheinfo) {
diff --git a/x86info.h b/x86info.h
index 7d2a455..c4f5d81 100644
--- a/x86info.h
+++ b/x86info.h
@@ -84,7 +84,7 @@ struct cpudata {
unsigned int cachesize_trace;
unsigned int phyaddr_bits;
unsigned int viraddr_bits;
- unsigned int cpuid_level, maxei, maxei2;
+ unsigned int cpuid_level, maxei, maxei2, maxhv;
char name[CPU_NAME_LEN];
enum connector connector;
unsigned int flags_ecx;
2017 Oct 17
1
[PATCH] daemon: simplify usage of Chroot.f
...et lines =
match lines with None -> raise Not_found | Some lines -> lines in
let rec loop = function
diff --git a/daemon/inspect_fs_windows.ml b/daemon/inspect_fs_windows.ml
index 78af7f048..c7b766dd0 100644
--- a/daemon/inspect_fs_windows.ml
+++ b/daemon/inspect_fs_windows.ml
@@ -84,7 +84,7 @@ and get_windows_systemroot () =
and get_windows_systemroot_from_boot_ini boot_ini_path =
let chroot = Chroot.create ~name:"get_windows_systemroot_from_boot_ini" () in
- let lines = Chroot.f chroot (fun () -> read_small_file boot_ini_path) () in
+ let lines = Chroot.f...
2013 Apr 18
0
[LLVMdev] Patch to compile LLVM with MSVC 2010
...ed on the compiler.
>
> Sincerely,
> Sergiy
>
> Index: include/llvm/ADT/StringExtras.h
> ===================================================================
> --- include/llvm/ADT/StringExtras.h (revision 179701)
> +++ include/llvm/ADT/StringExtras.h (working copy)
> @@ -84,7 +84,7 @@
> return std::string(BufPtr, Buffer+11);
> }
>
> -static inline std::string utostr(uint64_t X, bool isNeg = false) {
> +static __declspec(noinline) inline std::string utostr(uint64_t X, bool
> isNeg = false) {
> char Buffer[21];
> char *BufPtr = Buffer+2...
2015 Mar 19
2
[LLVMdev] [LV] possible `vector.memcheck` regression when using `llvm.loop` and `llvm.mem.parallel_loop_access`
Adam,
Please find the attached test case (run with ToT opt -O3). As you can see,
`y_body` successfully is vectorized, though %33 and %46 are deemed MayAlias
despite their exclusive use in loads ands stores marked with
`llvm.mem.parallel_loop_access`.
Many Thanks,
Josh
On Thu, Mar 19, 2015 at 12:55 PM, Adam Nemet <anemet at apple.com> wrote:
>
> > On Mar 19, 2015, at 9:43 AM,
2013 Apr 18
2
[LLVMdev] Patch to compile LLVM with MSVC 2010
...erely,
> > Sergiy
> >
> > Index: include/llvm/ADT/StringExtras.h
> > ===================================================================
> > --- include/llvm/ADT/StringExtras.h (revision 179701)
> > +++ include/llvm/ADT/StringExtras.h (working copy)
> > @@ -84,7 +84,7 @@
> > return std::string(BufPtr, Buffer+11);
> > }
> >
> > -static inline std::string utostr(uint64_t X, bool isNeg = false) {
> > +static __declspec(noinline) inline std::string utostr(uint64_t X, bool
> > isNeg = false) {
> > char Buffer[2...
2013 Apr 18
0
[LLVMdev] Patch to compile LLVM with MSVC 2010
...erely,
> > Sergiy
> >
> > Index: include/llvm/ADT/StringExtras.h
> > ===================================================================
> > --- include/llvm/ADT/StringExtras.h (revision 179701)
> > +++ include/llvm/ADT/StringExtras.h (working copy)
> > @@ -84,7 +84,7 @@
> > return std::string(BufPtr, Buffer+11);
> > }
> >
> > -static inline std::string utostr(uint64_t X, bool isNeg = false) {
> > +static __declspec(noinline) inline std::string utostr(uint64_t X, bool
> > isNeg = false) {
> > char Buffer[21];
>...
2020 Jan 07
0
[RFT 06/13] arc: Constify ioreadX() iomem argument (as in generic implementation)
...kernel.org>
---
arch/arc/plat-axs10x/axs10x.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arc/plat-axs10x/axs10x.c b/arch/arc/plat-axs10x/axs10x.c
index 63ea5a606ecd..180c260a8221 100644
--- a/arch/arc/plat-axs10x/axs10x.c
+++ b/arch/arc/plat-axs10x/axs10x.c
@@ -84,7 +84,7 @@ static void __init axs10x_print_board_ver(unsigned int creg, const char *str)
unsigned int val;
} board;
- board.val = ioread32((void __iomem *)creg);
+ board.val = ioread32((const void __iomem *)creg);
pr_info("AXS: %s FPGA Date: %u-%u-%u\n", str, board.d, board.m,...
2020 Jan 08
0
[PATCH v2 5/9] arc: Constify ioreadX() iomem argument (as in generic implementation)
...kernel.org>
---
arch/arc/plat-axs10x/axs10x.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arc/plat-axs10x/axs10x.c b/arch/arc/plat-axs10x/axs10x.c
index 63ea5a606ecd..180c260a8221 100644
--- a/arch/arc/plat-axs10x/axs10x.c
+++ b/arch/arc/plat-axs10x/axs10x.c
@@ -84,7 +84,7 @@ static void __init axs10x_print_board_ver(unsigned int creg, const char *str)
unsigned int val;
} board;
- board.val = ioread32((void __iomem *)creg);
+ board.val = ioread32((const void __iomem *)creg);
pr_info("AXS: %s FPGA Date: %u-%u-%u\n", str, board.d, board.m,...
2020 Feb 19
0
[RESEND PATCH v2 5/9] arc: Constify ioreadX() iomem argument (as in generic implementation)
...xey's ack.
---
arch/arc/plat-axs10x/axs10x.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arc/plat-axs10x/axs10x.c b/arch/arc/plat-axs10x/axs10x.c
index 63ea5a606ecd..180c260a8221 100644
--- a/arch/arc/plat-axs10x/axs10x.c
+++ b/arch/arc/plat-axs10x/axs10x.c
@@ -84,7 +84,7 @@ static void __init axs10x_print_board_ver(unsigned int creg, const char *str)
unsigned int val;
} board;
- board.val = ioread32((void __iomem *)creg);
+ board.val = ioread32((const void __iomem *)creg);
pr_info("AXS: %s FPGA Date: %u-%u-%u\n", str, board.d, board.m,...
2015 Oct 06
0
[PATCH 1/4] ocaml: Use generational global roots.
...ml.inria.fr/pub/ml-archives/caml-list/2008/03/c3bf86990088236ceeb9a0f0f4c35390.en.html
---
README | 2 +-
ocaml/guestfs-c.c | 16 +++++-----------
2 files changed, 6 insertions(+), 12 deletions(-)
diff --git a/README b/README
index 8c74901..19a1fb2 100644
--- a/README
+++ b/README
@@ -84,7 +84,7 @@ The full requirements are described below.
+--------------+-------------+---+-----------------------------------------+
| Pod::Simple | | R | Part of Perl core. |
+--------------+-------------+---+-----------------------------------------+
-| OCaml...
2016 Mar 07
0
[PATCH] build: fix reading of the java version
...JDK; switch to awk so it is easier to
extract the version inside the double quotes.
---
m4/guestfs_java.m4 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/m4/guestfs_java.m4 b/m4/guestfs_java.m4
index f9bec94..649e21f 100644
--- a/m4/guestfs_java.m4
+++ b/m4/guestfs_java.m4
@@ -84,7 +84,7 @@ if test "x$with_java" != "xno"; then
else
JAR="$JAVA/bin/jar"
fi
- java_version=`$JAVA_EXE -version 2>&1 | grep "java version"`
+ java_version=`$JAVA_EXE -version 2>&1 | $AWK -F '"...
2008 Jan 17
1
[PATCH 0/7] More lguest massage.
This series takes one more step towards cpu-ification of lguest.
As for rusty's last suggestion, I get rid of the whole bunch
of "struct lguest *lg = cpu->lg" statements around by using
lg_cpu as our base structure wherever it matters. (this saves us
11 lines)
2005 Sep 11
0
Minor patch for vpopmail support
It doesn't seem like this code path has been tested recently, since it fails to
compile without the following patch (works fine with it):
--- src/auth/userdb-vpopmail.c 7 Aug 2005 11:41:19 -0000 1.17
+++ src/auth/userdb-vpopmail.c 11 Sep 2005 11:57:42 -0000
@@ -84,7 +84,7 @@
}
}
- reply = auth_stream_reply_init();
+ reply = auth_stream_reply_init(auth_request);
auth_stream_reply_add(reply, NULL, vpw->pw_name);
auth_stream_reply_add(reply, "uid", dec2str(uid));
auth_stream_reply_ad...
2003 Jan 09
1
[PATCH] Cygwin and openssl-0.9.7
...SL 0.9.7
Corinna
Index: configure.ac
===================================================================
RCS file: /cvs/openssh_cvs/configure.ac,v
retrieving revision 1.97
diff -u -p -r1.97 configure.ac
--- configure.ac 9 Jan 2003 01:22:59 -0000 1.97
+++ configure.ac 9 Jan 2003 22:12:43 -0000
@@ -84,6 +84,7 @@ case "$host" in
AC_DEFINE(LOGIN_NEEDS_UTMPX)
;;
*-*-cygwin*)
+ check_for_libcrypt_later=1
LIBS="$LIBS /usr/lib/textmode.o"
AC_DEFINE(HAVE_CYGWIN)
AC_DEFINE(USE_PIPES)
--
Corinna Vinschen
Cygwin Developer
Red Hat, Inc.
mailto:vinschen at redhat.com
2008 Jan 07
0
[PATCH] Replaced int with mode_t as requested
...================================
RCS file: /cvs/openssh/openbsd-compat/openbsd-compat.h,v
retrieving revision 1.43
diff -u -p -r1.43 openbsd-compat.h
--- openssh/openbsd-compat/openbsd-compat.h 25 Jun 2007 12:15:13 -0000 1.43
+++ openssh/openbsd-compat/openbsd-compat.h 7 Jan 2008 06:58:54 -0000
@@ -84,7 +84,7 @@ int setenv(register const char *name, re
#endif
#ifndef HAVE_STRMODE
-void strmode(int mode, char *p);
+void strmode(mode_t mode, char *p);
#endif
#if !defined(HAVE_MKDTEMP) || defined(HAVE_STRICT_MKSTEMP)
Index: openssh/openbsd-compat/strmode.c
====================================...