search for: _log

Displaying 20 results from an estimated 38 matches for "_log".

Did you mean: 1_log
2024 Jul 30
1
[PATCH 2/2] [v6] drm/nouveau: expose GSP-RM logging buffers via debugfs
...ath> is the PCI ID of the GPU (e.g. 0000:65:00.0)." I'll make the change, but AFAIK non-PCI versions of Turing+ GPUs do not exist. Even the GH100, which uses an nvlink data connection between GPU to the ARM host, still uses PCI for control. > > > > +/** > > + * nvif_log - structure for tracking logging buffers > > + * @entry: an entry in a list of struct nvif_logs > > + * @shutdown: pointer to function to call to clean up > > + * > > + * Structure used to track logging buffers so that they can be cleaned > > up > > + * when the...
2013 Dec 09
1
[PATCH] sysprep: remove more anaconda and tuned logs (RHBZ#1039540).
--- sysprep/sysprep_operation_logfiles.ml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sysprep/sysprep_operation_logfiles.ml b/sysprep/sysprep_operation_logfiles.ml index 8994af9..3055ca4 100644 --- a/sysprep/sysprep_operation_logfiles.ml +++ b/sysprep/sysprep_operation_logfiles.ml @@ -41,6 +41,7 @@ let globs = List.sort...
2024 Jul 30
1
[PATCH 2/2] [v6] drm/nouveau: expose GSP-RM logging buffers via debugfs
...; NV_VGPU_MSG_EVENT_UCODE_LIBOS_PRINT RPCs are ignored. > > A simple way to test the buffer migration feature is to have > nvkm_gsp_init() return an error code. > > Signed-off-by: Timur Tabi <ttabi at nvidia.com> > > v6: > rebased onto drm-misc-next > renamed nvif_log.head to entry > only one space after . > added NVIF_LOGS_DECLARE > added nvif_log_shutdown > documented NV_GSP_MSG_EVENT_UCODE_LIBOS_CLASS_PMU > removed the "See xxx" comments > replaced camelcase with lowercase in r535_gsp_msg_libos_print > replaced 0x100c with NV_VG...
2024 Jul 31
1
[PATCH 2/2] [v6] drm/nouveau: expose GSP-RM logging buffers via debugfs
.... And within a module you can register N drivers, including zero. It's just that in the typical application, you register a driver in module_init() and unregister it in module_exit(). > > > + * backing resources, such as logging buffers. > > > + */ > > > +struct nvif_log { > > > + struct list_head entry; > > > + void (*shutdown)(struct nvif_log *log); > > > +}; > > > + > > > +#define NVIF_LOGS_DECLARE(_log) \ > > > + struct nvif_log _log = { LIST_HEAD_INIT(_log.entry) } > > > > If you declare this a...
2024 Jul 29
1
[PATCH 2/2] [v6] drm/nouveau: expose GSP-RM logging buffers via debugfs
...reated if debugfs is available. Otherwise, the NV_VGPU_MSG_EVENT_UCODE_LIBOS_PRINT RPCs are ignored. A simple way to test the buffer migration feature is to have nvkm_gsp_init() return an error code. Signed-off-by: Timur Tabi <ttabi at nvidia.com> v6: rebased onto drm-misc-next renamed nvif_log.head to entry only one space after . added NVIF_LOGS_DECLARE added nvif_log_shutdown documented NV_GSP_MSG_EVENT_UCODE_LIBOS_CLASS_PMU removed the "See xxx" comments replaced camelcase with lowercase in r535_gsp_msg_libos_print replaced 0x100c with NV_VGPU_MSG_EVENT_UCODE_LIBOS_PRINT adde...
2005 Apr 12
2
Transactions, audit trails, and logging (fairly long)
...t. How I handle updates now is have a DbTransactions model that contains has_many relationships to all other tables. I create a DbTransaction, add whatever records I am creating or updating and save the DbTransaction item. It works fine. As far as logging goes I am going to add <tablename>_log tables for all of my normal tables and store snapshots of each record every time it changes. The thought in the back of my mind is that I can somehow point ActiveRecord at my log tables, add some code to specify the time period, and reuse all my regular code to see my database exactly as it was...
2010 Oct 18
1
Editing DLL Sources and log to file
I've tried to edit few DLLs in wine, inserting my own piece of code to C source and I have a small problem. After compiling everything is OK.I've added: Code: void _log(res1,res2) { ... } Problem is when _log try to write data to file: Code: fopen("log.bin","ab");//Write binary, append after write file is never created... so I'm a little confused... More problems is where file will be writed (logical for me will be current exe...
2012 Jan 03
3
phpmyadmin issue
Greetings, I have installed phpmyadmin on a Centos 6.2 box. When I try to access it through http://localhost/phpmyadmin it is giving me a 403 forbidden error any clues? TIA. -- Regards, Rajagopal
2012 Sep 19
0
[PATCH] sysprep: remove apache2, audit and ntp in logfile operation
Add more entries to the dump ground of logfile patterns. Signed-off-by: Olaf Hering <olaf at aepfle.de> diff --git a/sysprep/sysprep_operation_logfiles.ml b/sysprep/sysprep_operation_logfiles.ml index 5e6ce7f..a2b1585 100644 --- a/sysprep/sysprep_operation_logfiles.ml +++ b/sysprep/sysprep_operation_logfiles.ml @@ -38,6 +38,10 @@ let globs = List.sort compare [ "/var/log/spooler*"; "/var/log/tallylog*"; "/var...
2024 Jul 29
2
[PATCH 1/2] [v2] drm/nouveau: retain device pointer in nvkm_gsp_mem object
Store the struct device pointer used to allocate the DMA buffer in the nvkm_gsp_mem object. This allows nvkm_gsp_mem_dtor() to release the buffer without needing the nvkm_gsp. This is needed so that we can retain DMA buffers even after the nvkm_gsp object is deleted. Signed-off-by: Timur Tabi <ttabi at nvidia.com> v2: added get/put_device calls ---
2012 Apr 27
2
[PATCH 1/2] sysprep: remove the logfiles configured by logrotate
Remove the logfiles configured by /etc/logrotate.d/*. Omit the logfile of "samba" and "sssd" which we removed them separately . Signed-off-by: Wanlong Gao <gaowanlong at cn.fujitsu.com> --- sysprep/sysprep_operation_logfiles.ml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/sysprep/sysprep_operation_logfiles.ml b/sysprep/sysprep_operation_logfiles.ml index 2ad3726..cf72803 100644 --- a/sysprep/sysprep_operation_logfiles.ml +++ b/sysprep/sysprep_operation_logfiles.ml @@ -38,6 +38,27 @@...
2007 Feb 02
1
Problem installing R-2.4.1 on AIX 5.3
...'/cineca/prod/Bioinf/R-2.4.1/modules//lapack.so': rtld: 0712-001 Symbol _xldipow/cineca/prod/Bioinf/R-2.4.1/lib/libRlapack.so was referenced from module /cineca/prod/Bioinf/R-2.4.1/lib/libRlapack.so(), but a runtime definition of the symbol was not found. rtld: 0712-001 Symbol _log was referenced from module /cineca/prod/Bioinf/R-2.4.1/lib/libRlapack.so(), but a runtime definition of the symbol was not found. rtld: 0712-001 Symbol _sqrt was referenced from module /cineca/prod/Bioinf/R-2.4.1/lib/libRlapack.so(), but a runtime definition of the symbol wa...
2007 Nov 08
2
time on polycom 501
I have a polycom 501 phone that is 1 hour off now. Before last sunday (time change) the time was fine. <?xml version="1.0" standalone="yes"?> <PHONE_CONFIG> <OVERRIDES _.0x20._log.level.change.sip="0" tcpIpApp.sntp.daylightSavings.stop.date="4" tcpIpApp.sntp.daylightSavings.stop.month="11" tcpIpApp.sntp.daylightSavings.start.date="8" tcpIpApp.sntp.daylightSavings.start.month="3" tcpIpApp.sntp.gmtOffset="-18000"...
2006 Oct 19
0
[694] trunk/wxruby2/doc/textile: Added back the logging classes which were over-zealously removed when
...sp&nbsp&nbsp2006-10-19 18:20:50 UTC (rev 694) </span><span class="lines">@@ -1,7 +1,11 @@ </span><span class="cx"> h1(#wxlog). Wx::Log </span><span class="cx"> </span><del>-Log class defines the interface for the _log targets_ used by Widgets -logging functions as explained in the "Log overview":logoverview.html. </del><ins>+Log class defines the interface for the _log targets_ used by wxRuby. In +wxRuby, only the class LogTextCtrl is generally of interest, providing +in-application debuggi...
2013 Sep 05
6
[PATCH 1/5] sysprep: remove /var/log/audit/audit.log
audit.log is already included in /var/log/audit/*. Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com> --- sysprep/sysprep_operation_logfiles.ml | 1 - 1 file changed, 1 deletion(-) diff --git a/sysprep/sysprep_operation_logfiles.ml b/sysprep/sysprep_operation_logfiles.ml index 842b855..cdfe8fc 100644 --- a/sysprep/sysprep_operation_logfiles.ml +++ b/sysprep/sysprep_operation_logfiles.ml @@ -40,7 +40,6 @@ let globs = List.sort comp...
2024 Jun 18
1
[PATCH 2/2] [v5] drm/nouveau: expose GSP-RM logging buffers via debugfs
...not needed for normal GSP-RM operation, it is only created if debugfs is available. Otherwise, the NV_VGPU_MSG_EVENT_UCODE_LIBOS_PRINT RPCs are ignored. Signed-off-by: Timur Tabi <ttabi at nvidia.com<mailto:ttabi at nvidia.com>> --- v5: rebased to drm-misc-next repaced nvkm_gsp_log with nvif_log minor rearrangement of some code drivers/gpu/drm/nouveau/include/nvif/log.h | 32 ++ .../gpu/drm/nouveau/include/nvkm/subdev/gsp.h | 13 + drivers/gpu/drm/nouveau/nouveau_drm.c | 19 + .../gpu/drm/nouveau/nvkm/subdev/gsp/r535.c | 360 +++++++++++++++++- 4 file...
2024 Oct 30
2
[PATCH 2/2] [v9] drm/nouveau: expose GSP-RM logging buffers via debugfs
...MSG_EVENT_UCODE_LIBOS_PRINT RPCs are ignored. A simple way to test the buffer migration feature is to have nvkm_gsp_init() return an error code. Signed-off-by: Timur Tabi <ttabi at nvidia.com> --- v9: - rebased to drm-misc-next - move nvkm_gsp logging dentries into debugfs struct - add gsp_logging_debugfs_root and always create the root dentry - remove root struct in r535.c, along with mutex code - rename dir to dent - add missing calls to create_debugfs helper - r535_gsp_copy_log was not calling i_size_write drivers/gpu/drm/nouveau/include/nvif/log.h | 53 +++ .../gpu/drm/nouveau/...
2020 Aug 13
2
2.3.11.3 on 32bit platforms
HI! I'm trying to update openSUSE package on OBS [1] which builds for various OS versions and hardware platforms. To me it seems that a test fails on 32bit platforms: Info: invalid token 3: structure length disagrees with data size test rpa ..................................... : ok Info: invalid NTLM response: buffer length out of bounds test ntlm ............................: ok 1 / 86
2020 Aug 13
2
2.3.11.3 on 32bit platforms
...stroeder:branches:server:mail/dovecot23 > > Can you provide full output for the test suite so we can tell what actually failed? You can download full log of e.g. i586 build from OBS here: https://build.opensuse.org/build/home:stroeder:branches:server:mail/openSUSE_Tumbleweed/i586/dovecot23/_log Excerpt of failed test: [ 576s] test-mech.c:370: Assert(#1) failed: strcmp(test_case->username,username) [ 576s] "testuser" != NULL [ 576s] test-mech.c:380: Assert(#1) failed: request->failed == FALSE [ 576s] auth mech APOP 2/84 ...........................................
2020 Aug 27
1
debian 10 package /w ssl?
hi, I've installed icecast2 from http://download.opensuse.org/repositories/multimedia:/xiph/Debian_10/ because I need url_auth. But I also need SSL, but the proviced icecast doesn't have it: "No SSL capability" Why?? Do I really need to recompile it? Should be default, imho... no? bests, u