search for: unlocking

Displaying 20 results from an estimated 2395 matches for "unlocking".

2007 Feb 02
0
Attempting to get FFXI working.
...IDirectDrawImpl_SetCooperativeLevel (0x165de8)->(0x10028,00000113) fixme:win:WIN_CreateWindowEx Parent is HWND_MESSAGE dummy fixme:d3d:IWineD3DDeviceImpl_CreateSurface Trying to create a render target that isn't in the default pool fixme:d3d_surface:IWineD3DSurfaceImpl_UnlockRect unsupported unlocking to Rendering surface surf@0x19a1250 usage(WINED3DUSAGE_RENDERTARGET) sqpoldir: SetDirName[c:\Program Files\PlayOnline\SquareEnix\PlayOnlineViewer\] polBackToGameFlag =0 g_bNeedToGetAllMsg =1 CSettingFileDirectory -----> "c:\Program Files\PlayOnline\SquareEnix\PlayOnlineViewer\usr\all\"...
2006 Nov 15
0
stange lockd issue on CentOS 4.4
Greetings, CentOS. After up2dating one of the corporate mail servers to CentOS 4.4 (was CentOS 4.2) and upgrading kernel to kernel-smp-2.6.9-42.0.3.EL, the following kernel messages started to appear in syslog: [root at gamma ~]# dmesg ........... ...CUT..... ........... lockd: unexpected unlock status: 1 lockd: unexpected unlock status: 1 lockd: unexpected unlock status: 1 lockd: unexpected
2015 Feb 24
4
[PATCH for stable] x86/spinlocks/paravirt: Fix memory corruption on unlock
* Greg KH <gregkh at linuxfoundation.org> wrote: > On Tue, Feb 24, 2015 at 02:54:59PM +0530, Raghavendra K T wrote: > > Paravirt spinlock clears slowpath flag after doing unlock. > > As explained by Linus currently it does: > > prev = *lock; > > add_smp(&lock->tickets.head, TICKET_LOCK_INC); > > > >
2015 Feb 24
4
[PATCH for stable] x86/spinlocks/paravirt: Fix memory corruption on unlock
* Greg KH <gregkh at linuxfoundation.org> wrote: > On Tue, Feb 24, 2015 at 02:54:59PM +0530, Raghavendra K T wrote: > > Paravirt spinlock clears slowpath flag after doing unlock. > > As explained by Linus currently it does: > > prev = *lock; > > add_smp(&lock->tickets.head, TICKET_LOCK_INC); > > > >
2003 Dec 24
2
Unlocking Vonage ATA 186
In the process of investigating a Cisco ATA 186 that was locked by Vonage, I found that you can still unlock the device yourself. But there's a catch. The device's design has a great plus: a DIP32 *socketed* SST28SF040A flash chip. I found an 8 digit unlock code at 0x03FA71-0x03FA78. I do not know if that is a standard location. If you have the equipment, you're in luck. But
2013 Aug 02
1
Unlock non existent locks
Hello Timo, I'm running a single instance of dovecot-2.1.15 on a single host running 8.3-RELEASE-p3 FreeBSD amd64 mailboxes (Maildir), control files and indexes are on NFS (v3,tcp) mail_nfs_storage = yes lock_method = fcntl [didn't touch the following] # Mail index files also exist in NFS. Setting this to yes requires # mmap_disable=yes and
2015 Feb 24
2
[PATCH for stable] x86/spinlocks/paravirt: Fix memory corruption on unlock
Paravirt spinlock clears slowpath flag after doing unlock. As explained by Linus currently it does: prev = *lock; add_smp(&lock->tickets.head, TICKET_LOCK_INC); /* add_smp() is a full mb() */ if (unlikely(lock->tickets.tail & TICKET_SLOWPATH_FLAG)) __ticket_unlock_slowpath(lock, prev); which is
2015 Feb 24
2
[PATCH for stable] x86/spinlocks/paravirt: Fix memory corruption on unlock
Paravirt spinlock clears slowpath flag after doing unlock. As explained by Linus currently it does: prev = *lock; add_smp(&lock->tickets.head, TICKET_LOCK_INC); /* add_smp() is a full mb() */ if (unlikely(lock->tickets.tail & TICKET_SLOWPATH_FLAG)) __ticket_unlock_slowpath(lock, prev); which is
2006 May 26
1
[PATCH - 2.6.17-rc5] ext3: Fix missed mutex unlock - unroll
...ve the following patch in the GIT - 2.6.17-rc5 is not correct: http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=75616cf9854b83eb83a968b1338ae0ee11c9673c It is the second of the two patches contributed by Leonid Ananiev. This one incorrectly adds the super block unlocking in the error path, though. As we can see in the function ext3_group_add() the unlock is already handled at the label 'exit_journal' for all error paths. Below is the patch that should be unrolled. Thanks, Jan Jan Capek SYSGO | Real-Time Solutions | ELinOS Embedded Linux | http://www.sy...
2011 Mar 11
1
screen saver unlock dialog window is not visible in clone mode
Hi, Environment: I am using CentOS 5.3 operating system. I upgraded xorg of centos to 7.3. I am using intel 945 GM board. My xorg server version is 1.4.2 and inetl driver version 2.4.3. gnome-screensaver version is 2.16.1-8.el5. Problem: I connected another system of same hardware using VGA output. Now I can see clone of my system on secondary display. I enabled screensaver with 1 minute period
2018 Oct 10
1
unlockEnvironment()?
...done yet? I ask because several packages, including the well-used R6 and rlang packages, fiddle with some bits in with SET_ENVFLAGS and ENVFLAGS to unlock an environment. (See grep output below.) About 5000 (1/3 of CRAN) packages depend on R6 or rlang. Should R supply a more disciplined way of unlocking an environment? Bill Dunlap TIBCO Software wdunlap tibco.com $ { find . -type f -print0 | xargs -0 grep -n -C 2 ENVFLAGS ; } 2>/dev/null ./R6/tests/manual/encapsulation.R-5-unlockEnvironment <- cfunction(signature(env = "environment"), body = ' ./R6/tests/manual/encapsulation....
2011 Nov 10
0
Unable to execute raw tests using lxc-execute.
Hi, I have doubt in executing raw.write tests using lxc-execute. When I execute it without lxc-execute it works fine i.e it performs raw.write testing. command :: root at nishant:/home/nishant/Desktop/samba-4.0.0alpha15# bin/smbtorture //localhost/ubuntu -Ubase%base_system raw.write This command works fine. We can see the o/p of this also,
2015 Feb 24
0
[PATCH for stable] x86/spinlocks/paravirt: Fix memory corruption on unlock
On Tue, Feb 24, 2015 at 03:47:37PM +0100, Ingo Molnar wrote: > > * Greg KH <gregkh at linuxfoundation.org> wrote: > > > On Tue, Feb 24, 2015 at 02:54:59PM +0530, Raghavendra K T wrote: > > > Paravirt spinlock clears slowpath flag after doing unlock. > > > As explained by Linus currently it does: > > > prev = *lock; > > >
2015 Feb 24
0
[PATCH for stable] x86/spinlocks/paravirt: Fix memory corruption on unlock
On Tue, Feb 24, 2015 at 03:47:37PM +0100, Ingo Molnar wrote: > > * Greg KH <gregkh at linuxfoundation.org> wrote: > > > On Tue, Feb 24, 2015 at 02:54:59PM +0530, Raghavendra K T wrote: > > > Paravirt spinlock clears slowpath flag after doing unlock. > > > As explained by Linus currently it does: > > > prev = *lock; > > >
2005 May 12
2
Cisco 7960 Can't be unlocked
Odd problem here--I just got a couple of Cisco 7960s from Ebay that are not functioning as expected...... These 7960s can't seem to be unlocked for manual configuration via any mechanism that I can find. If you go to settings, there is no option 9 (unlock). Available options stop at 4 (Status). **# has no effect. The Phones report that thier current firmware version is 3.1 MF.G2.
2015 Feb 24
0
[PATCH for stable] x86/spinlocks/paravirt: Fix memory corruption on unlock
On 02/24/2015 08:17 PM, Ingo Molnar wrote: > > * Greg KH <gregkh at linuxfoundation.org> wrote: > >> On Tue, Feb 24, 2015 at 02:54:59PM +0530, Raghavendra K T wrote: >>> Paravirt spinlock clears slowpath flag after doing unlock. >>> As explained by Linus currently it does: >>> prev = *lock; >>>
2015 Feb 24
0
[PATCH for stable] x86/spinlocks/paravirt: Fix memory corruption on unlock
On 02/24/2015 08:17 PM, Ingo Molnar wrote: > > * Greg KH <gregkh at linuxfoundation.org> wrote: > >> On Tue, Feb 24, 2015 at 02:54:59PM +0530, Raghavendra K T wrote: >>> Paravirt spinlock clears slowpath flag after doing unlock. >>> As explained by Linus currently it does: >>> prev = *lock; >>>
2015 Feb 12
8
[PATCH V3] x86 spinlock: Fix memory corruption on completing completions
Paravirt spinlock clears slowpath flag after doing unlock. As explained by Linus currently it does: prev = *lock; add_smp(&lock->tickets.head, TICKET_LOCK_INC); /* add_smp() is a full mb() */ if (unlikely(lock->tickets.tail & TICKET_SLOWPATH_FLAG)) __ticket_unlock_slowpath(lock, prev); which
2015 Feb 12
8
[PATCH V3] x86 spinlock: Fix memory corruption on completing completions
Paravirt spinlock clears slowpath flag after doing unlock. As explained by Linus currently it does: prev = *lock; add_smp(&lock->tickets.head, TICKET_LOCK_INC); /* add_smp() is a full mb() */ if (unlikely(lock->tickets.tail & TICKET_SLOWPATH_FLAG)) __ticket_unlock_slowpath(lock, prev); which
2015 Feb 24
0
[PATCH for stable] x86/spinlocks/paravirt: Fix memory corruption on unlock
On Tue, Feb 24, 2015 at 02:54:59PM +0530, Raghavendra K T wrote: > Paravirt spinlock clears slowpath flag after doing unlock. > As explained by Linus currently it does: > prev = *lock; > add_smp(&lock->tickets.head, TICKET_LOCK_INC); > > /* add_smp() is a full mb() */ > > if