search for: ourself

Displaying 20 results from an estimated 155 matches for "ourself".

Did you mean: yourself
2014 Dec 15
0
[PATCH] p2v: avoid connecting to ourself while probing qemu-nbd (RHBZ#1167774)
...* nbd_local_port. It's not guaranteed to always bind to this port, + * but it will hint the kernel to start there and try incrementally + * higher ports if needed. This avoids the case where the kernel + * selects nbd_local_port as our source port, and we immediately + * connect to ourself. See: + * https://bugzilla.redhat.com/show_bug.cgi?id=1167774#c9 + */ + src_addr.sin_port = htons (nbd_local_port+1); + inet_pton (AF_INET, "localhost", &src_addr.sin_addr); + + memset (&dst_addr, 0, sizeof dst_addr); + dst_addr.sin_family = AF_INET; + dst_addr.sin_port...
2003 Apr 20
3
how to use apply with a function created by ourselfs...?
Hi. I'm a real newbie in R, so I don't know how to apply, a function created by myself... prediction<-function(a,b) { .. } to a vector... It doesn't seem to understand lapply(vector, prediction())... Anyone can help me? Thanks in advance, ana
2014 Dec 15
2
[PATCH v2 0/1] p2v: avoid connecting to ourself while probing qemu-nbd
Changes since v1: - Set probing source port to be nbd_local_port+1 instead of always using 50124 to deal with multi-disk scenario. - Set SO_REUSEADDR on client socket to avoid issues with old connections in TIME_WAIT. I've been running this for a few hours now using the updated multi-disk test and haven't seen any problems.
2014 Dec 12
2
[PATCH] p2v: avoid connecting to ourself while probing qemu-nbd (RHBZ#1167774)
...than + * nbd_local_port in ssh.c (50123). It's not guaranteed to always + * bind to 50124, but it will hint the kernel to start there and try + * incrementally higher ports if needed. This avoids the case where + * the kernel selects 50123 as our source port, and we immediately + * connect to ourself. + * See: https://bugzilla.redhat.com/show_bug.cgi?id=1167774#c9 + */ +static int nbd_probe_port = 50124; + /* Data per NBD connection / physical disk. */ struct data_conn { mexp_h *h; /* miniexpect handle to ssh */ @@ -398,7 +408,7 @@ wait_qemu_nbd (int nbd_local_port, int time...
2007 Jul 27
3
openoffice
Since rpm from openoffice.org was not nicely integrate with Centos, what is the best way to make OO uptodate, can i use (or depend on) package from fedora (it slightly outdate but not too far from OO release). Having see the huge spec file (around 3700 lines), building it ourself is really not fun :( --beast
2014 May 19
2
[PATCH 2/4] drm/ttm: introduce dma cache sync helpers
On Mon, May 19, 2014 at 04:10:56PM +0900, Alexandre Courbot wrote: > From: Lucas Stach <dev at lynxeye.de> > > On arches with non-coherent PCI, I guess since this applies to gk20a > we need to flush caches ourselfes at "ourselves". Or perhaps even reword to something like: "..., caches need to be flushed and invalidated explicitly", since dma_sync_for_cpu() does invalidate rather than flush. > the appropriate places. Introduce two small helpers to make things easy > for TTM based...
2008 Mar 11
7
Best alternative for getting prompts recorded.
What is the best alternative for getting the IVR and other prompts recorded for Asterisk. Regards, Sanjay.
2015 Oct 30
2
IMAP COPY creates invalid index data with zlib and mail_log plugins enabled but zlib_save off
I've noticed that maildir IMAP COPY commands can generate invalid dovecot.index entries when all seven of the following are true: - The zlib plugin is enabled; - The zlib_save/zlib_save_level options are NOT enabled; - The source message being copied is compressed; - The mail_log plugin is logging "copy" events; - The mail_log_fields setting includes at least one message header; -
2017 Feb 01
3
Fuzzing bitcode reader
On Wed, Feb 1, 2017 at 9:19 AM, Michael Kruse <llvmdev at meinersbur.de> wrote: > 2017-02-01 18:07 GMT+01:00 Kostya Serebryany <kcc at google.com>: > > Yes, I used to run clang-fuzzer and clang-format-fuzzer on this bot, but > not > > any more. > > The reason is simple -- the bot was always red (well, orange) and the > bugs > > were never fixed. >
2006 Aug 06
3
Platform performance comparisons
I''m in the process of developing a Rails application. Currently there is some debate as to the final deployment platform. I''m in favor of using some flavor of linux. However, there are some more "risk averse" co-workers who would prefer to deploy on Windows and, more specifically, IIS. I have heard that Ruby is much slower on Windows than Linux, but I have been
2015 Nov 02
0
IMAP COPY creates invalid index data with zlib and mail_log plugins enabled but zlib_save off
...ng are true: As a followup to my own post, I believe I've tracked this problem down to this code at lines 119-124 of /src/plugins/zlib/zlib-plugin.c: /* don't uncompress input when we are reading a mail that we're just in the middle of saving, and we didn't do the compression ourself. in such situation we're probably checking if the user-given input looks compressed */ if (_mail->saving && zuser->save_handler == NULL) return zmail->super.istream_opened(_mail, stream); When these lines are removed, the problem no longer happens. I'm g...
2004 Oct 14
1
[LLVMdev] Linker problems with Visual Studio
Hi Morten, Thanks for your progress on this subject. I suppose that we all in the LLVM development team is interested in your project files. I think, we should come up with a place in the source tree where they could live, until we are able to generate them ourselfs by some means. Any suggestions? Henrik >There are some other minor things I plan to submit patches for later today, >when I have cleaned up. If anyone else is interested in obtaining my VS >project files, please write me an email... > >m. > _______________________________...
2005 Feb 04
2
New Asterisk user with a goal
..., my question seems rather simple compared to some of the topics under discussion here :) I have done quite a bit of reading and fiddling trying to get a system set up, to no avail yet basically myself and a friend (both behind NAT and Firewalls, but able to set up the firewall rules/port mappings ourself) are interesting in setting up a PBX each, initially just for IP based calls over the net, so that we can call each other for free eventually we will look at plugging this into the POTS system and repacing all our phones with IP phones and rouitng the calls appropriately depending on destination...
2018 Jun 01
1
[PATCH v2] daemon: inspect: better handling windows drive mapping.
...t 0. And thus dummy device name and partition number are simply concatenated together and corresponding drive mapping is returned: Y => /dev/sdX1. But /dev/sdX1 is not existing block device. No matter either it is a bug in "parted" (or it works this way by-design), let's protect ourself from this situation: in addition we look for msdos partition table on a disk before making any further assumptions. --- daemon/inspect_fs_windows.ml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/daemon/inspect_fs_windows.ml b/daemon/inspect_fs_windows.ml index 8b2...
2016 Oct 19
2
RFC: Killing undef and spreading poison
...I remember having read that undef does not obey all the rules of SSA. That is, a variable %x set to undef is in fact not initialized at it's definition but at each of it's use instead. Which is an argument I never quite understood, because the nature of undef is that we can safely restrict ourself to a classic aproach where %x has the same value at each use (as the compiler is free to assign any value to any undef it encounter). This does not exploit all of the freedom offered by undef, but is always valid, isn't it? Even if you wanted to do this (use the same “undef” for every use of %...
2002 Feb 21
2
help understanding box plots
...distance from the median to that quartile. Is that right? I've read the documentation for boxplot numerous times, but don't quite understand it well enough to communicate it to my professor who's helping me with this project. (You'll be relieved to know that neither of us fancies ourself a statistician!) V&R (p. 122) claims that the hinges are "roughly quartiles," so perhaps my naive understanding is close enough. I've got a relatively small data set (n~=12). I think it would help to see the data points plotted on top of the boxplots. Here's what I'm d...
2006 Jan 18
1
Helps!!!!! Rails database connection guru needed!!!!!!!
...e connection is made while Rails calls PGconn.connect(), then the connectionstored in @connection of the adapter class. while a request is send to the adapter,the adapter will sends the request to the database via its variable @connection.But where exactly the disconnection is done while we connect ourself to another database???? As we can see in the source code "remove_connection" connectionspecification def self.remove_connection(klass=self) conn = @@defined_connections[klass] @@defined_connections.delete(klass) active_connections[klass] = nil conn.config if conn...
2012 Nov 22
1
Syslinux Digest, Vol 116, Issue 20
...xe "menu!! (I am having some trouble with broadcom (PCI fiber) and iPXE :) And the rest would use ipxe.pxe (works best for our setup). Would it be much work to implement or rather have available as an patch, so if anyone else are in need of this later, we could just patch the code and compile ourself. Torgeir ________________________________________ Message: 3 Date: Wed, 21 Nov 2012 10:19:14 -0800 From: "H. Peter Anvin" <hpa at zytor.com> To: syslinux at zytor.com Subject: Re: [syslinux] pxelinux load configuration files (ARP type code, and IPaddress in hex) Message-ID:...
2015 Nov 03
2
[PATCH 3/3] s390/dma: Allow per device dma ops
On Tue, 3 Nov 2015 12:54:39 +0100 Christian Borntraeger <borntraeger at de.ibm.com> wrote: > As virtio-ccw now has dma ops, we can no longer default to the PCI ones. > Make use of dev_archdata to keep the dma_ops per device. The pci devices > now use that to override the default, and the default is changed to use > the noop ops for everything that is not PCI. To compile without
2015 Nov 03
2
[PATCH 3/3] s390/dma: Allow per device dma ops
On Tue, 3 Nov 2015 12:54:39 +0100 Christian Borntraeger <borntraeger at de.ibm.com> wrote: > As virtio-ccw now has dma ops, we can no longer default to the PCI ones. > Make use of dev_archdata to keep the dma_ops per device. The pci devices > now use that to override the default, and the default is changed to use > the noop ops for everything that is not PCI. To compile without