search for: _object

Displaying 20 results from an estimated 24 matches for "_object".

Did you mean: object
2016 Nov 02
0
[PATCH v3 01/15] core: constify nv*_printk macros
...rm/nouveau/include/nvkm/core/client.h +++ b/drm/nouveau/include/nvkm/core/client.h @@ -37,8 +37,8 @@ int nvkm_client_notify_put(struct nvkm_client *, int index); /* logging for client-facing objects */ #define nvif_printk(o,l,p,f,a...) do { \ - struct nvkm_object *_object = (o); \ - struct nvkm_client *_client = _object->client; \ + const struct nvkm_object *_object = (o); \ + const struct nvkm_client *_client = _object->client; \ if (_client-...
2016 Dec 13
0
[PATCH v2 1/15] core: constify nv*_printk macros
...rm/nouveau/include/nvkm/core/client.h +++ b/drm/nouveau/include/nvkm/core/client.h @@ -37,8 +37,8 @@ int nvkm_client_notify_put(struct nvkm_client *, int index); /* logging for client-facing objects */ #define nvif_printk(o,l,p,f,a...) do { \ - struct nvkm_object *_object = (o); \ - struct nvkm_client *_client = _object->client; \ + const struct nvkm_object *_object = (o); \ + const struct nvkm_client *_client = _object->client; \ if (_client-...
2008 May 28
1
[Bug 15962] New: Crash with flashblock
...9. Flashblock is vesrion 1.5.6a (unstable). It can be downloaded from http://flashblock.mozdev.org/ "firefox -g" gives following backtrace: about:blank is either a broken URL or Swfdec can't parse it Program received signal SIGSEGV, Segmentation fault. 0x00000031b100d584 in IA__g_object_unref (_object=<value optimized out>) at gobject.c:1742 1742 g_return_if_fail (G_IS_OBJECT (object)); Missing separate debuginfos, use: debuginfo-install a52dec.x86_64 faac.x86_64 faad2.x86_64 ffmpeg.x86_64 gsm.x86_64 gstreamer-ffmpeg.x86_64 gstreamer-plugins-ugly.x86_64 keyutils.x86_64...
2019 May 06
0
[PATCH v4 00/19] Share TTM code among DRM framebuffer drivers
...dedicated video memory. It further > converts the respective drivers to the generic code. The shared code > is basically the same implementation as the one copied among individual > drivers. > > The patch set contains two major changes: first, it introduces > |struct drm_gem_vram_object| and helpers (GEM VRAM). It's a GEM object > that is backed by VRAM. The type's purpose is somewhat similar to > |struct drm_gem_{cma, shmem}_object|: it provides an commom implementation > that handles all the basic cases. Second, the patch set introduces > |struct drm_vram_mm|...
2015 Oct 10
0
How to fix Failed to find attribute in schema for attrid in replPropertyMetaData
...have > some problem from samba4 DC to win2003 DC. I can run > > samba-tool drs showrepl > > without error. But in log.samba it can found many message like: > > [2015/10/09 12:53:11.562088, 0] > ../source4/rpc_server/drsuapi/getncchanges.c:259(get_nc_changes_build > _object) > ../source4/rpc_server/drsuapi/getncchanges.c:259: Failed to find > attribute in schema for attrid 33816623 mentioned in > replPropertyMetaData of CN=officeuser,OU=MailUsers,DC=mydomain,DC=org > > I can't just delete the user, and don't know how to edit > replProperty...
2015 Oct 09
2
How to fix Failed to find attribute in schema for attrid in replPropertyMetaData
...from win2003 DC to samba4 DC was success. But have some problem from samba4 DC to win2003 DC. I can run samba-tool drs showrepl without error. But in log.samba it can found many message like: [2015/10/09 12:53:11.562088, 0] ../source4/rpc_server/drsuapi/getncchanges.c:259(get_nc_changes_build_object) ../source4/rpc_server/drsuapi/getncchanges.c:259: Failed to find attribute in schema for attrid 33816623 mentioned in replPropertyMetaData of CN=officeuser,OU=MailUsers,DC=mydomain,DC=org I can't just delete the user, and don't know how to edit replPropertyMetaData. I think this error c...
2011 Apr 06
1
Time to fix PartialRenderer#partial_path
For the longest time PartialRenderer#partial_path has prefixed the prefix of the current controller when it is nested in a module. This hasn''t been a problem (because nesting controllers wasn''t that common) but with 3.1 striving for better engine support, this problem is now larger because all of your controllers for an engine will be nested and it makes doing <%= render
2016 Dec 06
9
[PATCH 0/8] Falcon library
This was the first step of the secure boot refactoring - as Ben asked for some fixes, I now submit it as its own series to make it easier to review (and also because rebasing secure boot on top of this takes time and I don't want to do it until this is validated!). This series attempts to factorize the duplicate falcon-related code into a single library, using the existing nvkm_falcon
2019 Apr 08
0
[PATCH 00/15] Share TTM code among framebuffer drivers
...th dedicated video memory. It further > converts the respective drivers to the generic code. The shared code > is basically the same implementation as the one copied among individual > drivers. > > The patch set contains two major changes: first, it introduces > |struct drm_gem_ttm_object| and helpers. It's a GEM object that is > backed by TTM-managed memory. The type's purpose is somewhat similar > to |struct drm_gem_{cma, shmem}_object|. Second, the patch set > introduces |struct drm_simple_ttm| (for the lack of a better name) and > helpers. It's an impleme...
2016 Dec 13
15
[PATCH v2 0/15] Falcon library
This was the first step of the secure boot refactoring - as Ben asked for some fixes, I now submit it as its own series to make it easier to review (and also because rebasing secure boot on top of this takes time and I don't want to do it until this is validated!). This series attempts to factorize the duplicate falcon-related code into a single library, using the existing nvkm_falcon
2006 Feb 26
0
Review of Black, Ruby for Rails, Chapter 4
...t that is mentioned more than once in the chapter is how a single word by itself ("barewords" as referred to by the author) can be either references or method calls, assuming they aren''t keywords. That transparency hearkens back to Eiffel (or maybe just Bertrand Meyer''s _Object-Oriented Software Construction_ book, and is one of the truly cool (and confusing) things about Ruby. In conclusion, this chapter is a "back to basics" chapter, introducing OO programming to a novice audience. If that describes you, it''s great. If not, there are still inter...
2019 May 15
0
[PATCH v5 00/20] Share TTM code among DRM framebuffer drivers
...dedicated video memory. It further > converts the respective drivers to the generic code. The shared code > is basically the same implementation as the one copied among individual > drivers. > > The patch set contains two major changes: first, it introduces > |struct drm_gem_vram_object| and helpers (GEM VRAM). It's a GEM object > that is backed by VRAM. The type's purpose is somewhat similar to > |struct drm_gem_{cma, shmem}_object|: it provides an commom implementation > that handles all the basic cases. Second, the patch set introduces > |struct drm_vram_mm|...
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
...unction(iterator) { - $R(0, this, true).each(iterator); + times: function(iterator, context) { + $R(0, this, true).each(iterator, context); return this; }, @@ -1010,7 +1020,9 @@ var Hash = Class.create(Enumerable, (function() { }, get: function(key) { - return this._object[key]; + // simulating poorly supported hasOwnProperty + if (this._object[key] !== Object.prototype[key]) + return this._object[key]; }, unset: function(key) { @@ -1050,14 +1062,14 @@ var Hash = Class.create(Enumerable, (function() { }, toQueryString: functio...
2016 Oct 11
10
[PATCH 0/8] Secure Boot refactoring
Hi everyone, Apologies for the big patchset. This is a rework of the secure boot code that moves the building of the blob into its own set of source files (and own hooks), making the code more flexible and (hopefully) easier to understand as well. This rework is needed to support more signed firmware for existing and new chips. Since the firmwares in question are not available yet I cannot send
2016 Oct 27
15
[PATCH v2 00/14] Secure Boot refactoring
This is a rework of the secure boot code that moves the building of the blob into its own set of source files (and own hooks), making the code more flexible and (hopefully) easier to understand as well. This rework is needed to support more signed firmware for existing and new chips. Since the firmwares in question are not available yet I cannot send the code to manage then, but hopefully the
2016 Nov 02
15
[PATCH v3 00/15] Secure Boot refactoring
This is a rework of the secure boot code that moves the building of the blob into its own set of source files (and own hooks), making the code more flexible and (hopefully) easier to understand as well. This rework is needed to support more signed firmware for existing and new chips. Since the firmwares in question are not available yet I cannot send the code to manage then, but hopefully the
2009 Jul 20
9
Upgrade server to run on Rails 2.3.2/F11
Note that one of the 8 patches (#6) will be sent separately in reply to this email, as some of the replaced lines are too long, so git won't let me send the email. However, there is nothing wrong with that patch, and it should be applied in the sequence listed below. Note also that I assume this will be tested on a clean f11 install, rather than an upgrade of an existing ovirt server
2016 Nov 21
33
[PATCH v4 0/33] Secure Boot refactoring / signed PMU firmware support for GM20B
This revision includes initial signed PMU firmware support for GM20B (Tegra X1). This PMU code will also be used as a basis for dGPU signed PMU firmware support. With the PMU code, the refactoring of secure boot should also make more sense. ACR (secure boot) support is now separated by the driver version it originates from. This separation allows to run any version of the ACR on any chip,
2019 May 06
25
[PATCH v4 00/19] Share TTM code among DRM framebuffer drivers
...e for simple framebuffers with dedicated video memory. It further converts the respective drivers to the generic code. The shared code is basically the same implementation as the one copied among individual drivers. The patch set contains two major changes: first, it introduces |struct drm_gem_vram_object| and helpers (GEM VRAM). It's a GEM object that is backed by VRAM. The type's purpose is somewhat similar to |struct drm_gem_{cma, shmem}_object|: it provides an commom implementation that handles all the basic cases. Second, the patch set introduces |struct drm_vram_mm| and helpers (VRAM M...
2019 May 06
25
[PATCH v4 00/19] Share TTM code among DRM framebuffer drivers
...e for simple framebuffers with dedicated video memory. It further converts the respective drivers to the generic code. The shared code is basically the same implementation as the one copied among individual drivers. The patch set contains two major changes: first, it introduces |struct drm_gem_vram_object| and helpers (GEM VRAM). It's a GEM object that is backed by VRAM. The type's purpose is somewhat similar to |struct drm_gem_{cma, shmem}_object|: it provides an commom implementation that handles all the basic cases. Second, the patch set introduces |struct drm_vram_mm| and helpers (VRAM M...