search for: srcid

Displaying 16 results from an estimated 16 matches for "srcid".

Did you mean: src_id
2016 Mar 16
2
[PATCH mesa 5/6] nouveau: codegen: Add support for OpenCL global memory buffers
...code[0] = 0x00000002; > + code[1] = 0x7a800000; > + break; > case FILE_MEMORY_SHARED: > code[0] = 0x00000002; > if (i->subOp == NV50_IR_SUBOP_STORE_UNLOCKED) > @@ -1678,7 +1685,8 @@ CodeEmitterGK110::emitSTORE(const Instruction *i) > > srcId(i->src(1), 2); > srcId(i->src(0).getIndirect(0), 10); > - if (i->src(0).getFile() == FILE_MEMORY_BUFFER && > + if ((i->src(0).getFile() == FILE_MEMORY_BUFFER || > + i->src(0).getFile() == FILE_MEMORY_GLOBAL) && > i->src(0).is...
2015 Dec 02
5
[PATCH] Receive multiple packets at a time
...braindead IPv6 implementations do stupid things. */ - - // Try to figure out who sent this packet. - - node_t *n = lookup_node_udp(&addr); - - if(!n) { - // It might be from a 1.1 node, which might have a source ID in the packet. - pkt.offset = 2 * sizeof(node_id_t); - from = lookup_node_id(SRCID(&pkt)); - if(from && !memcmp(DSTID(&pkt), &nullid, sizeof nullid) && from->status.sptps) { - if(sptps_verify_datagram(&from->sptps, DATA(&pkt), pkt.len - 2 * sizeof(node_id_t))) - n = from; - else - goto skip_harder; +#ifndef HAVE_RECVMMSG + pkt[...
2015 Dec 02
0
[PATCH] Receive multiple packets at a time
...this packet. > - > - node_t *n = lookup_node_udp(&addr); > - > - if(!n) { > - // It might be from a 1.1 node, which might have a source ID in the packet. > - pkt.offset = 2 * sizeof(node_id_t); > - from = lookup_node_id(SRCID(&pkt)); > - if(from && !memcmp(DSTID(&pkt), &nullid, sizeof nullid) && from->status.sptps) { > - if(sptps_verify_datagram(&from->sptps, DATA(&pkt), pkt.len - 2 * sizeof(node_id_t))) > -...
2016 Mar 16
0
[PATCH mesa 5/6] nouveau: codegen: Add support for OpenCL global memory buffers
...break; + case FILE_MEMORY_LOCAL: + code[0] = 0x00000002; + code[1] = 0x7a800000; + break; case FILE_MEMORY_SHARED: code[0] = 0x00000002; if (i->subOp == NV50_IR_SUBOP_STORE_UNLOCKED) @@ -1678,7 +1685,8 @@ CodeEmitterGK110::emitSTORE(const Instruction *i) srcId(i->src(1), 2); srcId(i->src(0).getIndirect(0), 10); - if (i->src(0).getFile() == FILE_MEMORY_BUFFER && + if ((i->src(0).getFile() == FILE_MEMORY_BUFFER || + i->src(0).getFile() == FILE_MEMORY_GLOBAL) && i->src(0).isIndirect(0) &&...
2016 Mar 16
13
[PATCH mesa 1/6] tgsi_build: Fix return of uninitialized memory in tgsi_*_instruction_memory
tgsi_default_instruction_memory / tgsi_build_instruction_memory were returning uninitialized memory for tgsi_instruction_memory.Texture and tgsi_instruction_memory.Format. Note 0 means not set, and thus is a correct default initializer for these. Fixes: 3243b6fc97 ("tgsi: add Texture and Format to tgsi_instruction_memory") Cc: Nicolai Hähnle <nicolai.haehnle at amd.com>
2016 Mar 16
2
[PATCH mesa 4/6] nouveau: codegen: s/FILE_MEMORY_GLOBAL/FILE_MEMORY_BUFFER/
...1] = 0xe0000000; code[0] = 0x00000000; > break; > case FILE_MEMORY_LOCAL: code[1] = 0x7a800000; code[0] = 0x00000002; > break; > case FILE_MEMORY_SHARED: > code[0] = 0x00000002; > @@ -1678,7 +1678,7 @@ CodeEmitterGK110::emitSTORE(const Instruction *i) > > srcId(i->src(1), 2); > srcId(i->src(0).getIndirect(0), 10); > - if (i->src(0).getFile() == FILE_MEMORY_GLOBAL && > + if (i->src(0).getFile() == FILE_MEMORY_BUFFER && > i->src(0).isIndirect(0) && > i->getIndirect(0, 0)->re...
2016 Mar 16
0
[PATCH mesa 5/6] nouveau: codegen: Add support for OpenCL global memory buffers
...+ code[1] = 0x7a800000; >> + break; >> case FILE_MEMORY_SHARED: >> code[0] = 0x00000002; >> if (i->subOp == NV50_IR_SUBOP_STORE_UNLOCKED) >> @@ -1678,7 +1685,8 @@ CodeEmitterGK110::emitSTORE(const Instruction *i) >> >> srcId(i->src(1), 2); >> srcId(i->src(0).getIndirect(0), 10); >> - if (i->src(0).getFile() == FILE_MEMORY_BUFFER && >> + if ((i->src(0).getFile() == FILE_MEMORY_BUFFER || >> + i->src(0).getFile() == FILE_MEMORY_GLOBAL) && >>...
2016 Mar 16
0
[PATCH mesa 4/6] nouveau: codegen: s/FILE_MEMORY_GLOBAL/FILE_MEMORY_BUFFER/
...ak; + case FILE_MEMORY_BUFFER: code[1] = 0xe0000000; code[0] = 0x00000000; break; case FILE_MEMORY_LOCAL: code[1] = 0x7a800000; code[0] = 0x00000002; break; case FILE_MEMORY_SHARED: code[0] = 0x00000002; @@ -1678,7 +1678,7 @@ CodeEmitterGK110::emitSTORE(const Instruction *i) srcId(i->src(1), 2); srcId(i->src(0).getIndirect(0), 10); - if (i->src(0).getFile() == FILE_MEMORY_GLOBAL && + if (i->src(0).getFile() == FILE_MEMORY_BUFFER && i->src(0).isIndirect(0) && i->getIndirect(0, 0)->reg.size == 8) code[...
2016 Mar 16
0
[PATCH mesa 4/6] nouveau: codegen: s/FILE_MEMORY_GLOBAL/FILE_MEMORY_BUFFER/
...0; >> break; >> case FILE_MEMORY_LOCAL: code[1] = 0x7a800000; code[0] = 0x00000002; >> break; >> case FILE_MEMORY_SHARED: >> code[0] = 0x00000002; >> @@ -1678,7 +1678,7 @@ CodeEmitterGK110::emitSTORE(const Instruction *i) >> >> srcId(i->src(1), 2); >> srcId(i->src(0).getIndirect(0), 10); >> - if (i->src(0).getFile() == FILE_MEMORY_GLOBAL && >> + if (i->src(0).getFile() == FILE_MEMORY_BUFFER && >> i->src(0).isIndirect(0) && >> i->g...
2014 Apr 04
2
[PATCH 1/2] nvc0: add support for texture gather
...case OP_TXB: code[1] |= 0x2000; break; case OP_TXL: code[1] |= 0x3000; break; case OP_TXF: break; - case OP_TXG: break; // XXX + case OP_TXG: break; case OP_TXD: break; case OP_TXLQ: break; default: @@ -1052,7 +1060,7 @@ CodeEmitterGK110::emitTEX(const TexInstruction *i) srcId(i->src(0), 10); srcId(i, src1, 23); - // if (i->op == OP_TXG) code[0] |= i->tex.gatherComp << 5; + if (i->op == OP_TXG) code[1] |= i->tex.gatherComp << 13; // texture target: code[1] |= (i->tex.target.isCube() ? 3 : (i->tex.target.getDim() - 1))...
2013 Jul 28
10
btrfs qgroup assign -> "ERROR: bad relation requested"
I''m trying to use this feature of qgroup: btrfs qgroup assign <srcid> <destid> <path> Assigns the lower level qgroup src to the higher level qgroup dest in the btrfs found in <path>. It is used to build qgroup hierarchies. However, I fail to understand how this feature should work, and I''m getting "ERROR: bad relation...
2017 Mar 26
5
[PATCH v5 0/5] nvc0/ir: add support for MAD/FMA PostRALoadPropagation
was "nv50/ir: PostRaConstantFolding improvements" before. nothing really changed from the last version, just minor things. Karol Herbst (5): nv50/ir: restructure and rename postraconstantfolding pass nv50/ir: implement mad post ra folding for nvc0+ gk110/ir: add LIMM form of mad gm107/ir: add LIMM form of mad nv50/ir: also do PostRaLoadPropagation for FMA
2011 Oct 06
26
[PATCH v0 00/18] btfs: Subvolume Quota Groups
This is a first draft of a subvolume quota implementation. It is possible to limit subvolumes and any group of subvolumes and also to track the amount of space that will get freed when deleting snapshots. The current version is functionally incomplete, with the main missing feature being the initial scan and rescan of an existing filesystem. I put some effort into writing an introduction into
2017 Oct 30
3
[locking/paravirt] static_key_disable_cpuslocked(): static key 'virt_spin_lock_key+0x0/0x20' used before call to jump_label_init()
...C sbridge: Seeking for: PCI ID 8086:2fb9 [ 34.208112] EDAC sbridge: Seeking for: PCI ID 8086:2fbb [ 34.208116] EDAC sbridge: Seeking for: PCI ID 8086:2fbb [ 34.208120] EDAC sbridge: Seeking for: PCI ID 8086:2fbb [ 34.208385] EDAC MC0: Giving out device to module sb_edac.c controller Haswell SrcID#1_Ha#0: DEV 0000:ff:12.0 (INTERRUPT) [ 34.208500] EDAC MC1: Giving out device to module sb_edac.c controller Haswell SrcID#0_Ha#0: DEV 0000:7f:12.0 (INTERRUPT) [ 34.208681] EDAC MC2: Giving out device to module sb_edac.c controller Haswell SrcID#1_Ha#1: DEV 0000:ff:12.4 (INTERRUPT) [ 34.20906...
2017 Oct 30
3
[locking/paravirt] static_key_disable_cpuslocked(): static key 'virt_spin_lock_key+0x0/0x20' used before call to jump_label_init()
...C sbridge: Seeking for: PCI ID 8086:2fb9 [ 34.208112] EDAC sbridge: Seeking for: PCI ID 8086:2fbb [ 34.208116] EDAC sbridge: Seeking for: PCI ID 8086:2fbb [ 34.208120] EDAC sbridge: Seeking for: PCI ID 8086:2fbb [ 34.208385] EDAC MC0: Giving out device to module sb_edac.c controller Haswell SrcID#1_Ha#0: DEV 0000:ff:12.0 (INTERRUPT) [ 34.208500] EDAC MC1: Giving out device to module sb_edac.c controller Haswell SrcID#0_Ha#0: DEV 0000:7f:12.0 (INTERRUPT) [ 34.208681] EDAC MC2: Giving out device to module sb_edac.c controller Haswell SrcID#1_Ha#1: DEV 0000:ff:12.4 (INTERRUPT) [ 34.20906...
2014 Jan 13
20
[PATCH 00/19] nv50: add sampler2DMS/GP support to get OpenGL 3.2
OK, so there's a bunch of stuff in here. The geometry stuff is based on the work started by Bryan Cain and Christoph Bumiller. Patches 01-12: Add support for geometry shaders and fix related issues Patches 13-14: Make it possible for fb clears to operate on texture attachments with an explicit layer set (as is allowed in gl 3.2). Patches 15-17: Make ARB_texture_multisample work