similar to: [ovirt-users] slow performance with export storage on glusterfs

Displaying 20 results from an estimated 200 matches similar to: "[ovirt-users] slow performance with export storage on glusterfs"

2017 Nov 28
2
[ovirt-users] slow performance with export storage on glusterfs
What about mounting over nfs instead of the fuse client. Or maybe libgfapi. Is that available for export domains On Fri, Nov 24, 2017 at 3:48 AM Ji?? Sl??ka <jiri.slezka at slu.cz> wrote: > On 11/24/2017 06:41 AM, Sahina Bose wrote: > > > > > > On Thu, Nov 23, 2017 at 4:56 PM, Ji?? Sl??ka <jiri.slezka at slu.cz > > <mailto:jiri.slezka at slu.cz>>
2017 Nov 24
0
[ovirt-users] slow performance with export storage on glusterfs
On 11/24/2017 06:41 AM, Sahina Bose wrote: > > > On Thu, Nov 23, 2017 at 4:56 PM, Ji?? Sl??ka <jiri.slezka at slu.cz > <mailto:jiri.slezka at slu.cz>> wrote: > > Hi, > > On 11/22/2017 07:30 PM, Nir Soffer wrote: > > On Mon, Nov 20, 2017 at 5:22 PM Ji?? Sl??ka <jiri.slezka at slu.cz <mailto:jiri.slezka at slu.cz> > >
2017 Nov 28
0
[ovirt-users] slow performance with export storage on glusterfs
Hello If you use Gluster as FUSE mount it's always slower than you expect it to be. If you want to get better performance out of your oVirt/Gluster storage, try the following: - create a Linux VM in your oVirt environment, assign 4/8/12 virtual disks (Virtual disks are located on your Gluster storage volume). - Boot/configure the VM, then use LVM to create VG/LV with 4 stripes (lvcreate -i
2012 Dec 26
3
Eaton 5PX 1500i RT2U : nut does not work
Hello, Just baught this ups to replace an Ellipse. I've had a look at the nut hardware compatibility list, it's fully compatible and uses the same driver as ellipse (usbhid-ups) Here is the error I get when I "/usr/bin/upsdrvctl start" : Network UPS Tools - UPS driver controller 2.6.5-Unversioned directory Network UPS Tools - Generic HID driver 0.37 (2.6.5-Unversioned
2005 Apr 01
2
multiple shares names
hi, i was searching in documentation, but havn't find answer to my problem.. i've got shares with long (>12 characters) names, which cannot be changed. on the other hand i need two computers with win98 to see them. can i somehow check versin of connected client and depends on that change names to shorter ones? (i mean - i want all computers (with win xp) to see shares as they see now
2020 Mar 09
2
llvm-link has no --allow-multiple-definition
Hi Eli, I know the page, and the only mentioning about LTO or link time optimization I found is the option PassManagerBuilder::EP_FullLinkTimeOptimizationLast - and nobody knows how this works (and asked about it on this list too before with no reply), and the author who wrote that part in the llvm code at Redhat did not reply to a question how to actually use it. And there is no example code or
2020 Mar 10
3
llvm-link has no --allow-multiple-definition
HI Eli, that sounds like the -mllvm option would be a good a mention in the WritingAnLLVMPass document ;-) Two further questions for this and I am keeping this on the list so other people have pointers to this if they struggle with the same thing: 1. Does this require to use lld? (I am sure it is, just to clarify, for the very low chance that it would also work with gnu ld and the llvm gold
2020 Mar 08
2
llvm-link has no --allow-multiple-definition
Hello, I am developing an LTO instrumentation of programs for fuzzing (for afl++) and I run into the following problem: a lot of open source program have multiple definitons of the same functions. In normal compile mode this is not a problem, however with LTO this only works with the linker option: -Wl,--allow-multiple-definition Now to be able to instrument (it is an "opt"
2019 Jul 03
3
optimisation issue in an llvm IR pass
Hi Craig, On 03.07.19 17:33, Craig Topper wrote: > Don't the CreateICmp calls return a Value* with an i1 type? But then > they are added to an i8 type? Not sure that works.  I had that initially: auto cf = IRB.CreateICmpULT(Incr, ConstantInt::get(Int8Ty, 1)); auto carry = IRB.CreateZExt(cf, Int8Ty); Incr = IRB.CreateAdd(Incr, carry); it makes no difference to the generated assembly
2019 Jul 03
2
optimisation issue in an llvm IR pass
Hello, I have an optimisation issue in an llvm IR pass - the issue being that unnecessary instructions are generated in the final assembly (with -O3). I want to create the following assembly snippet: mov dl,BYTE PTR [rsi+rdi*1] add dl,0x1 adc dl,0x0 mov BYTE PTR [rsi+rdi*1],dl however what is created is (variant #1): mov dl,BYTE PTR [rsi+rdx*1] add dl,0x1 cmp
2019 Aug 08
2
in an IR pass: access the instruction pointer/BB address
Hi, I looked through the documentation and source and am unable to find a way: in an IR pass on basic blocks for (auto &F : M) for (auto &BB : F) { .... } I want to access the current address of the basic block. It does not need to be the exact address of the BB, a few instructions down of that BB is fine as well. basically the same that I could do with an "leaq
2012 Dec 27
0
Arch, kernel 3.7.1, Eaton 5PX : nut does not work
Charles, Thank you :) Here it is : # usbhid-ups -a 5px -DDDD Network UPS Tools - Generic HID driver 0.37 (2.6.5-Unversioned directory) USB communication driver 0.31 0.000000 debug level is '4' 0.000302 upsdrv_initups... 0.161480 Checking device (0424/2512) (001/002) 0.161518 Failed to open device, skipping. (Permission denied) 0.161527 Checking device
2006 Mar 08
0
session setup
hi, in company i work for i often work on employees computers (to solve their issues mainly). they do not have sufficient rights to all shares, which i need, i used to just connect to share i need and when samba denies permission windows (xp) station asked me about password, so i typed my username and pass and get access to everything i want. recently i've changed main server in company (that
2006 Feb 08
1
Problem with netbios names
hi, i've got big problem with samba, which acts as a fileserwer in company i work for. it's configured to be LMB and DMB and according to logs, it wins all elections. the problem is: i offer vpn access for few employees. one of them works with advanced excell (mainly) macros, which are linked across samba shares. he decided to recreate our shares structure on his home computer to test
2020 Jan 15
4
Finding callees of a function
I searched the doxygen documentation and could not find a solution to my task: In a ModulePass running at EP_OptimizerLast, if I have a function F like in: bool Foo:runOnModule(Module &M) { LLVMContext &C = M.getContext(); for (auto &F : M) { // magic here if I want to know from which function (callee) each function is called - how can I do this? (so that I e.g. have
2020 Aug 10
3
resolve the name of an ifunc resolver function
Hi, I just spent 4 hours trying to find a way to get the name of the resolver function of a ifunc definition ... :-( and with all that time I didnt event get far: for (GlobalIFunc &IF : M.ifuncs()) { StringRef ifunc_name = IF.getName(); Constant *r = IF.getResolver(); But how do I get to the (Function*) or function name of the resolver from there? I tried everything with the Constant
2009 Nov 22
18
[Bug 25223] New: LVDS detected, but disabled
http://bugs.freedesktop.org/show_bug.cgi?id=25223 Summary: LVDS detected, but disabled Product: xorg Version: 7.5 Platform: Other OS/Version: All Status: NEW Severity: blocker Priority: highest Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org ReportedBy: martix.cz at
2019 Jan 21
4
Samba 4 -> Group Policy Drive Map -> Access Denied
<?xml version="1.0" encoding="utf-8"?> <Drives clsid="{8FDDCC1A-0C3C-43cd-A6B4-71A6DF20DA8C}"><Drive clsid="{935D1B74-9CB8-4e3c-9914-7DD559B7A417}" name="W:" status="W:" image="2" changed="2019-01-21 18:36:07" uid="{6524E6E3-E107-48CC-9973-406E16B5F34D}" userContext="1"
2017 Sep 18
1
Can't set SeDiskOperatorPrivilege to Domain Admins. (NT_STATUS_NO_SUCH_USER) Error.
We’ve just recently moved over to Samba 4. It looks as if “force directory security mode” doesn’t work in samba 4. So I’m trying to setup the Windows ACLs on our groups share. I’ve been working on this for a few days. I’ve read over the docs, it seems like all the google links are purple and I’m still stuck. Hopefully someone here will have an idea. We’re running Windows 2008R2 for our AD
2019 Jan 22
1
Samba 4 -> Group Policy Drive Map -> Access Denied
Hai, If you dont mind to share the OS and Samba version you are using? Because we dont see this much: > Thanks. Just ran "samba-tool ntacl sysvolrest" and that seems > to have fixed the issue. Greetz, Louis > -----Oorspronkelijk bericht----- > Van: samba [mailto:samba-bounces at lists.samba.org] Namens > Marco Shmerykowsky PE via samba > Verzonden: maandag