search for: d9c

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

Did you mean: d9
2018 Feb 19
0
[bt full included] imap-login: Panic: file client-common.c: line 272 (client_destroy): assertion failed: (client->create_finished)
...in combination with postfix and thunderbird, roundcube and K9(Android) as imap clients. Panic happens 5-6 times a day, but no influence on user experience. Unfortunately i have no idea what might be causing it. Let me know if you need more information. Andreas syslog: Feb 19 21:09:37 hafnium.d9c.eu dovecot[14324]: imap-login: Fatal: master: service(imap-login): child 30653 killed with signal 6 (core dumped) dovecot.log: Feb 19 20:57:07 imap(user at d9c.eu)<30655><7C/91pVl0q3CJ7cC>: Info: Connection closed (IDLE running for 0.001 + waiting input for 1109.126 secs, 2 B in +...
2017 Apr 01
6
[Bug 1140] New: nft dump invalid (flow table)
...(flow table) Product: nftables Version: unspecified Hardware: x86_64 OS: other Status: NEW Severity: major Priority: P5 Component: nft Assignee: pablo at netfilter.org Reporter: netfilter at d9c.eu Hi, test.nft: #!/usr/bin/nft -f flush ruleset table inet filter { chain input { type filter hook input priority 0; ip protocol icmp flow table i4 { icmp type counter } accept ip6 nexthdr icmpv6 flow table i6 { icmpv6 type counter } accept } } eof nft -f test.nft nft list ru...
2017 Apr 02
2
[Bug 1141] New: trace aborts using pkttype on ingress
...n ingress Product: nftables Version: unspecified Hardware: x86_64 OS: other Status: NEW Severity: major Priority: P5 Component: kernel Assignee: pablo at netfilter.org Reporter: netfilter at d9c.eu Using the following minimal ruleset I am getting my journal spammed with traces: table netdev ethernet { chain etherfilter { type filter hook ingress device eth0 priority 0; policy accept; pkttype broadcast counter drop } } Unfortunately i cannot really tell what is triggering thi...
2017 Apr 02
6
[Bug 1142] New: invalid binop operation 6nft
...eration 6nft Product: nftables Version: unspecified Hardware: x86_64 OS: other Status: NEW Severity: major Priority: P5 Component: nft Assignee: pablo at netfilter.org Reporter: netfilter at d9c.eu Consider the following table: table inet filter { set allowable { type ipv6_addr flags timeout } chain input { type filter hook input priority 0; policy accept; tcp dport telnet set update ip6 saddr &...
2010 Jul 15
1
Error using the mi package
...b7e* b7f* b7g* b7h* b7i* b7j* b7k* b9b* b10a* b10b* b13a* b13b* b13c* b14* c3* c4* c5* c12a* c12b* c12c* c12d* c12e* c12f* c19* d1* d2* d3* d6* d7a* d7b* d7c* d7d* d7e* d7f* d7g* d7h* d7i* d8a* d8b* d8c* d8d* d8e* d8f* d8g* d8h* d8i* d9a* d9b* d9c* d9d* d9e* d10a* d10b* d10c* d10d* d10e* d10f* d11* d13* d14* e1* e2* e3* e5* e6* f2* f3a* f3b* f3c* f3d* f3e* f4* f6* f7* f8* f9* f12* f14* f15* f16* f20* f21* f22* f23* f25* g2* g3* g6* g8* g9* g12* g13* g15* g17* g18* g22* g25* g26* g27...
2016 Oct 08
2
[Bug 1090] New: Named sets: comments disappear with flags interval
...gs interval Product: nftables Version: unspecified Hardware: x86_64 OS: other Status: NEW Severity: normal Priority: P5 Component: nft Assignee: pablo at netfilter.org Reporter: netfilter at d9c.eu System: Archlinux, nft 0.6, linux 4.7.6 >table inet filter { > set spamhaus { > type ipv4_addr > flags interval > } >... >$ nft add element inet filter spamhaus { 1.2.3.4 comment \"test\" } >$nft list set inet filt...
2018 Sep 19
1
[Bug 1280] New: meta pkttype incompatible? with ingress
...with ingress Product: nftables Version: unspecified Hardware: x86_64 OS: other Status: NEW Severity: major Priority: P5 Component: nft Assignee: pablo at netfilter.org Reporter: netfilter at d9c.eu OS: 4.18.8-arch1-1-ARCH (Archlinux) with statically defined IPv4/IPv6 addresses and nftables 0.9.0 (problem also occurs with kernel 4.14.70) #!/usr/bin/nft -f flush ruleset table netdev ethernet { chain etherfilter { type filter hook ingress device eth0 priority 0; po...
2011 Oct 24
0
[LLVMdev] Question about local variables
...t;>> >>> Is there a clean way to tell the difference between dst and src >>> operands in operations without assignment "=" (ie, store)? >>> >> >> StoreInst has getValueOperand() and getPointerOperand(). See >> http://llvm.org/doxygen/de/d9c/classllvm_1_1StoreInst.html . >> >> We don't print out a name for instructions that are void typed, since >> there's no sense trying to refer to them again. You can test for that with >> Inst->getType()->isVoidTy(). >> >> Nick >> >> On M...
2020 Aug 13
7
[Bug 1449] New: nft ipv4 set with interval issue
...rval issue Product: nftables Version: unspecified Hardware: x86_64 OS: other Status: NEW Severity: blocker Priority: P5 Component: nft Assignee: pablo at netfilter.org Reporter: netfilter at d9c.eu Tested with git HEAD as of August 13th: pacman -Q | grep nft libnftnl-git 1.1.7.r4.g58e7e9c-1 nftables-git 0.9.6.r42.g0864c2d4-1 on uname -a Linux iArchEFI 5.7.1...
2011 Oct 24
0
[LLVMdev] Question about local variables
...an way to tell the difference between dst and src >>>>> operands in operations without assignment "=" (ie, store)? >>>>> >>>> >>>> StoreInst has getValueOperand() and getPointerOperand(). See >>>> http://llvm.org/doxygen/de/d9c/classllvm_1_1StoreInst.html . >>>> >>>> We don't print out a name for instructions that are void typed, since >>>> there's no sense trying to refer to them again. You can test for that with >>>> Inst->getType()->isVoidTy(). >>>&...
2011 Oct 22
9
[LLVMdev] Question about local variables
Nick, Unfortunately this doesn't answer my question I don't think. It seems that -instnamer, as you mention, names the instructions but still does not name the local variables. So there really is no way to do this shy of creating (or basically copying) the API from AsmWriter (seems very dedundant to me)? This seems like a large failing? On Fri, Oct 21, 2011 at 7:03 PM, Nick
2011 Oct 24
0
[LLVMdev] Question about local variables
Nick, Is there a clean way to tell the difference between dst and src operands in operations without assignment "=" (ie, store)? On Mon, Oct 24, 2011 at 9:52 AM, Ryan Taylor <ryta1203 at gmail.com> wrote: > Nick, > > I forgot to thank you, thanks! > > > On Sat, Oct 22, 2011 at 2:25 PM, Nick Lewycky <nicholas at mxc.ca> wrote: > >> Ryan
2015 Nov 27
0
doveadm-backup verbosity?
Hi, according to the man page doveadm-backup, the verbosity switch "-v" should do the following: "Enables verbosity, including progress counter" However, i see no difference running the following command with or without the "-v" switch: >>doveadm -v backup -R -A remote:myhost The command itself works without problem, two mailboxes are correctly