search for: dst

Displaying 20 results from an estimated 4218 matches for "dst".

2005 Jun 14
1
Problem with samba broadcast
...e destination 0 0 ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 state RELATED,ESTABLISHED 0 0 ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 Jun 15 00:46:01 OUTPUT:DROP:IN= OUT=eth0 SRC=192.168.1.1 DST=192.168.1.255 LEN=267 TOS=0x00 PREC=0x00 TTL=64 ID=5 DF PROTO=UDP SPT=138 DPT=138 LEN=247 Jun 15 00:50:51 OUTPUT:DROP:IN= OUT=eth0 SRC=192.168.1.1 DST=192.168.0.255 LEN=78 TOS=0x00 PREC=0x00 TTL=64 ID=6 DF PROTO=UDP SPT=137 DPT=137 LEN=58 Jun 15 00:50:51 OUTPUT:DROP:IN= OUT=eth0 SRC=192.168.1.1...
2009 Dec 31
1
[PATCH] Autogenerate uureg opcode macros
...ne _/; s/ CAT /##/g;' +#define OP00(op) define op() ureg_##op(ureg) +#define OP01(op) define op(src) ureg_##op(ureg, _src(src)) +#define OP00_LBL(op) define op(label) ureg_##op(ureg, label) +#define OP01_LBL(op) define op(src, label) ureg_##op(ureg, _src(src), label) +#define OP10(op) define op(dst) ureg_##op(ureg, dst) +#define OP11(op) define op(dst, src) ureg_##op(ureg, dst, _src(src)) +#define OP12(op) define op(dst, src0, src1) ureg_##op(ureg, dst, _src(src0), _src(src1)) +#define OP12_TEX(op) define op(dst, target, src0, src1) ureg_##op(ureg, dst, TGSI_TEXTURE_ CAT target, _src(src0), _...
2005 Jan 11
2
dnat problem
...rier:0 collisions:0 txqueuelen:1000 RX bytes:26630540 (25.3 Mb) TX bytes:58594911 (55.8 Mb) Interrupt:12 Base address:0x9400 shorewall drop all: Jan 11 18:36:51 fw Shorewall:all2all:DROP:IN=eth0 OUT= MAC=00:04:76:a2:7f:b1:00:04:76:51:cf:5c:08:00 SRC=193.205.140.9 DST=193.205.140.106 LEN=48 TOS=0x00 PREC=0x00 TTL=128 ID=59272 DF PROTO=TCP SPT=4294 DPT=443 WINDOW=16384 RES=0x00 SYN URGP=0 Jan 11 18:36:54 fw Shorewall:all2all:DROP:IN=eth0 OUT= MAC=00:04:76:a2:7f:b1:00:04:76:51:cf:5c:08:00 SRC=193.205.140.9 DST=193.205.140.106 LEN=48 TOS=0x00 PREC=0x00 TTL=128 I...
2020 May 22
2
[PATCH] Optimized assembler version of md5_process() for x86-64
...over 16-word blocks +2: # save old values of A, B, C, D + mov %eax, %r8d + mov %ebx, %r9d + mov %ecx, %r14d + mov %edx, %r15d + mov 0*4(%rsi), %r10d /* (NEXT STEP) X[0] */ + mov %edx, %r11d /* (NEXT STEP) z' = %edx */ + xor %ecx, %r11d /* y ^ ... */ + lea -680876936(%eax,%r10d),%eax /* Const + dst + ... */ + and %ebx, %r11d /* x & ... */ + xor %edx, %r11d /* z ^ ... */ + mov 1*4(%rsi),%r10d /* (NEXT STEP) X[1] */ + add %r11d, %eax /* dst += ... */ + rol $7, %eax /* dst <<< s */ + mov %ecx, %r11d /* (NEXT STEP) z' = %ecx */ + add %ebx, %eax /* dst += x */ + xor %ebx, %r11d /*...
2007 Dec 12
2
[LLVMdev] Bogus X86-64 Patterns
Tracking down a problem with one of our benchmark codes, we've discovered that some of the patterns in X86InstrX86-64.td are wrong. Specifically: def MOV64toPQIrm : RPDI<0x6E, MRMSrcMem, (outs VR128:$dst), (ins i64mem:$src), "mov{d|q}\t{$src, $dst|$dst, $src}", [(set VR128:$dst, (v2i64 (scalar_to_vector (loadi64 addr:$src))))]>; def MOVPQIto64mr : RPDI<0x7E, MRMDestMem, (outs), (ins i64mem:$dst, VR128: $src)...
2003 Mar 28
9
Squid
...0.0.0.0/0 0 0 logdrop ah -- * * 240.0.0.0/4 0.0.0.0/0 Chain shorewall (0 references) pkts bytes target prot opt in out source destination Mar 28 08:27:00 all2all:REJECT:IN=eth2 OUT=eth0 SRC=192.168.2.2 DST=65.112.245.232 LEN=48 TOS=0x00 PREC=0x00 TTL=63 ID=11323 DF PROTO=TCP SPT=50899 DPT=2064 WINDOW=32768 RES=0x00 SYN URGP=0 Mar 28 08:27:04 all2all:REJECT:IN=eth2 OUT=eth0 SRC=192.168.2.2 DST=128.104.18.148 LEN=48 TOS=0x00 PREC=0x00 TTL=63 ID=11324 DF PROTO=TCP SPT=50900 DPT=2064 WINDOW=32768 RES=0...
2007 Aug 14
1
[LLVMdev] Static functions for APInt
...a number. If the input number has no bits set -1U is + /// returned. + static unsigned int tcLSB(const integerPart *, unsigned int); + static unsigned int tcMSB(const integerPart *, unsigned int); + + /// Negate a bignum in-place. + static void tcNegate(integerPart *, unsigned int); + + /// DST += RHS + CARRY where CARRY is zero or one. Returns the + /// carry flag. + static integerPart tcAdd(integerPart *, const integerPart *, + integerPart carry, unsigned); + + /// DST -= RHS + CARRY where CARRY is zero or one. Returns the + /// carry flag. + static integerPart tcSubtract(in...
2004 Nov 25
6
Logfile entry query
Hi, I get frequent logfile entries from Shorewall similar to the following: Nov 25 11:22:51 10.0.0.248 kernel: Shorewall:net2mill:DROP:IN=eth2 OUT=eth0 SRC=202.96.117.50 DST=10.0.0.10 LEN=56 TOS=0x00 PREC=0x00 TTL=241 ID=0 PROTO=ICMP TYPE=11 CODE=0 [SRC=10.0.0.10 DST=202.101.167.133 LEN=48 TOS=0x00 PREC=0x00 TTL=1 ID=13591 DF PROTO=TCP INCOMPLETE [8 bytes] ] Could someone explain what the part in square brackets is referring to ? Thanks, Dave -------- CAUTION: Th...
2015 May 29
2
[PATCH 1/3] inspection: Add func for merging fs inspections
...e, const char *eregex, int iflag, char **ret); extern void guestfs_int_check_package_format (guestfs_h *g, struct inspect_fs *fs); extern void guestfs_int_check_package_management (guestfs_h *g, struct inspect_fs *fs); +extern int guestfs_int_merge_fs_inspections (guestfs_h *g, struct inspect_fs *dst, struct inspect_fs *src); /* inspect-fs-unix.c */ extern int guestfs_int_check_linux_root (guestfs_h *g, struct inspect_fs *fs); diff --git a/src/inspect-fs.c b/src/inspect-fs.c index 932e5e7..5f55f1d 100644 --- a/src/inspect-fs.c +++ b/src/inspect-fs.c @@ -655,3 +655,118 @@ guestfs_int_first_e...
2004 Dec 30
0
MultipleIPĀ“s in one Zone
....0.0.0/0 0 0 LOG all -- * * 224.0.0.0/4 0.0.0.0/0 LOG flags 0 level 6 prefix `Shorewall:smurfs:DROP:'' 0 0 DROP all -- * * 224.0.0.0/4 0.0.0.0/0 Dec 30 20:07:25 net2all:DROP:IN=eth1 OUT= SRC=209.218.99.205 DST=xxx.xxx.xxx.10 LEN=48 TOS=0x10 PREC=0x00 TTL=102 ID=39093 DF PROTO=TCP SPT=4362 DPT=21 WINDOW=64240 RES=0x00 SYN URGP=0 Dec 30 20:07:28 net2all:DROP:IN=eth1 OUT= SRC=209.218.99.205 DST=xxx.xxx.xxx.10 LEN=48 TOS=0x10 PREC=0x00 TTL=102 ID=39668 DF PROTO=TCP SPT=4362 DPT=21 WINDOW=64240 RES=0x00 SYN...
2015 Jun 02
1
[PATCH 1/3] inspection: Add func for merging fs inspections
..., const char *eregex, int iflag, char **ret); extern void guestfs_int_check_package_format (guestfs_h *g, struct inspect_fs *fs); extern void guestfs_int_check_package_management (guestfs_h *g, struct inspect_fs *fs); +extern void guestfs_int_merge_fs_inspections (guestfs_h *g, struct inspect_fs *dst, struct inspect_fs *src); /* inspect-fs-unix.c */ extern int guestfs_int_check_linux_root (guestfs_h *g, struct inspect_fs *fs); diff --git a/src/inspect-fs.c b/src/inspect-fs.c index 932e5e7..a2913d6 100644 --- a/src/inspect-fs.c +++ b/src/inspect-fs.c @@ -655,3 +655,105 @@ guestfs_int_first_e...
2004 Sep 21
1
squid on DMZ using proxyarp
...0.0.0.0/0 Chain norfc1918 (2 references) pkts bytes target prot opt in out source destination 0 0 rfc1918 all -- * * 172.16.0.0/12 0.0.0.0/0 0 0 rfc1918 all -- * * 0.0.0.0/0 0.0.0.0/0 ctorigdst 172.16.0.0/12 0 0 rfc1918 all -- * * 192.168.0.0/16 0.0.0.0/0 0 0 rfc1918 all -- * * 0.0.0.0/0 0.0.0.0/0 ctorigdst 192.168.0.0/16 0 0 rfc1918 all -- * * 10.0.0.0/8 0.0.0.0/0 0...
2019 Feb 08
1
Samba and ufw (mmcg29440@frontier.com)
...change. Still cannot connect with firewall enabled. Same error mesage as before "Cannot mount location ...". ufw log set to medium and copied below. Feb 4 10:00:42 radio kernel: [ 354.238099] [UFW AUDIT] IN=enp2s5 OUT= MAC=ff:ff:ff:ff:ff:ff:74:27:ea:ab:1e:e0:08:00 SRC=192.168.254.15 DST=192.168.254.255 LEN=203 TOS=0x00 PREC=0x00 TTL=128 ID=7217 PROTO=UDP SPT=138 DPT=138 LEN=183 Feb 4 10:00:42 radio kernel: [ 354.238501] [UFW AUDIT] IN= OUT=enp2s5 SRC=192.168.254.39 DST=192.168.254.255 LEN=78 TOS=0x00 PREC=0x00 TTL=64 ID=57421 DF PROTO=UDP SPT=137 DPT=137 LEN=58 Feb 4 10:01:25 r...
2009 Jun 07
2
Does this tell me anything? Traffic report
...urce Destination Protocol Info 1 0.000000 192.168.1.100 192.168.1.255 NBNS Registration NB <01><02>__MSBROWSE__<02><01> Frame 1 (110 bytes on wire, 110 bytes captured) Ethernet II, Src: Cisco-Li_15:1c:11 (00:18:39:15:1c:11), Dst: Broadcast (ff:ff:ff:ff:ff:ff) Internet Protocol, Src: 192.168.1.100 (192.168.1.100), Dst: 192.168.1.255 (192.168.1.255) User Datagram Protocol, Src Port: netbios-ns (137), Dst Port: netbios-ns (137) NetBIOS Name Service No. Time Source Destination Protocol Info...
2017 Jul 07
2
Unhandled reg/opcode register encoding VR2048 Error in backend
Hello, I m working towards backend. Here i need to define vector load and stores for 64 i32 elements. so in x86instrinfo.td i wrote; def VMOV_256B_RM : I<0x6F, MRMSrcMem, (outs VR2048:$dst), (ins i32mem:$src), "vmov_256B_rm\t{$src, $dst|$dst, $src}", [(set VR2048:$dst, (v64i32 (scalar_to_vector (loadi32 addr:$src))))], IIC_MOV_MEM>, EVEX; def VMOV_256B_MR : I<0x7F, MRMDestMem, (outs), (ins i32mem:$dst, VR204...
2017 Jul 11
2
error: In anonymous_4820: Unrecognized node 'VRR128'!
Thank You. But can we use same register class for fadd as well, is this instruction correct? def VFADD : I<0x0E, MRMDestReg, (outs VRR128:$dst), (ins VRR128:$src1, VRR128:$src2),"VFADD\t{$src1, $src2, $dst|$dst, $src1, $src2}", [(set VRR128:$dst, (fadd VRR128:$src1, VRR128:$src2))]>, TA; On Tue, Jul 11, 2017 at 9:00 PM, Craig Topper <craig.topper at gmail.com> wrote: > "add" only works for integers. Float...
2015 Mar 24
3
[LLVMdev] [PATCH] fix outs/ins of MOV16mr instruction (X86)
...ks. diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td index e9a0431..f5b2064 100644 --- a/lib/Target/X86/X86InstrInfo.td +++ b/lib/Target/X86/X86InstrInfo.td @@ -1412,7 +1412,7 @@ let SchedRW = [WriteStore] in { def MOV8mr : I<0x88, MRMDestMem, (outs), (ins i8mem :$dst, GR8 :$src), "mov{b}\t{$src, $dst|$dst, $src}", [(store GR8:$src, addr:$dst)], IIC_MOV_MEM>; -def MOV16mr : I<0x89, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src), +def MOV16mr : I<0x89, MRMDestMem, (outs i16mem:$dst), (ins GR16:$src),...
2006 Oct 01
2
[LLVMdev] Instruction descriptions question
...ted, here are my first several questions and proposals. I hope that some of them make sense for you. 1. Why does X86 instruction set description provide different descriptions for the same instructions, which differ only in the size of operands? E.g. def MOV8rm : I<0x8A, MRMSrcMem, (ops GR8 :$dst, i8mem :$src), "mov{b} {$src, $dst|$dst, $src}", [(set GR8:$dst, (load addr:$src))]>; def MOV16rm : I<0x8B, MRMSrcMem, (ops GR16:$dst, i16mem:$src), "mov{w} {$src, $dst|$dst, $src}", [(set GR16:$dst, (load add...
2016 Jul 13
1
[PATCH v3 0/7] lib: string: add functions to case-convert strings
...> >> length to mimic strcpy() > >> - converting the case of a string in-place (i.e. modifying the > >> string that was passed in) > >> > >> Consequently, I am proposing these new functions: > >> void strlcpytoupper(char *dst, const char *src, size_t len); > >> void strlcpytolower(char *dst, const char *src, size_t len); > >> void strcpytoupper(char *dst, const char *src); > >> void strcpytolower(char *dst, const char *src); > >> void strtoupper(char *s); > >...
2017 Jul 11
2
error: In anonymous_4820: Unrecognized node 'VRR128'!
Thank You. How to do the same for add please see the following; it gives duplication error. def VADD : I<0x0E, MRMDestReg, (outs VRR128:$dst), (ins VRR128:$src1, VRR128:$src2),"VADD\t{$src1, $src2, $dst|$dst, $src1, $src2}", [(set VRR128:$dst, (add VRR128:$src1, VRR128:$src2))]>, TA; def : Pat<(add VRR128:$src1, VRR128:$src2), (VADD VRPIM128:$src1, VRPIM128:$src2)>; Where to place v32f32 to distinguish between the...