search for: fbb

Displaying 20 results from an estimated 50 matches for "fbb".

Did you mean: fb
2009 Jun 09
1
Authentication problem with samba 3.3.4 on AIX 5.3
...ve set up the samba system to integrate in our AD Domain. Integration was successfull (net ads join), wbinfo executes with parameters -ugt without any problems. Our smb.conf content follows at the end of this mail. We have defined just one share as follows: [smbtest] writeable = yes path = /gpfs/fbb/ls/cip valid users = When we connect from a Windows XP System we get the following error message: --- C:\Programme\Support Tools>net use p: \\frigg\smbtest Systemfehler 2239 aufgetreten. Dieses Benutzerkonto ist abgelaufen. --- translated: user account has expired In the system log file we g...
2013 Apr 10
3
[LLVMdev] If Conversion and predicated returns
...that BB#1 still lists BB#3 as a successor, but this is not true. Looking at IfConversion.cpp, I see this function: /// RemoveExtraEdges - Remove true / false edges if either / both are no longer /// successors. void IfConverter::RemoveExtraEdges(BBInfo &BBI) { MachineBasicBlock *TBB = NULL, *FBB = NULL; SmallVector<MachineOperand, 4> Cond; if (!TII->AnalyzeBranch(*BBI.BB, TBB, FBB, Cond)) BBI.BB->CorrectExtraCFGEdges(TBB, FBB, !Cond.empty()); } and I think that this function is supposed to clean up the successors of BB#1 after merging. The problem is that the PPC imple...
2019 Apr 15
2
SOLR/Index?
...ler>, method=PLAIN, rip=2001:470:1f0f:3ad:bb:dcff:fe50:d900, > lip=2001:470:1f0f:3ad:bb:dcff:fe50:d900, mpid=14813, TLS, > session=<lr1mwoaGwYMgAQRwHw8DrQC73P/+UNkA> > Apr 14 19:30:30 thebighonker dovecot[2507]: imap(ler/14813): Logged > out in=12412 out=66691 fhc=0 fhb=0 fbc=0 fbb=0 del=0 exp=0 trash=0 > Apr 14 19:30:54 thebighonker exim[14846]: no host name found for IP > address 23.100.68.192 > Apr 14 19:30:55 thebighonker exim[14846]: > H=(DaVinci-MWare.prophet21lab.com > <http://DaVinci-MWare.prophet21lab.com>) [23.100.68.192]:52130 > I=[192.147.2...
2013 Feb 06
0
[LLVMdev] Incorrect Simple pattern matching in lib/CodeGen/IfConversion.cpp
Hello! The if-converter tries to match 'Simple' patterns looking like this: // Simple (split, no rejoin): // EBB // | \_ // | | // | TBB---> exit // | // FBB The IfConverter::ValidSimple method (lib/CodeGen/IfConversion.cpp:461) checks if TBB matches this pattern. It basically does this by simply checking if AnalyseBranch fails on that block (IfConversion.cpp:640). This fails if TBB contains something that AnalyseBranch is not able to understand bu...
2013 Jun 04
0
[LLVMdev] MachineBasicBlock::addLiveIn errors
...in/dev/llvm/lib/CodeGen/BranchFolding.cpp#8 - /remote/arctools/marksl/marksl_1/llvm/lib/CodeGen/BranchFolding.cpp ==== 386c386 < if (RegsLiveAtExit[i]) --- > if (RegsLiveAtExit[i] && !NewMBB->isLiveIn(i)) 1718,1719c1718,1721 < TBB->addLiveIn(Def); < FBB->addLiveIn(Def); --- > if (!TBB->isLiveIn(Def)) //SYNOPSYS > TBB->addLiveIn(Def); > if (!FBB->isLiveIn(Def)) //SYNOPSYS > FBB->addLiveIn(Def); ==== //dwarc/Tools/MetaWare/Toolset/main/dev/llvm/lib/CodeGen/TailDuplication.cpp#6 - /remote...
2009 Jul 27
2
Share access problem from 3.4.0
Hi all, we have a public share for all of our users. The share definition is as follows: [public] comment = browseable = yes writeable = yes path = /gpfs/fbb/apps/public force group = @BUILTIN+Users valid users = @BUILTIN+Users write list = @BUILTIN+Users All of our data resides on a GPFS file system. The share is defined and accessed on a AIX 5.3.10 node with samba 3.0.26a. Here users do not have any problem. A second node with AIX 5.3.10 and samba 3...
2016 May 31
0
Fwd: [PATCH] D20841: TII: Add documentation about conditional exits. NFC
...include/llvm/Target/TargetInstrInfo.h Index: include/llvm/Target/TargetInstrInfo.h =================================================================== --- include/llvm/Target/TargetInstrInfo.h +++ include/llvm/Target/TargetInstrInfo.h @@ -458,6 +458,13 @@ /// 'false' destination in FBB, and a list of operands that evaluate the /// condition. These operands can be passed to other TargetInstrInfo /// methods to create new branches. + /// 5. If this block ends with a conditional ret with fallthrough, it returns + /// null for TBB and FBB and returns a non-empty lis...
2019 Apr 15
2
SOLR/Index?
...PLAIN, rip=2001:470:1f0f:3ad:bb:dcff:fe50:d900, >> lip=2001:470:1f0f:3ad:bb:dcff:fe50:d900, mpid=14813, TLS, >> session=<lr1mwoaGwYMgAQRwHw8DrQC73P/+UNkA> >> Apr 14 19:30:30 thebighonker dovecot[2507]: imap(ler/14813): Logged >> out in=12412 out=66691 fhc=0 fhb=0 fbc=0 fbb=0 del=0 exp=0 trash=0 >> Apr 14 19:30:54 thebighonker exim[14846]: no host name found for IP >> address 23.100.68.192 >> Apr 14 19:30:55 thebighonker exim[14846]: >> H=(DaVinci-MWare.prophet21lab.com >> <http://DaVinci-MWare.prophet21lab.com>) [23.100.68.192]:521...
2020 Jul 09
3
question on analyzeBranch and getFallThrough
...e index is out of range, the jump table instruction just falls through. I implemented a pass to remove the range check generated before the jump table instruction because it is superfluous. This causes as assertion in MachineBlockPlacement.cpp: assert((!TII->analyzeBranch(*PrevBB, TBB, FBB, Cond) || !PrevBB->canFallThrough()) && "Unexpected block with un-analyzable fallthrough!"); The method MachineBasicBlock::getFallThrough() uses TII->analyzeBranch(). Using analyze branch there doesn't appear to be anyway to signify that a b...
2019 Apr 15
2
SOLR/Index?
On 15/04/2019 01:39, Larry Rosenman via dovecot wrote: > > full solr.log at: > https://www.lerctr.org/~ler/solr.log > > The search DOES make it to SOLR: > ?77% [ler at thebighonker.lerctr.org:~] 130 $ grep sysutils > /var/log/solr/solr.log > 2019-04-14 18:31:34.749 INFO? (qtp349420578-7538) [? ?x:dovecot] > o.a.s.c.S.Request [dovecot]? webapp=/solr path=/select >
2019 Apr 15
2
SOLR/Index?
...470:1f0f:3ad:bb:dcff:fe50:d900, >>> lip=2001:470:1f0f:3ad:bb:dcff:fe50:d900, mpid=14813, TLS, >>> session=<lr1mwoaGwYMgAQRwHw8DrQC73P/+UNkA> >>> Apr 14 19:30:30 thebighonker dovecot[2507]: imap(ler/14813): Logged >>> out in=12412 out=66691 fhc=0 fhb=0 fbc=0 fbb=0 del=0 exp=0 trash=0 >>> Apr 14 19:30:54 thebighonker exim[14846]: no host name found for IP >>> address 23.100.68.192 >>> Apr 14 19:30:55 thebighonker exim[14846]: >>> H=(DaVinci-MWare.prophet21lab.com >>> <http://DaVinci-MWare.prophet21lab.com>)...
2011 May 02
2
[LLVMdev] LiveVariables not updated in MachineBasicBlock::SplitCriticalEdge?
Is LiveVariables updated correctly when TII->RemoveBranch and TII->InsertBranch are called in the following piece of code? - MachineBasicBlock::updateTerminator() line 307 of MachineBasicBlock.cpp: if (FBB) { // The block has a non-fallthrough conditional branch. If one of its // successors is its layout successor, rewrite it to a fallthrough // conditional branch. if (isLayoutSuccessor(TBB)) { if (TII->ReverseBranchCondition(Cond)) return; TII-&gt...
2019 Apr 15
0
SOLR/Index?
...in: Login: user=<ler>, method=PLAIN, rip=2001:470:1f0f:3ad:bb:dcff:fe50:d900, lip=2001:470:1f0f:3ad:bb:dcff:fe50:d900, mpid=14813, TLS, session=<lr1mwoaGwYMgAQRwHw8DrQC73P/+UNkA> Apr 14 19:30:30 thebighonker dovecot[2507]: imap(ler/14813): Logged out in=12412 out=66691 fhc=0 fhb=0 fbc=0 fbb=0 del=0 exp=0 trash=0 Apr 14 19:30:54 thebighonker exim[14846]: no host name found for IP address 23.100.68.192 Apr 14 19:30:55 thebighonker exim[14846]: H=(DaVinci-MWare.prophet21lab.com<http://DaVinci-MWare.prophet21lab.com>) [23.100.68.192]:52130 I=[192.147.25.65]:25 sender verify defer fo...
2019 Apr 15
0
SOLR/Index?
...in: Login: user=<ler>, method=PLAIN, rip=2001:470:1f0f:3ad:bb:dcff:fe50:d900, lip=2001:470:1f0f:3ad:bb:dcff:fe50:d900, mpid=14813, TLS, session=<lr1mwoaGwYMgAQRwHw8DrQC73P/+UNkA> Apr 14 19:30:30 thebighonker dovecot[2507]: imap(ler/14813): Logged out in=12412 out=66691 fhc=0 fhb=0 fbc=0 fbb=0 del=0 exp=0 trash=0 Apr 14 19:30:54 thebighonker exim[14846]: no host name found for IP address 23.100.68.192 Apr 14 19:30:55 thebighonker exim[14846]: H=(DaVinci-MWare.prophet21lab.com) [23.100.68.192]:52130 I=[192.147.25.65]:25 sender verify defer for < info at duke.org>: host lookup did...
2019 Apr 15
0
SOLR/Index?
...in: Login: user=<ler>, method=PLAIN, rip=2001:470:1f0f:3ad:bb:dcff:fe50:d900, lip=2001:470:1f0f:3ad:bb:dcff:fe50:d900, mpid=14813, TLS, session=<lr1mwoaGwYMgAQRwHw8DrQC73P/+UNkA> Apr 14 19:30:30 thebighonker dovecot[2507]: imap(ler/14813): Logged out in=12412 out=66691 fhc=0 fhb=0 fbc=0 fbb=0 del=0 exp=0 trash=0 Apr 14 19:30:54 thebighonker exim[14846]: no host name found for IP address 23.100.68.192 Apr 14 19:30:55 thebighonker exim[14846]: H=(DaVinci-MWare.prophet21lab.com<http://DaVinci-MWare.prophet21lab.com>) [23.100.68.192]:52130 I=[192.147.25.65]:25 sender verify defer fo...
2019 Apr 15
0
SOLR/Index?
...in: Login: user=<ler>, method=PLAIN, rip=2001:470:1f0f:3ad:bb:dcff:fe50:d900, lip=2001:470:1f0f:3ad:bb:dcff:fe50:d900, mpid=14813, TLS, session=<lr1mwoaGwYMgAQRwHw8DrQC73P/+UNkA> Apr 14 19:30:30 thebighonker dovecot[2507]: imap(ler/14813): Logged out in=12412 out=66691 fhc=0 fhb=0 fbc=0 fbb=0 del=0 exp=0 trash=0 Apr 14 19:30:54 thebighonker exim[14846]: no host name found for IP address 23.100.68.192 Apr 14 19:30:55 thebighonker exim[14846]: H=(DaVinci-MWare.prophet21lab.com<http://DaVinci-MWare.prophet21lab.com>) [23.100.68.192]:52130 I=[192.147.25.65]:25 sender verify defer fo...
2014 Nov 06
2
[LLVMdev] Should the MachineVerifier accept a MBB with a single (landing pad) successor?
...uccessor, the landing pad. Hence my simple change, making the verifier accept it: --- c/lib/CodeGen/MachineVerifier.cpp +++ w/lib/CodeGen/MachineVerifier.cpp @@ -590,7 +590,11 @@ MachineVerifier::visitMachineBasicBlockBefore(const MachineBasicBlock *MBB) { } } else if (TBB && !FBB && Cond.empty()) { // Block unconditionally branches somewhere. - if (MBB->succ_size() != 1+LandingPadSuccs.size()) { + // If the block has exactly one successor, that happens to be a + // landingpad, accept it as valid control flow. + if (MBB->succ_size() !...
2017 Jul 13
5
passwd-file, getting invalid uid 0
...al mail_log" } protocol !doveadm { mail_plugins = " fts fts_solr notify stats virtual mail_log" } protocol imap { imap_client_workarounds = tb-extra-mailbox-sep tb-lsub-flags imap_logout_format = in=%i out=%o fhc=%{fetch_hdr_count} fhb=%{fetch_hdr_bytes} fbc=%{fetch_body_count} fbb=%{fetch_body_bytes} del=%{deleted} exp=%{expunged} trash=%{trashed} imap_metadata = yes mail_max_userip_connections = 50 mail_plugins = " fts fts_solr notify stats virtual mail_log imap_sieve imap_stats stats" } -- Larry Rosenman http://www.lerctr.org/~ler Phon...
2013 Sep 27
2
[LLVMdev] Trip count and Loop Vectorizer
...as 0, or with value >=16, LV with unroll. With the change to the lower bound, it will also include the loop with 0 trip count. SCEV returns 0 trip count for this case, because it identifies that there is no backedge taken. ScalarEvolution::ComputeExitLimitFromCond () { ... if (L->contains(FBB) == !CI->getZExtValue()) { } else // The backedge is never taken. return getConstant(CI->getType(), 0); } From: Nadav Rotem [mailto:nrotem at apple.com] Sent: Friday, September 27, 2013 1:03 PM To: Murali, Sriram Cc: llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] Trip count and Loop V...
2017 Dec 25
2
Sieve 0.5.0/Dovecot 2.3.0
...virtual mail_log" } protocol !doveadm { mail_plugins = " fts fts_solr notify virtual mail_log" } protocol imap { imap_client_workarounds = tb-extra-mailbox-sep tb-lsub-flags imap_logout_format = in=%i out=%o fhc=%{fetch_hdr_count} fhb=%{fetch_hdr_bytes} fbc=%{fetch_body_count} fbb=%{fetch_body_bytes} del=%{deleted} exp=%{expunged} trash=%{trashed} imap_metadata = yes mail_max_userip_connections = 50 mail_plugins = " fts fts_solr notify virtual mail_log imap_sieve" } thebighonker.lerctr.org /home/ler/sieve $ -- Larry Rosenman http://w...