similar to: Upgrade ocfs2 question?

Displaying 20 results from an estimated 110 matches similar to: "Upgrade ocfs2 question?"

2011 Jul 07
1
[LLVMdev] Sefault in llvm-mc when emitting an object file
Hello, I'm trying to use MC to assemble some code into a memory buffer. Whilst trying this, I ran into a segfault that I was able to reproduce using the llvm-mc tool (which makes me think it's not just me using the library incorrectly.) The bug looks like this (the binary is from a clean build of the 2.8 release): $ cat test/asm1.s movl %ebx, %eax $ ~/root/bin/llvm-mc --filetype=obj
2015 Jun 10
3
C5 : Firefox 38 bug
I displayed, as a web page, a list of search results created in PHP, from MySQL. Firefox prevents me looking at the web page's source coding. Right-click, view source, produces this display:- "Document Expired "This document is no longer available. "The requested document is not available in Firefox's cache. " As a security precaution, Firefox does not
2007 Aug 16
0
WERR_INVALID_NAME in printer migrate
Hello! I'm trying to migrate printer settings from a XP machine to my samba server but failed: [root@smbSrv ~] #net rpc printer migrate settings HPDJ3500 -S winXP --destination=smbSvr -U admin%password migrating printer settings for: [\\winXP\HPDJ3500] / [HPDJ3500] could not set printerdataex: WERR_INVALID_NAME I don't know what means "ERR_INVALID_NAME". Is invalid printer
2007 Jun 08
0
OCFS error
Hi, Before I describe the problem, I'll describe my environment. This is a development environment built over 1.5 yrs ago: * We have a 2 node Oracle RAC Cluster. * built on two Dell PowerEdge 1850 Servers (Intel(R) Xeon(TM) CPU 3.20GHz) * OS is RHEL3 U3 * Kernel 2.4.21-20.ELsmp * these 2 servers are attached to an EMC AX100 SAN via fibre channel * HBA (QLogic QLA6312 PCI to Fibre
2012 Nov 23
14
extended attributes wiredness
Hi, I am using kernel 3.7-rc6. I have written a test application for extended attributes and have for some folders a wired behaviour: #include <stdio.h> #include <string.h> #include <attr/xattr.h> char attrs[1024]; ssize_t attrslen; int i; char value[1024]; ssize_t valuelen; int main(int argc, char *argv[]) { if (argc != 2) { fprintf(stderr, "Syntax: testxattr
2008 Jun 06
2
[LLVMdev] Trouble with inline asm
Hi all, I'm having some trouble with inline asm expressions, more specifically how to create the right FunctionType for a given constraint set. So far it has worked well for inputs, but not for outputs. The inline asm support in this language (which is D, LLVMDC[1]) is through asm *statements*. I never have inline asm *expressions*, and outputs are always via memory. I D my test looks like
2009 Sep 19
2
[Fwd: Shared Storage in xVM Opensolaris build 122]
Hi, I double checked the configuration with xm and the "w!" option seems to be configured :-( I also upgraded to build 123, but also no change in behaviour. Thus is this a RAC 11.2 problem or is there a general problem using zvols as as shared disks for xVM domains ? (device (vbd (protocol x86_64-abi) (uuid 048d282d-da4c-2e0b-b9f4-f3f4cc0811c7)
2004 Jun 01
6
Permission Denied on ocfs directory
Skipped content of type multipart/alternative
2004 Jun 01
6
Permission Denied on ocfs directory
Skipped content of type multipart/alternative
2006 Sep 29
1
Use of OCFS2 file systems.
An HTML attachment was scrubbed... URL: http://oss.oracle.com/pipermail/ocfs2-users/attachments/20060929/b615d2e4/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: oracle.gif Type: image/gif Size: 2356 bytes Desc: not available Url : http://oss.oracle.com/pipermail/ocfs2-users/attachments/20060929/b615d2e4/oracle.gif
2014 Feb 19
0
NetVision 6.0 MIB
2014-02-12 10:13 GMT+01:00 <hamid.nabil at coop.no>: > Arnaud, > > > > I see your name all over when I look for Netvision MIB. Thought maybe you > can help me. I want the MIB for our UPS (SOCOMEC) with NetVision 6.0 > > > > I appreciate your help in advanceJ > > Regards > > Hamid Nabil > > > Hello Hamid, the procedure describing how to do
2017 Oct 02
0
nfs-ganesha locking problems
Hi On 09/29/2017 09:09 PM, Bernhard D?bi wrote: > Hi, > > I have a problem with nfs-ganesha serving gluster volumes > > I can read and write files but then one of the DBAs tried to dump an > Oracle DB onto the NFS share and got the following errors: > > > Export: Release 11.2.0.4.0 - Production on Wed Sep 27 23:27:48 2017 > > Copyright (c) 1982, 2011, Oracle
2005 Mar 02
10
[Bug 990] OpenSSH cannot connect to an IBM RSA (Remote Supervisor Adaptor) II
http://bugzilla.mindrot.org/show_bug.cgi?id=990 Summary: OpenSSH cannot connect to an IBM RSA (Remote Supervisor Adaptor) II Product: Portable OpenSSH Version: 3.9p1 Platform: All OS/Version: All Status: NEW Severity: major Priority: P2 Component: ssh AssignedTo: openssh-bugs at
2017 Sep 29
2
nfs-ganesha locking problems
Hi, I have a problem with nfs-ganesha serving gluster volumes I can read and write files but then one of the DBAs tried to dump an Oracle DB onto the NFS share and got the following errors: Export: Release 11.2.0.4.0 - Production on Wed Sep 27 23:27:48 2017 Copyright (c) 1982, 2011, Oracle and/or its affiliates.??All rights reserved. Connected to: Oracle Database 11g Enterprise Edition
2005 Sep 28
1
R-code for binormla distribution
Dear users, does any one have a code (S or R) to compute the binormal distribution (or the upper its quadrant area) other than the pmvnorm. Thanks -- Nabil Channouf etudiant en Ph.D. Bureau 3733 Departement d'Informatique et de Recherche Operationnelle (D.I.R.O.) Universite de Montreal, C.P. 6128, succ. Centre-Ville, Montreal, H3C 3J7 Tel.: (514) 343-6111, poste 1796 Fax.: (514) 343-5834
2010 Oct 05
1
[LLVMdev] LLVM and "who does delete"
Hi, I am new to LLVM, and I am pretty much paranoid about loose pointers. I would like to write a compiler in C++ + boost + llvm, but am worried about the pointers created and passed as parameters, especially about whose responsibility it is of deallocating them (does the LLVM API do it internally, or is it the application programmer's responsibility?). And what is the best practice for
2013 Jun 30
0
[PATCH v2] nv50: H.264/MPEG2 decoding support via VP2, available on NV84-NV96, NVA0
Adds H.264 and MPEG2 codec support via VP2, using firmware from the blob. Acceleration is supported at the bitstream level for H.264 and IDCT level for MPEG2. Known issues: - H.264 interlaced doesn't render properly - H.264 shows very occasional artifacts on a small fraction of videos - MPEG2 + VDPAU shows frequent but small artifacts, which aren't there when using XvMC on the same
2014 Aug 30
3
[PATCH envytools] nvbios: Fix reading of ram_restrict_group_count.
The entry offset was use instead of the data it points to. Probably a regression. The files showing script parsing errors has been reduced from 410 to 6 with the database of 505 vbios. --- nvbios/mem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvbios/mem.c b/nvbios/mem.c index 81f2d1b..e4797e3 100644 --- a/nvbios/mem.c +++ b/nvbios/mem.c @@ -232,11 +232,11 @@
2013 Jun 27
4
[PATCH] nv50: H.264/MPEG2 decoding support via VP2, available on NV84-NV96, NVA0
Adds H.264 and MPEG2 codec support via VP2, using firmware from the blob. Acceleration is supported at the bitstream level for H.264 and IDCT level for MPEG2. Known issues: - H.264 interlaced doesn't render properly - H.264 shows very occasional artifacts on a small fraction of videos - MPEG2 + VDPAU shows frequent but small artifacts, which aren't there when using XvMC on the same
2014 Aug 25
12
[PATCH envytools] demmio: Add decoding of some MEM_TIMINGS registers for NVC0.
--- rnndb/memory/nvc0_pbfb.xml | 37 ++++++++++++++++++++++++++++++++++--- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/rnndb/memory/nvc0_pbfb.xml b/rnndb/memory/nvc0_pbfb.xml index 500cea9..e006dbe 100644 --- a/rnndb/memory/nvc0_pbfb.xml +++ b/rnndb/memory/nvc0_pbfb.xml @@ -49,23 +49,54 @@ Most bitfields are unknown. </doc> <bitfield high="7"