search for: fpf

Displaying 20 results from an estimated 94 matches for "fpf".

Did you mean: ff
2018 Mar 27
1
[PATCH FOR DISCUSSION ONLY] v2v: Add -o kubevirt output mode.
..._file } + ) targets + + method create_metadata source targets target_buses + guestcaps inspect target_firmware = + (* Create the YAML-format metadata. *) + (* XXX ESCAPING? *) + with_open_out (dir // name ^ ".yaml") ( + fun chan -> + let fpf fs = fprintf chan fs in + fpf "apiVersion: kubevirt.io/v1alpha1\n"; + fpf "kind: OfflineVirtualMachine\n"; + fpf "metadata:\n"; + fpf " name: %s\n" name; + fpf "domain:\n"; + fpf " cpu:\n"; +...
2007 Mar 20
4
blktap howto
...io:/var/lib/xen/test.swap,hda2,w'' ] blktapctrl do nothing domU cannot start, fail when mounting root what i''m doing wrong? i dont have any kernel module for blktap, is this ok? --------------------------------------- Marek Cervenka Centrum Vypocetni Techniky CVT - http://cvt.fpf.slu.cz FPF SLU OPAVA - http://www.fpf.slu.cz LCNA - http://lcna.slu.cz ======================================= _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2018 Mar 27
6
[PATCH FOR DISCUSSION ONLY v2] v2v: Add -o kubevirt output mode.
Fixes some of the more egregious problems with v1, and also applies properly to the head of git without needing any other patches. Rich.
2007 Mar 23
3
SRTP testers needed
please look at http://www.voip-info.org/wiki/view/Asterisk+SRTP and try compile&run clients with srtp (linksys,gxp-2000, minisip, twikle, ...) --------------------------------------- Marek Cervenka Centrum Vypocetni Techniky CVT - http://cvt.fpf.slu.cz FPF SLU OPAVA - http://www.fpf.slu.cz LCNA - http://lcna.slu.cz =======================================
2016 Jan 29
2
asterisk 13 mixmonitor - random missing syllables
...Brian :: napsal(a): > when you say load - how many concurrent calls? Is there transcoding > happening? sip / PRIs ? what load? > 12 concurrent calls no transcoding SIP under 1.5 with 4x 1Ghz vcpus (its vmware VPS) > On Thu, Jan 28, 2016 at 9:57 AM, Marek ?ervenka <cervajs at fpf.slu.cz > <mailto:cervajs at fpf.slu.cz>> wrote: > > Dne 27.1.2016 v 17:50 A J Stiles napsal(a): > > On Wednesday 27 Jan 2016, Marek ?ervenka wrote: > > Dne 27.1.2016 v 13:14 A J Stiles napsal(a): > > On Wednesday 27 Jan 20...
2017 Apr 06
0
[PATCH v4 3/9] v2v: linux: Replace 'ki_supports_virtio' field.
...ki.ki_arch ki.ki_vmlinuz - (match ki.ki_initrd with None -> "None" | Some f -> f) - (match ki.ki_config_file with None -> "None" | Some f -> f) - ki.ki_supports_virtio ki.ki_is_xen_pv_only_kernel ki.ki_is_debug +let print_kernel_info chan prefix ki = + let fpf fs = output_string chan prefix; fprintf chan fs in + fprintf chan "* %s %s (%s)\n" ki.ki_name ki.ki_version ki.ki_arch; + fpf "%s\n" ki.ki_vmlinuz; + fpf "%s\n" (match ki.ki_initrd with None -> "no initrd" | Some s -> s); + fpf "%s\n" (mat...
2011 Oct 05
1
call pickup
hello, is there some way to notify people in the same pickup group about call from caller to callee? i.e. i have call from 111 to 222 there are 222,333,444 in the same pickup group 333,444 see on the phone (aastra) that 111 calling to 222 and can pickup the call with *8 siemens have this on their sip openstage phones. how they do this? thanks -- --------------------------------------- Marek
2004 Aug 06
2
ices2 - memory leak
...700Mhz 256RAM 100Mbps network 4 streams 128 kbs ogg from playlist(random) i have noticed memory leaks in ices2 (randomly) what type of info do you need to correct this? (im newbie to debugging) -- ------------------------------------- Marek Cervenka Centrum Vypocetni Techniky CVT - http://cvt.fpf.slu.cz FPF SLU OPAVA - http://www.fpf.slu.cz ===================================== <p>--- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing...
2015 Aug 13
2
simultaneous use of chan_sip/chan_pjsip
Dne 13.8.2015 v 17:20 Rusty Newton napsal(a): > On Thu, Aug 13, 2015 at 3:54 AM, Marek ?ervenka <cervajs at fpf.slu.cz > <mailto:cervajs at fpf.slu.cz>> wrote: > > hello, > > is it possible simultaneously use chan_sip and chan_pjsip? > > if yes, can you recommend settings > > i'm thinking about > - chan_sip - for sip hardphones/softphones (sip...
2017 Nov 05
3
[PATCH 1/2] common/mlstdutils: Add with_open_in and with_open_out functions.
...local diff --git a/v2v/output_qemu.ml b/v2v/output_qemu.ml index 5304329ae..f61d698d6 100644 --- a/v2v/output_qemu.ml +++ b/v2v/output_qemu.ml @@ -229,23 +229,24 @@ object arg "-serial" "stdio"; (* Write the output file. *) - let chan = open_out file in - let fpf fs = fprintf chan fs in - fpf "#!/bin/sh -\n"; - fpf "\n"; + with_open_out file ( + fun chan -> + let fpf fs = fprintf chan fs in + fpf "#!/bin/sh -\n"; + fpf "\n"; - (match uefi_firmware with - | None -> () -...
2016 Nov 30
0
Re: [PATCH] builder: Rearrange how template-building scripts work.
...location for this OS and architecture\n" prog; > + exit 1 Ditto as above (i.e. print details of unknown distro/version). > +and make_index_fragment os arch index_fragment output nvram revision expandfs = > + let chan = open_out (index_fragment ^ ".new") in > + let fpf fs = fprintf chan fs in > + > + fpf "[%s]\n" (string_of_os_noarch os); > + fpf "name=%s\n" (long_name_of_os os arch); > + fpf "osinfo=%s\n" (true_os_variant_of_os os); > + fpf "arch=%s\n" (string_of_arch arch); > + fpf "file=%s\n&q...
2017 Apr 06
9
[PATCH v3 0/8] v2v: Add drivers for virtio-rng, balloon, pvpanic.
v1: https://www.redhat.com/archives/libguestfs/2017-April/msg00031.html v2: https://www.redhat.com/archives/libguestfs/2017-April/msg00040.html v2 -> v3: - Fix Xen PV-only kernel detection. Rich.
2016 Feb 29
2
Asterisk 13 and WebRTC. Is wiki page still valid ?
2016-02-19 12:01 GMT+01:00 Marek ?ervenka <cervajs at fpf.slu.cz>: > on my own server > Today, I'm back from holidays trip. First of all, thanks for replying ! I'll try to use jssip as you suggested. Anyway, I'm still failing to understand if wiki's page [1] is still valid with Asterisk 13, and if it's not valid anymore,...
2007 May 01
0
Re: [asterisk-dev] SRTP implementation
...rs: Pre shared, DH-SIGN, RSA, RSA-R and DH-HMAC. > The patch currently uses DH-HMAC for outgoing connections, using secret from > sip.conf as the shared secret. http://www.voip-info.org/wiki/view/Asterisk+SRTP updated test srtp server (asterisk SVN-trunk-r61760 + latest SRTP patch) voice2.fpf.slu.cz test sip accounts 700:700 701:701 702:702 extensions.conf exten => 600,1,Set(_SIPSRTP=optional) exten => 600,n,Set(_SIPSRTP_CRYPTO=enable) exten => 600,n,Playback(demo-echotest) ; Let them know what's going on exten => 600,n,Echo ; Do the echo test exten => 600,n,Playbac...
2017 Apr 06
12
[PATCH v4 0/9] v2v: Add drivers for virtio-rng, balloon, pvpanic.
v1: https://www.redhat.com/archives/libguestfs/2017-April/msg00031.html v2: https://www.redhat.com/archives/libguestfs/2017-April/msg00040.html v3: https://www.redhat.com/archives/libguestfs/2017-April/msg00051.html v3 -> v4: - Properly fix Xen PV-only kernel detection, and test it. Rich.
2020 Sep 24
4
[PATCH v2v 0/4] v2v: vcenter: Implement cookie scripts.
Patch 1 was previously posted here: https://www.redhat.com/archives/libguestfs/2020-June/msg00086.html to handle this bug: https://bugzilla.redhat.com/show_bug.cgi?id=1848862 I was able to observe this bug and for me at least disabling readahead seems to cure it. Patches 2 and 3 are simplifications, removing a now-undocumented feature of virt-v2v-copy-to-local and thus simplifying greatly the
2016 Feb 18
2
Asterisk 13 and WebRTC. Is wiki page still valid ?
2016-02-18 15:42 GMT+01:00 Marek ?ervenka <cervajs at fpf.slu.cz>: > my experience with pjsip for webrtc > http://lists.digium.com/pipermail/asterisk-users/2015-September/287562.html > > > Yes I saw this post earlier today. Having to fight 14 days scared me a bit ! Did you set sipml5 on your own server or did you use Live demo ( https:...
2016 Aug 17
1
[PATCH] v2v: Use OVMF secure boot file (RHBZ#1367615).
This is only lightly tested. In particularly I only tested that the non-secure-boot path still works. I didn't test it on RHEL 7.3 yet because I haven't got enough free disk space for these giant source *.ova files :-( Will try to give that a go later. Rich.
2015 Aug 13
2
simultaneous use of chan_sip/chan_pjsip
hello, is it possible simultaneously use chan_sip and chan_pjsip? if yes, can you recommend settings i'm thinking about - chan_sip - for sip hardphones/softphones (sip udp 5060) - chan_pjsip - for webrtc -- --------------------------------------- Marek Cervenka =======================================
2004 Aug 06
0
Re: ices2 - memory leak
...:40] WARN input/_sleep Extended sleep requested (3741037 ms), sleeping for 5 seconds [2003-02-14 13:58:45] WARN input/_sleep Extended sleep requested (3736307 ms), sleeping for 5 seconds <p> -- ------------------------------------- Marek Cervenka Centrum Vypocetni Techniky CVT - http://cvt.fpf.slu.cz FPF SLU OPAVA - http://www.fpf.slu.cz ===================================== <p>--- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing...