search for: 0x3f

Displaying 20 results from an estimated 637 matches for "0x3f".

Did you mean: 0x0f
2009 Nov 14
2
[LLVMdev] Very slow performance of lli on x86
...32, 0x33, 0x35 }, { 0x32, 0x33, 0x34, 0x36 }, { 0x33, 0x34, 0x35, 0x37 }, { 0x34, 0x35, 0x36, 0x38 }, { 0x35, 0x36, 0x37, 0x39 }, { 0x36, 0x37, 0x38, 0x3a }, { 0x37, 0x38, 0x39, 0x3b }, { 0x38, 0x39, 0x3a, 0x3c }, { 0x39, 0x3a, 0x3b, 0x3d }, { 0x3a, 0x3b, 0x3c, 0x3e }, { 0x3b, 0x3c, 0x3d, 0x3f }, { 0x3c, 0x3d, 0x3e, 0x40 }, { 0x3d, 0x3e, 0x3f, 0x41 }, { 0x3e, 0x3f, 0x40, 0x42 }, { 0x3f, 0x40, 0x41, 0x43 }, { 0x40, 0x41, 0x42, 0x44 }, { 0x41, 0x42, 0x43, 0x45 }, { 0x42, 0x43, 0x44, 0x46 }, { 0x43, 0x44, 0x45, 0x47 }, { 0x44, 0x45, 0x46, 0x48 }, { 0x45, 0x46, 0x47, 0x49 }, { 0x4...
2009 Nov 14
0
[LLVMdev] Very slow performance of lli on x86
...32, 0x33, 0x35 }, { 0x32, 0x33, 0x34, 0x36 }, { 0x33, 0x34, 0x35, 0x37 }, { 0x34, 0x35, 0x36, 0x38 }, { 0x35, 0x36, 0x37, 0x39 }, { 0x36, 0x37, 0x38, 0x3a }, { 0x37, 0x38, 0x39, 0x3b }, { 0x38, 0x39, 0x3a, 0x3c }, { 0x39, 0x3a, 0x3b, 0x3d }, { 0x3a, 0x3b, 0x3c, 0x3e }, { 0x3b, 0x3c, 0x3d, 0x3f }, { 0x3c, 0x3d, 0x3e, 0x40 }, { 0x3d, 0x3e, 0x3f, 0x41 }, { 0x3e, 0x3f, 0x40, 0x42 }, { 0x3f, 0x40, 0x41, 0x43 }, { 0x40, 0x41, 0x42, 0x44 }, { 0x41, 0x42, 0x43, 0x45 }, { 0x42, 0x43, 0x44, 0x46 }, { 0x43, 0x44, 0x45, 0x47 }, { 0x44, 0x45, 0x46, 0x48 }, { 0x45, 0x46, 0x47, 0x49 }, { 0x4...
2016 Mar 23
1
Clang/LLVM producing incomplete & erroneous debug information
...DW_AT_frame_base : 1 byte block: 57 (DW_OP_reg7 (rsp)) <b6> DW_AT_name : (indirect string, offset: 0xaf): main <ba> DW_AT_decl_file : 1 <bb> DW_AT_decl_line : 16 <bc> DW_AT_prototyped : 1 <bc> DW_AT_type : <0x3f> <c0> DW_AT_external : 1 <c0> Unknown AT value: 3fe1: 1 <2><c0>: Abbrev Number: 8 (DW_TAG_formal_parameter) <c1> DW_AT_location : 0x23 (location list) <c5> DW_AT_name : (indirect string, offset: 0xc2): argc <c9&...
2014 Mar 24
2
[PATCH 06/12] drm/nouveau/ibus: add GK20A support
...a.c b/drivers/gpu/drm/nouveau/core/subdev/ibus/nvea.c [...] > +#include <subdev/ibus.h> > + > +struct nvea_ibus_priv { > + struct nouveau_ibus base; > +}; > + > +static void > +nvea_ibus_init_priv_ring(struct nvea_ibus_priv *priv) > +{ > + nv_mask(priv, 0x137250, 0x3f, 0); > + > + nv_mask(priv, 0x000200, 0x20, 0); > + udelay(20); usleep_range()? > +static void > +nvea_ibus_intr(struct nouveau_subdev *subdev) > +{ [...] > + /* Acknowledge interrupt */ > + nv_mask(priv, 0x12004c, 0x2, 0x2); > + > + while (--retry >= 0) { > +...
2014 Apr 02
1
[PATCH 06/12] drm/nouveau/ibus: add GK20A support
...ubdev/ibus.h> >>> + >>> +struct nvea_ibus_priv { >>> + struct nouveau_ibus base; >>> +}; >>> + >>> +static void >>> +nvea_ibus_init_priv_ring(struct nvea_ibus_priv *priv) >>> +{ >>> + nv_mask(priv, 0x137250, 0x3f, 0); >>> + >>> + nv_mask(priv, 0x000200, 0x20, 0); >>> + udelay(20); >> >> usleep_range()? > > Sure. > >> >>> +static void >>> +nvea_ibus_intr(struct nouveau_subdev *subdev) >>> +{ >> [...] >>> +...
2014 Mar 26
1
[PATCH 09/12] drm/nouveau/graph: pad firmware code at load time
...aph_priv *priv, u32 fuc_base, > nv_wr32(priv, fuc_base + 0x0188, i >> 6); > nv_wr32(priv, fuc_base + 0x0184, code->data[i]); > } > + > + /* code must be padded to 0x40 */ > + for (; i < (((code->size / 4) + 0x3f) & ~0x3f); i++) "for (; i & 0x3f; i++)" would work just as well :) > + nv_wr32(priv, fuc_base + 0x0184, 0); > } > > static void > -- > 1.9.1 > > _______________________________________________ > Nouveau mailing list > Nouveau at lists...
2018 Sep 08
0
[PATCH] maxwell,pascal: add scheduling data to shaders
...s(+), 141 deletions(-) diff --git a/src/shader/exac8nv110.fp b/src/shader/exac8nv110.fp index ce78036..7537780 100644 --- a/src/shader/exac8nv110.fp +++ b/src/shader/exac8nv110.fp @@ -25,23 +25,24 @@ NV110FP_Composite_A8[] = { }; #else -sched (st 0x0) (st 0x0) (st 0x0) +sched (st 0xf wr 0x0 wt 0x3f) (st 0xd wr 0x0 wt 0x1) (st 0x1 wr 0x0 wt 0x1) ipa pass $r0 a[0x7c] 0x0 0x0 0x1 mufu rcp $r0 $r0 ipa $r3 a[0x94] $r0 0x0 0x1 -sched (st 0x0) (st 0x0) (st 0x0) +sched (st 0xf wr 0x1) (st 0x2 wr 0x1 rd 0x0 wt 0x3) (st 0x1 wr 0x0 wt 0x1) ipa $r2 a[0x90] $r0 0x0 0x1 tex nodep $r1 $r2 0x0 0x1 t2d 0...
2007 Jun 13
2
HTB deadlock
...0x47/0x4f [<c01272b1>] del_timer_sync+0xe/0x14 [<f8b8a85b>] htb_destroy+0x20/0x7b [sch_htb] [<c028f196>] qdisc_destroy+0x44/0x8d [<f8b89645>] htb_destroy_class+0xd0/0x12d [sch_htb] [<f8b895c7>] htb_destroy_class+0x52/0x12d [sch_htb] [<f8b8a87a>] htb_destroy+0x3f/0x7b [sch_htb] [<c028f196>] qdisc_destroy+0x44/0x8d [<f8b89645>] htb_destroy_class+0xd0/0x12d [sch_htb] [<f8b895c7>] htb_destroy_class+0x52/0x12d [sch_htb] [<f8b8a87a>] htb_destroy+0x3f/0x7b [sch_htb] [<c028f196>] qdisc_destroy+0x44/0x8d [<c0290ba9>] tc_get...
2007 Mar 31
2
xattrs problems on Mac OSX with resource forks
..., 0000, 0000, 0x1c, 0000, 0x6e, 0000, 0x03, 0x75, 0x74, 0x66, 0x38, 0000, 0000, 0000, 0x22, 0x75, 0x74, 0x78, 0x74, 0000, 0000, 0000, 0x2e, 0x54, 0x45, 0x58, 0x54, 0000, 0000, 0000, 0x3a, 0x64, 0x72, 0x61, 0x67, 0000, 0000, 0000, 0x46, 0x01, 0000, 0xff, 0xff, 0000, 0000, 0000, 0000, 0000, 0x3f, 0xfa, 0x94, 0x01, 0000, 0xff, 0xff, 0000, 0000, 0000, 0x0b, 0000, 0x3f, 0xfa, 0x98, 0x01, 0000, 0xff, 0xff, 0000, 0000, 0000, 0x1d, 0000, 0x3f, 0xfa, 0x9c, 0000, 0x80, 0xff, 0xff, 0000, 0000, 0000, 0x28, 0000, 0x3f, 0xfa, 0x90> /Users/alan/Desktop/folder1/file1 com.apple.FinderIn...
2006 Jun 26
5
[Bug 339] Kernel panic on bridged packet
...80000000 c0359b4d c030d562 00000000 c0475e9c defee000 00000000 c0359b4d 00000000 00000000 c0475e9c Call Trace: [<c0345127>] ip_nat_in+0x29/0x88 [<c0359b4d>] br_nf_pre_routing_finish+0x0/0x2c0 [<c0359b4d>] br_nf_pre_routing_finish+0x0/0x2c0 [<c030d562>] nf_iterate+0x3f/0x6d [<c0359b4d>] br_nf_pre_routing_finish+0x0/0x2c0 [<c030d5d7>] nf_hook_slow+0x47/0xba [<c0359b4d>] br_nf_pre_routing_finish+0x0/0x2c0 [<c035685b>] br_handle_frame_finish+0x0/0xca [<c035a446>] br_nf_pre_routing+0x35d/0x37a [<c035685b>] br_handle_frame_fin...
2012 May 03
0
Strange situation with openssl and kernel
...00000008006e665 May 2 22:48:20 vmail kernel: Call Trace: May 2 22:48:20 vmail kernel: [<ffffffff8006ecd9>] do_gettimeofday+0x40/0x90 May 2 22:48:20 vmail kernel: [<ffffffff8005a412>] getnstimeofday+0x10/0x29 May 2 22:48:20 vmail kernel: [<ffffffff8001558e>] sync_buffer+0x0/0x3f May 2 22:48:20 vmail kernel: [<ffffffff800637de>] io_schedule+0x3f/0x67 May 2 22:48:20 vmail kernel: [<ffffffff800155c9>] sync_buffer+0x3b/0x3f May 2 22:48:20 vmail kernel: [<ffffffff80063a0a>] __wait_on_bit+0x40/0x6e May 2 22:48:20 vmail kernel: [<ffffffff8001558e>]...
2012 Jun 05
0
Errors in dmesg
...ffff810c3f574600 000000000000000a ffff810c3f88f7e0 ffff810c3e843860 0011dd0b95e546c6 000000000000a1a4 ffff810c3f88f9c8 0000000400074c00 Call Trace: [<ffffffff8006ecd9>] do_gettimeofday+0x40/0x90 [<ffffffff8005a3ad>] getnstimeofday+0x10/0x29 [<ffffffff800155a2>] sync_buffer+0x0/0x3f [<ffffffff800637de>] io_schedule+0x3f/0x67 [<ffffffff800155dd>] sync_buffer+0x3b/0x3f [<ffffffff80063a0a>] __wait_on_bit+0x40/0x6e [<ffffffff800155a2>] sync_buffer+0x0/0x3f [<ffffffff80063aa4>] out_of_line_wait_on_bit+0x6c/0x78 [<ffffffff800a34d6>] wake_bit...
2014 Feb 02
1
[RFC 13/16] drm/nouveau/ibus: add GK20A support
...t;subdev/ibus.h> > + > +struct nvea_ibus_priv { > + struct nouveau_ibus base; > +}; > + > +static void > +nvea_ibus_init_priv_ring(struct nvea_ibus_priv *priv) > +{ > + u32 data; > + > + data = nv_rd32(priv, 0x137250); > + data &= (~0x3f); > + nv_wr32(priv, 0x137250, data); nv_mask(priv, 0x137250, 0x3f, 0) should do this, right? > + > + nv_mask(priv, 0x000200, 0x20, 0); > + udelay(20); > + nv_mask(priv, 0x000200, 0x20, 0x20); > + > + nv_wr32(priv, 0x12004c, 0x4); > + nv_...
2007 Feb 24
1
Storage/SCSI Error on our CentOS server
...9;dmesg' output, we'd appreciate if somebody could share and help us to identify what actually went wrong and how could fix it (if possible)? TIA. -Ikmal Dmesg output : =========================================== scsi4:0:0:0: Attempting to abort cmd 0000010082297a80: 0x28 0x0 0x0 0x0 0x1 0x3f 0x0 0x0 0x8 0x0 scsi4: At time of recovery, card was not paused >>>>>>>>>>>>>>>>>> Dump Card State Begins <<<<<<<<<<<<<<<<< scsi4: Dumping Card State at program address 0xc Mode 0x33 Card was pa...
2013 Jun 04
0
[PATCH] nouveau: Load firmware for BSP/VP engines on NV84-NV96, NVA0
...nv_wr32(device, 0x103d10, 0x1fffffff); /* ?? */ > + nv_wr32(device, 0x103d08, 0x0fffffff); /* ?? */ > + > + nv_wr32(device, 0x103d28, 0x90044); /* ?? */ > + nv_mask(device, 0x2090, 0xf0000000, 0x8 << 28); /* PFIFO.UNK90 */ > + nv_wr32(device, 0x103c20, 0x3f); /* INTR */ > + nv_wr32(device, 0x103d84, 0x3f); /* INTR_EN */ > + > + nv_debug(priv, "Loading firmware to address: 0x%llx\n", > + priv->gpu_fw->addr); > + > + for (i = 0; i < priv->fw_size / 4; i++) > + nv_w...
2007 Sep 13
0
3 commits - libswfdec/swfdec_as_function.c libswfdec/swfdec_as_initialize.as libswfdec/swfdec_as_initialize.h libswfdec/swfdec_as_object.c
...0x16, 0x1C, 0x96, 0x07, 0x00, - 0x07, 0x03, 0x00, 0x00, 0x00, 0x08, 0x06, 0x3D, 0x17, 0x96, 0x5F, 0x00, 0x08, 0x19, 0x08, 0x1A, - 0x06, 0x0A, 0xBF, 0x05, 0x40, 0x74, 0x57, 0x14, 0x8B, 0x08, 0x1B, 0x06, 0xB1, 0x6B, 0x02, 0x40, - 0x1F, 0x55, 0xB5, 0xBB, 0x08, 0x1C, 0x06, 0x42, 0x2E, 0xE6, 0x3F, 0xEC, 0x39, 0xFA, 0xFE, 0x08, - 0x1D, 0x06, 0x7B, 0xCB, 0xDB, 0x3F, 0x11, 0xE5, 0x26, 0x15, 0x08, 0x1E, 0x06, 0x47, 0x15, 0xF7, - 0x3F, 0xEF, 0x82, 0x2B, 0x65, 0x08, 0x1F, 0x06, 0xFB, 0x21, 0x09, 0x40, 0x11, 0x2D, 0x44, 0x54, - 0x08, 0x20, 0x06, 0x9E, 0xA0, 0xE6, 0x3F, 0xD1, 0x3B, 0x7F...
2006 Oct 03
1
a domain VTx with the VNIF does hang.
...18f92>] __printk_ratelimit+0x8f/0x95 [<e08a6316>] xennet_get_responses+0xca/0x31c [xen_vnif] [<c0103dc2>] do_IRQ+0x70/0x7a [<e08a6851>] netif_poll+0x1c/0x60v [xen_vnif] [<c0103dc2>] net_rx_action+0x35/0x7d [<c011c47d>] __do_softirq+0x38/0x3f [<c0103e94>] do_softirq+0x38/0x3f ======================= [<c0103dc2>] do_IRQ+0x70/0x7a [<c0102c1a>] common_interrupt+0x27/0x2b [<c014b5d8>] kmem_cache_free+0x27/0x2b [<c013dac4>] free_pgtables+0x31/0x63 [<c01421ab>] exit...
2009 Feb 26
0
Possible locking problem in DLM code
...240db5>] autoremove_wake_function+0x0/0x2e [<ffffffff8024b388>] trace_hardirqs_on_caller+0x115/0x138 [<ffffffffa028b65d>] dlm_thread+0x0/0x11fb [ocfs2_dlm] [<ffffffff80240acd>] kthread+0x47/0x73 [<ffffffff8046782f>] trace_hardirqs_on_thunk+0x3a/0x3f [<ffffffff8020cd3a>] child_rip+0xa/0x20 [<ffffffff8020c8bc>] restore_args+0x0/0x30 [<ffffffff80240a61>] kthreadd+0x177/0x19c [<ffffffff80240a86>] kthread+0x0/0x73 [<ffffffff8020cd30>] child_rip+0x0/0x20 [<ffffffffffffffff&gt...
2014 Apr 02
0
[PATCH 06/12] drm/nouveau/ibus: add GK20A support
...> [...] >> +#include <subdev/ibus.h> >> + >> +struct nvea_ibus_priv { >> + struct nouveau_ibus base; >> +}; >> + >> +static void >> +nvea_ibus_init_priv_ring(struct nvea_ibus_priv *priv) >> +{ >> + nv_mask(priv, 0x137250, 0x3f, 0); >> + >> + nv_mask(priv, 0x000200, 0x20, 0); >> + udelay(20); > > usleep_range()? Sure. > >> +static void >> +nvea_ibus_intr(struct nouveau_subdev *subdev) >> +{ > [...] >> + /* Acknowledge interrupt */ >> + nv_mask(p...
2013 Jan 03
2
3.8-rc2: EFI framebuffer lock inversion...
...ff812646e1>] fb_ioctl+0x41/0x50 [<ffffffff811209d7>] do_vfs_ioctl+0x97/0x580 [<ffffffff8112c49a>] ? fget_light+0x3da/0x4d0 [<ffffffff8155ad7b>] ? sysret_check+0x1b/0x56 [<ffffffff81120f0b>] sys_ioctl+0x4b/0x90 [<ffffffff8122c03e>] ? trace_hardirqs_on_thunk+0x3a/0x3f [<ffffffff8155ad56>] system_call_fastpath+0x1a/0x1f [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off --- [2] hda-intel 0000:01:00.1: Disabling via VGA-switcheroo hda-intel 0000:01:00.1: Cannot lock devices! VGA switcheroo: switched nouveau off nouveau [ DRM] suspending fbcon... ===...