search for: lengh

Displaying 13 results from an estimated 13 matches for "lengh".

Did you mean: length
2008 Dec 15
3
tcpdum
...-v udp port 5060 I got the following result 20:29:48.596867 IP (tos 0x10, ttl 64, id 0, offset 0, flags [DF], proto 17, length: 373) SIP_PROXY_IP.5060 > Asterisk_IP.5060: UDP, length 345 What i need to know please what TTL means specifically and what is the best value og TTL and what is the lengh vale mean Regards* -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20081215/8540755c/attachment.htm
2007 May 26
1
Problem with the tc statistcis
I had a linux wireless router. I would like to monitor the queue lengh of the wireless interface. By default, the wifi0 interface is with pfifo_fast qdisc which does not report backlog packet. I replaced pfifo_fast with pfifo: ''tc qdisc replace dev wifi0 root pfifo'' Then I use iperf to send UDP pkts faster than the interface can handle but when I rea...
2008 Mar 22
10
Xen Windows Clients - BSOD with Application Firewall Installs
I have set up both Windows XP and Windows 2000 Server clients on Xen under Centos 5.1 and am unable to install an application firewall. I have tried the latest: 1) Agnitum Outpost Commercial Version 2) Comodo Firewall (ver 2 on Windows 2000) 3) Sunbelt Commercial Version With all of these when the firewall starts up it results in a BSOD. With Windows XP and Agnitum I can go back to a previous
2005 Feb 11
3
OCFS file system used as archived redo destination is corrupted
...UCP had problems creating archive file "/export/u10/oraarch/AUCP/rdo_1_21810.arc". After a few tries, it appeared that it was able to -- except that there are *two* rdo_1_21810.arc files in it (by the time you look at it, it/they probably would get gzipped. We also have a couple of zero-lengh gzipped redo log files (which is not normal) in there. At least the problem had not brought any of the AUCP instances down. Manoj and I turned on archiving to an ext3 file system on each node for now; archiving to /export/u10/ is still active but made optional for now. My guess /export/u10/ is...
2005 Dec 28
4
"valid users" + ldap on Solaris 10 problems
...bclient -v -U validuser //server.domain.edu/aelec Password: Domain=[MYDOMAIN] OS=[Unix] Server=[Samba 3.0.21] tree connect failed: Call returned zero bytes (EOF) We use the same config and shares files in the old and in the new machine. 'testparm' shows no errors except one because of the lengh of the name of a share (more than 12 characters). Does anybody knows where could be the error? Is this a Samba error o probably a solaris error? Thanks in advance! PD: If you want logs, I can send logs in what debug level you want. -- =======================================================...
2005 Nov 08
6
[ANNOUNCE] iproute2 2.6.14-051107
...p://developer.osdl.org/dev/iproute2/download/iproute2-2.6.14-051107.tar.gz For info on CVS ans other info see: http://linux-net.osdl.org/index.php/Iproute2 Masahide NAKAMURA * Updating for 2.6.14 - Show UPD{SA,POLICY} message information from kernel instead of error - Add lengh check of deleting message from kernel - Use macro for struct xfrm_user{sa,policy}_id * Minor fix: - Add fflush at the end of normal dump Jamal Hadi Salim * Fix handling of XFRM monitor and state * Fix ip rule flush, need to reopen rtnl Stephen Hemminger *...
2003 Nov 10
5
Subsetting a list of vectors
Hi, I'm trying to subset a list which contains variable length vectors. What I want to do is extract (eg.) the 3rd item in each vector (with length >= 3). At the moment I'm using sapply(list.of.vectors, function(x) {x[3]}). The problem with this is that sapply returns a list of the same length of list.of.vectors so I end up with a whole lot of null entries from those vectors
2020 Jun 20
1
Assertion triggered when running simple hello-world code on iOS device using ORC/LLLazyJIT
Hi Dave, Yep. This is JITLink specific, so we could only have observed it on MachO x86-64 or arm64 until recently. It takes a little bit of poking to get IR to produce a zero-lengh section on MachO, but not much. Jared Wyles recently contributed an initial JITLink ELF implementation, so the fix seems timely -- we might have been about to see more of it. -- Lang. On Fri, Jun 19, 2020 at 4:02 PM David Blaikie <dblaikie at gmail.com> wrote: > FWIW - found out LLVM d...
2009 Jul 06
1
lvb length issue [was Re: [ocfs2-tools-devel] question of ocfs2_controld (Jun 27)]
...e, strlen(conn->cc_name), 843 &fsdlm, DLM_LSFL_FS, DLM_LVB_LEN); ... ... 853 } DLM_LVB_LEN is 64. When mkfs.ocfs2 tries to operate on a mounted-already ocfs2 volume, mkfs.ocfs2 calls libdlm routin and tries to create a lockspace with 32byte lvb length. The lvb lengh is hard coded inside fs/dlm, can not be specified in user space. When fs/dlm code tries to compare the 32bytes lvb to the 64bytes lvb which is created in user_cluster_connect(), fs/dlm results an internal logic error(-EINVAL). This error is misleading, if both sides use same length lvb, the retur...
2012 Jul 12
2
[PATCH 3/5] vhost: Make vhost a separate module
Currently, vhost-net is the only consumer of vhost infrastructure. So vhost infrastructure and vhost-net driver are in a single module. Separating this as a vhost.ko module and a vhost-net.ko module makes it is easier to share code with other vhost drivers, e.g. vhost-blk.ko, tcm-vhost.ko. Signed-off-by: Asias He <asias at redhat.com> --- drivers/vhost/Kconfig | 10 +++++++++-
2012 Jul 12
2
[PATCH 3/5] vhost: Make vhost a separate module
Currently, vhost-net is the only consumer of vhost infrastructure. So vhost infrastructure and vhost-net driver are in a single module. Separating this as a vhost.ko module and a vhost-net.ko module makes it is easier to share code with other vhost drivers, e.g. vhost-blk.ko, tcm-vhost.ko. Signed-off-by: Asias He <asias at redhat.com> --- drivers/vhost/Kconfig | 10 +++++++++-
2012 Jul 13
9
[PATCH RESEND 0/5] Add vhost-blk support
Hi folks, [I am resending to fix the broken thread in the previous one.] This patchset adds vhost-blk support. vhost-blk is a in kernel virito-blk device accelerator. Compared to userspace virtio-blk implementation, vhost-blk gives about 5% to 15% performance improvement. Asias He (5): aio: Export symbols and struct kiocb_batch for in kernel aio usage eventfd: Export symbol
2012 Jul 13
9
[PATCH RESEND 0/5] Add vhost-blk support
Hi folks, [I am resending to fix the broken thread in the previous one.] This patchset adds vhost-blk support. vhost-blk is a in kernel virito-blk device accelerator. Compared to userspace virtio-blk implementation, vhost-blk gives about 5% to 15% performance improvement. Asias He (5): aio: Export symbols and struct kiocb_batch for in kernel aio usage eventfd: Export symbol