search for: 103,10

Displaying 20 results from an estimated 44 matches for "103,10".

Did you mean: 10,10
2008 Dec 31
4
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
...OR_DEBUGGING fails. Best regards, Stein Roger Index: include/llvm/CodeGen/ScheduleDAGSDNodes.h =================================================================== --- include/llvm/CodeGen/ScheduleDAGSDNodes.h (revision 61500) +++ include/llvm/CodeGen/ScheduleDAGSDNodes.h (working copy) @@ -103,10 +103,10 @@ /// SUnit *NewSUnit(SDNode *N) { #ifndef NDEBUG - const SUnit *Addr = &SUnits[0]; + //const SUnit *Addr = &SUnits[0]; #endif SUnits.push_back(SUnit(N, (unsigned)SUnits.size())); - assert(Addr == &SUnits[0] && "SUnits std::vect...
2008 Dec 31
0
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
...ssertion message? -bw > Index: include/llvm/CodeGen/ScheduleDAGSDNodes.h > =================================================================== > --- include/llvm/CodeGen/ScheduleDAGSDNodes.h (revision 61500) > +++ include/llvm/CodeGen/ScheduleDAGSDNodes.h (working copy) > @@ -103,10 +103,10 @@ > /// > SUnit *NewSUnit(SDNode *N) { > #ifndef NDEBUG > - const SUnit *Addr = &SUnits[0]; > + //const SUnit *Addr = &SUnits[0]; > #endif > SUnits.push_back(SUnit(N, (unsigned)SUnits.size())); > - assert(Addr == &SUnits[0...
2007 Feb 01
1
pre-xfer exec fails in FreeBSD
...the log, but found the pre-xfer exec returns always be -1, which means waitpid failed to get the return status. After doing a little ugly patch for the wait_process function as follow, pre-xfer works again. --- main.c Thu Feb 1 22:42:23 2007 +++ main.c.orig Sat Oct 14 07:46:32 2006 @@ -103,10 +103,7 @@ * remember_children(), we succeed instead of returning an error. */ pid_t wait_process(pid_t pid, int *status_ptr, int flags) { - pid_t waited_pid; - do { - waited_pid = waitpid(pid, status_ptr, flags); - } while (errno == EINTR); + pid_t waite...
2009 Jan 01
1
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
...; for you? > > -bw > > Index: include/llvm/CodeGen/ScheduleDAGSDNodes.h > =================================================================== > --- include/llvm/CodeGen/ScheduleDAGSDNodes.h (revision 61532) > +++ include/llvm/CodeGen/ScheduleDAGSDNodes.h (working copy) > @@ -103,10 +103,13 @@ > /// > SUnit *NewSUnit(SDNode *N) { > #ifndef NDEBUG > - const SUnit *Addr = &SUnits[0]; > + const SUnit *Addr = 0; > + if (SUnits.size() > 0) > + Addr = &SUnits[0]; > #endif > SUnits.push_back(SUnit(...
2008 Dec 31
0
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
...his patch and let me know if it works for you? -bw Index: include/llvm/CodeGen/ScheduleDAGSDNodes.h =================================================================== --- include/llvm/CodeGen/ScheduleDAGSDNodes.h (revision 61532) +++ include/llvm/CodeGen/ScheduleDAGSDNodes.h (working copy) @@ -103,10 +103,13 @@ /// SUnit *NewSUnit(SDNode *N) { #ifndef NDEBUG - const SUnit *Addr = &SUnits[0]; + const SUnit *Addr = 0; + if (SUnits.size() > 0) + Addr = &SUnits[0]; #endif SUnits.push_back(SUnit(N, (unsigned)SUnits.size())); - assert(A...
2008 Dec 31
2
[LLVMdev] Win32 JIT issue + bug in ScheduleDAGSNodes.h?
Bill Wendling wrote: > On Dec 30, 2008, at 4:51 PM, srs wrote: > > >> 2. There seems to be an issue in ScheduleDAGSDNodes.h when in debug >> mode. The problem is the evaluation of "&SUnits[0];" which ASSERT's in >> VC++'s vector[] implementation (when _HAS_ITERATOR_DEBUGGING is on). >> >> As a work-around, I commented out the debug
2014 Oct 31
4
[PATCH] builder: move the gpgkey_type type from Sigchecker to Utils
...Fingerprint fp -> + | Utils.No_Key -> () + | Utils.Fingerprint fp -> printf (f_"Fingerprint: %s\n") fp; - | Sigchecker.KeyFile kf -> + | Utils.KeyFile kf -> printf (f_"Key: %s\n") kf; ); printf "\n" @@ -103,10 +103,10 @@ and list_entries_json ~sources index = let item = [ "uri", JSON.String source ] in let item = match key with - | Sigchecker.No_Key -> item - | Sigchecker.Fingerprint fp -> + | Utils.No_Key -> item + |...
2017 Aug 01
0
[PATCH v2 3/3] daemon: Restore PCRE regular expressions in OCaml code.
...+\\(.*\\)") + PCRE.compile ("ID\\s+(\\d+).*\\s" ^ + "top level\\s+(\\d+).*\\s" ^ + "path\\s(.*)") let btrfs_subvolume_list mountable = (* Execute 'btrfs subvolume list <fs>', and split the output into lines *) @@ -103,10 +103,10 @@ let btrfs_subvolume_list mountable = *) List.map ( fun line -> - if Str.string_match re_btrfs_subvolume_list line 0 then ( - let id = Int64.of_string (Str.matched_group 1 line) - and top_level_id = Int64.of_string (Str.matched_group 2 line) - a...
2007 Apr 18
0
[PATCH 8/21] i386 Segment protect properly
.../drivers/pnp/pnpbios/bioscalls.c =================================================================== --- linux-2.6.14-zach-work.orig/drivers/pnp/pnpbios/bioscalls.c 2005-11-04 17:45:02.000000000 -0800 +++ linux-2.6.14-zach-work/drivers/pnp/pnpbios/bioscalls.c 2005-11-05 00:28:08.000000000 -0800 @@ -103,10 +103,8 @@ static inline u16 call_pnp_bios(u16 func spin_lock_irqsave(&pnp_bios_lock, flags); /* The lock prevents us bouncing CPU here */ - if (ts1_size) - Q2_SET_SEL(smp_processor_id(), PNP_TS1, ts1_base, ts1_size); - if (ts2_size) - Q2_SET_SEL(smp_processor_id(), PNP_TS2, ts2_base,...
2000 Apr 27
0
Patch for supporting "-L" option in scp
...----------------------------------------- Etienne M. Gagnon, M.Sc. e-mail: egagnon at j-meg.com Author of SableCC: http://www.sable.mcgill.ca/sablecc/ ---------------------------------------------------------------------- Index: 0.1/scp.c --- scp.c +++ scp.c @@ -103,6 +103,10 @@ /* This is the port to use in contacting the remote site (is non-NULL). */ char *port = NULL; +/* This is set to non-zero if non-privileged local port is desired. */ +int use_non_privileged_port = 0; + + /* * This function executes the given command as the specified user on the...
2007 Apr 18
0
[PATCH 8/21] i386 Segment protect properly
.../drivers/pnp/pnpbios/bioscalls.c =================================================================== --- linux-2.6.14-zach-work.orig/drivers/pnp/pnpbios/bioscalls.c 2005-11-04 17:45:02.000000000 -0800 +++ linux-2.6.14-zach-work/drivers/pnp/pnpbios/bioscalls.c 2005-11-05 00:28:08.000000000 -0800 @@ -103,10 +103,8 @@ static inline u16 call_pnp_bios(u16 func spin_lock_irqsave(&pnp_bios_lock, flags); /* The lock prevents us bouncing CPU here */ - if (ts1_size) - Q2_SET_SEL(smp_processor_id(), PNP_TS1, ts1_base, ts1_size); - if (ts2_size) - Q2_SET_SEL(smp_processor_id(), PNP_TS2, ts2_base,...
2014 Sep 02
1
[PATCH] rrsync: Add several long options used by BackupPC
...' => 0, + 'ignore-times' => 0, 'info' => 1, 'inplace' => 0, 'link-dest' => 2, 'list-only' => 0, + 'links' => 0, 'log-file' => 3, 'log-format' => 1, 'max-delete' => 1, @@ -103,10 +108,14 @@ our %long_opt = ( 'no-relative' => 0, 'no-specials' => 0, 'numeric-ids' => 0, + 'one-file-system' => 0, 'only-write-batch' => 1, + 'owner' => 0, 'partial' => 0, 'partial-dir' =>...
2012 May 14
1
Patches for OS X.
What patch files are necessary to build rsync-3.0.9 for OS X 10.6.8 (Darwin 10.8.0)? Mr. Bombich maintains an excellent page about this, but it's a bit out of date, methinks, and his instructions point to patch files that return some interesting errors. My rsync-3.0.9 is working just fine, btw, with the fileflags and crtimes and hfs-compression patches applied; I just wondered if the others
2006 May 09
4
[PATCH] Fix checksum errors when firewalling in domU
...:44.000000000 -0400 ++++ ./net/ipv4/xfrm4_output.c 2006-05-09 13:08:15.000000000 -0400 @@ -17,6 +17,8 @@ #include <net/xfrm.h> #include <net/icmp.h> @@ -51,7 +51,7 @@ /* Add encapsulation header. * * In transport mode, the IP header will be moved forward to make space -@@ -103,6 +105,10 @@ static int xfrm4_output_one(struct sk_bu +@@ -103,10 +105,15 @@ static int xfrm4_output_one(struct sk_bu struct xfrm_state *x = dst->xfrm; int err; @@ -62,3 +62,8 @@ if (skb->ip_summed == CHECKSUM_HW) { err = skb_checksum_help(skb, 0);...
2011 Apr 05
2
osx 10.6 strange rsync errors
.... Would it be possible to include this patch in the official list? Cheers Ira diff -Naur rsync-3.0.8_orig/receiver.c rsync-3.0.8_nodotdot/receiver.c --- rsync-3.0.8_orig/receiver.c 2011-04-05 17:12:03.000000000 +1000 +++ rsync-3.0.8_nodotdot/receiver.c 2011-04-05 17:20:40.000000000 +1000 @@ -103,7 +103,10 @@ } } else f = fname; - fnametmp[length++] = '.'; + + if ( f[0]!='.'){ + fnametmp[length++] = '.'; + } /* The maxname value is bufsize, and includes space for the '\0'. * NAME_MAX needs an extra -1 for the name's leading dot. */ &...
2020 Feb 17
1
[PATCH] virt-get-kernel: add '--blocksize' option support
...ectory"; + [ L"unversioned-names" ], Getopt.Set unversioned, s_"Use unversioned names for files"; + [ L"prefix" ], Getopt.String (s_"prefix", set_prefix), s_"Prefix for files"; ] in let usage_msg = sprintf (f_"\ @@ -102,9 +103,10 @@ read the man page virt-get-kernel(1). fun g -> let { URI.path; protocol; server; username; password } = uri in let format = match !format with "auto" -> None | s -> Some s in + let blocksize = match !blocksize with 0 -> None | i -> Some...
2020 Feb 12
0
[PATCH 4/4] drm/nouveau/kms/nv50-: Share DP SST mode_valid() handling with MST
....c +++ b/drivers/gpu/drm/nouveau/nouveau_connector.c @@ -38,6 +38,7 @@ #include "nouveau_reg.h" #include "nouveau_drv.h" #include "dispnv04/hw.h" +#include "dispnv50/disp.h" #include "nouveau_acpi.h" #include "nouveau_display.h" @@ -1033,6 +1034,24 @@ get_tmds_link_bandwidth(struct drm_connector *connector) return 112000 * duallink_scale; } +enum drm_mode_status +nouveau_conn_mode_clock_valid(const struct drm_display_mode *mode, + const unsigned min_clock, + const unsigned max_clock, + unsigned *clock...
2003 Jul 05
0
[PATCH] Replace AIX loginmsg with generic Buffer loginmsg
...-- session.c 3 Jun 2003 00:25:48 -0000 1.238 +++ session.c 5 Jul 2003 02:21:49 -0000 @@ -95,6 +95,7 @@ extern u_int utmp_len; extern int startup_pipe; extern void destroy_sensitive_data(void); +extern Buffer loginmsg; /* original command from peer. */ const char *original_command = NULL; @@ -103,10 +104,6 @@ #define MAX_SESSIONS 10 Session sessions[MAX_SESSIONS]; -#ifdef WITH_AIXAUTHENTICATE -char *aixloginmsg; -#endif /* WITH_AIXAUTHENTICATE */ - #ifdef HAVE_LOGIN_CAP login_cap_t *lc; #endif @@ -770,10 +767,13 @@ if (options.use_pam && !is_pam_password_change_required())...
2019 Jan 01
0
[PATCH nbdkit] plugins, filters: Define and use NBDKIT_HANDLE_NOT_NEEDED.
...eturn. - */ - static int h; - - return &h; + return NBDKIT_HANDLE_NOT_NEEDED; } #define THREAD_MODEL NBDKIT_THREAD_MODEL_PARALLEL diff --git a/plugins/memory/memory.c b/plugins/memory/memory.c index 8e5c084..4013087 100644 --- a/plugins/memory/memory.c +++ b/plugins/memory/memory.c @@ -103,10 +103,7 @@ memory_config_complete (void) static void * memory_open (int readonly) { - /* Used only as a handle pointer. */ - static int mh; - - return &mh; + return NBDKIT_HANDLE_NOT_NEEDED; } #define THREAD_MODEL NBDKIT_THREAD_MODEL_SERIALIZE_ALL_REQUESTS diff --git a/plugins/null...
2017 Sep 12
0
[PATCH v2 3/5] lib: qemu: Run QMP ‘query-commands’, ‘query-qmp-schema’ against the qemu binary.
...*strp); static int generic_write_cache (guestfs_h *g, const char *filename, const char *str); +static int generic_qmp_test (guestfs_h *g, struct qemu_data *data, const char *qmp_command, char **outp); /* This structure abstracts the data we are reading from qemu and how * we get it. @@ -89,6 +103,10 @@ static const struct qemu_fields { test_qemu_help, read_cache_qemu_help, write_cache_qemu_help }, { "devices", test_qemu_devices, read_cache_qemu_devices, write_cache_qemu_devices }, + { "qmp-commands", + test_qmp_commands, read_cache_qmp_commands, write_ca...