The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
1answer
45 views

How the function do_raw_spin_lock is implemented in linux

While debugging panic issue realted to spinlock, I came across this definition of spinlock in include/linux/spinlock.h . It is rather hard for me to understand this definition. Why is ...
1
vote
2answers
66 views

Use of STREXEQ instead of STREX for spinlock implementation in ARM

The following is a sample spin-lock implementation in the ARM manual. Please check here: http://infocenter.arm.com/help/topic/com.arm.doc.genc007826/Barrier_Litmus_Tests_and_Cookbook_A08.pdf . ...
-1
votes
1answer
45 views

Why there is a deadlock when thread tried to grab same spinlock twice?

Could someone explain to me why there will be a deadlock when one thread tries to grab same spinlock twice ? (Assuming that spinlock is non-recursive) Regular spinlock usage: lock = false; ...
0
votes
1answer
61 views

Spinlocks in single processor and multi processor

I read and studied how spinlocks work. Now I have a question which I can't find an exhaustive answer to: how do they work in a UP (uni-processor) environment and in a SMP (symmetric multi processor) ...
2
votes
1answer
62 views

C++ - init & destory of mutexes and spin-lock

Is it possible to allocate and init a mutex in one thread and destory it in another? Thanks.
2
votes
2answers
137 views

Is it ok to use spinlocks with O(1) non-memory contiguous code?

I'm using spinlocks (pthread ones) with generally O(1) list element access/removal in the locked code section. I say generally because on 99.9% of cases the code doesn't loop through the list (which ...
-1
votes
1answer
186 views

Replace critical section with boost::detail::spinlock cause dead lock on windows [closed]

My platform is vs2010 win2003 server, I have an application working well. There is an integer protected by a critical section, when I modify and use boost::detail::spinlock instead then it goes to ...
1
vote
3answers
129 views

Should I use spin_lock or mutex_lock for this particular situation?

In my Linux app, I have two threads that both try to send a UDP broadcast packet (around 50-500 bytes) using the same UDP client socket. They do this about once every 2-3 seconds. In this case, around ...
0
votes
1answer
162 views

SpinLock in C#. In which type of algorithm SpinLock is a better choice against Monitor? [duplicate]

Possible Duplicate: Why everyone states that SpinLock is faster? This question is concerning SpinLock, Monitor & Interlocked. I made 2 tests which test the performance of Monitor, ...
1
vote
1answer
208 views

Why everyone states that SpinLock is faster? [closed]

I have read a lot of docs and articles and posts all over the internet. Almost everyone and everywhere commits that SpinLock is faster for a short running pieces of code, but I made a test, and it ...
2
votes
0answers
275 views

Understanding link between CONFIG_SMP, Spinlocks and CONFIG_PREEMPT in latest (3.0.0 and above) Linux kernel

To give you full context my discussion begun with an observation that I am running a SMP linux (3.0.1-rt11) on ARM cortex A8 based SoC which is a uniprocessor. I was curious to know if there will be ...
2
votes
2answers
202 views

Are there any performance penalties for running SMP enabled Linux kernel on a Uni processor (ARM Cortex A8 based SOC)?

This is a two fold question that raised from my trivial observation that I am running a SMP enabled Linux on our ARM-Cortex 8 based SoC. First part is about performance (memory space/CPU time) ...
0
votes
0answers
26 views

Seeking better understanding of role of spinlock protrection of crtical code sections in interrupt handlers (arm9, linux)

We have an arm9 (Phytec LPC3180 running linux 2.6.10) that uses a GPI pin for notification of interrupts from an I2C serial chip (MAX3107). Most of the example interrupt handling code I've found on ...
2
votes
1answer
80 views

Spinlocks in IRQ on a small embedded system

I'm developing a small embedded system on an ARM microcontroller WITHOUT AN OPERATING SYSTEM. It has several different types of interrupts occurring (button presses, A to D conversion, timer - etc.) ...
0
votes
0answers
91 views

Global mutex/spinlock for 2 linux drivers

Mutex and spinlock questions are very common. I've read about it and looked into linux code. But I can't easy find situation when lock is shared between two drivers/modules. I have two peripherals ...
0
votes
1answer
83 views

Using spinlocks with gcc

how can I use pthread_spinlock_t in gcc 4.6.3? Which flags do I have to specify at compile time? I'm using Ubuntu 12.04! Thanks
3
votes
1answer
138 views

spinlock_t already locked at the first use

Hi i'm programming kernel (2.6) for the first time and i have a problem using spinlocks. I'm trying to add this system call (inserisci_nodo) that externalizes a structure (an ibrid list-hashtable) ...
2
votes
1answer
146 views

Linux kernel dump: How to get the owner of a spinlock

I have a linux kernel dump generated on a 24-core system. Most of the tasks are stuck on a spinlock. Is there a way to get the owner of a spinlock?
1
vote
2answers
225 views

Non-blocking socket accept without spinlock in C [duplicate]

Possible Duplicate: Wake up thread blocked on accept() call I am writing a small server which listening for connections (accepting them and passing them to worker threads) until a custom ...
3
votes
1answer
787 views

High system CPU usage when contending futex

I have observed that when the linux futexes are contended, the system spends A LOT of time in the spinlocks. I noticed this to be a problem even when futexes are not used directly, but also when ...
2
votes
1answer
540 views

Linux Kernel: Spinlock SMP: Why there is a preempt_disable() in spin_lock_irq SMP version?

The original code in linux kernel is : static inline void __raw_spin_lock_irq(raw_spinlock_t *lock) { local_irq_disable(); preempt_disable(); spin_acquire(&lock->dep_map, 0, 0, ...
2
votes
1answer
186 views

Spinlock not working to protect critical section on multi-core system

I have a character device driver which is causing a system deadlock on a multicore system. The write call has a critical section protected by a spin lock (spin_lock_irqsave). The ISR must obtain this ...
3
votes
1answer
232 views

Synchronization between user space process and interupt context code

Recently I attended couple of interviews. Out of all kernel questions which were asked, there is one specific question which I couldn’t find convincing answer of. How will you use different ...
0
votes
1answer
103 views

Seconds overflow in pthread_cond_timedwait

I have a usecase in which I want to acquire a condition variable and release it after some time interval( Eg: I have a queue of time ordered events and I want to block for a specified duration .) ...
2
votes
1answer
430 views

Does raw_spin_lock in Linux disable hrtimer interrupts?

On one processor, in the same thread, first raw_spin_lock() is called, then it starts a hrtimer and goes back to raw_spin_lock() again where it will spin there. In the hrtimer interrupt handler ...
0
votes
1answer
107 views

Locking in MCS Algorithm

I would like to implement queued locking in C++ for one of my applications. I was going through the algorithm from the following paper : ...
1
vote
1answer
208 views

Queued Spinlock

I happened to stumble upon Queued Spinlock and would like to implement in C++. I googled a bit for info on this but wasn't able to get proper documentation. Any documentation / implementation tips ...
1
vote
1answer
129 views

Combination Semaphore and Spin Lock in C?

Is it possible to build a sort of combined semaphore/spin lock in C? That is, I want a thread control structure which supports: Periodically waking up the thread to check the state of some ...
0
votes
1answer
251 views

How to use a spin lock if copy_to_user needs to be called?

I have written a small driver to read some data and give it to the user. My driver can be used by more than one application, i.e. it's a reentrant driver, hence the use of a spin lock. But I ...
0
votes
0answers
91 views

How to use spin lock if copy_to_user needs to b use?

I have written small driver to read some data and give to user. My driver can be use by more than application i.e. reentrant driver. hence use spin lock but came to know that copy_to_user should not ...
18
votes
5answers
1k views

Fastest inline-assembly spinlock

I'm writing a multithreaded application in c++, where performance is critical. I need to use a lot of locking while copying small structures between threads, for this I have chosen to use spinlocks. ...
2
votes
2answers
240 views

Is there any simple way to improve performance of this spinlock function?

I'm trying to implement a spinlock in my code but the spinlock that I implemented based on Wikipedia results in extremely slow performance. int lockValue = 0; void lock() { __asm__("loop: \n\t" ...
0
votes
1answer
112 views

Is it safe to call a non-void function inside kernel without assigning to variable

I am trying to debug a kernel code, because of a "scheduling while in atomic" that is crashing my system. In some point of an actual kernel module I added a line for calling a function defined in ...
0
votes
2answers
634 views

Why is spinlock no-op in Linux kernel (non-SMP)?

I've been reading this for quite some time but doesn't make sense to me.. Probably because I'm new to all this and still don't understand few kernel concepts. This was what i came up with (no error ...
2
votes
1answer
77 views

SpinLock throwing SynchronizationLockException

I am trying to use SpinLock, but even this most basic code in a single threaded Console app throws the following exception when I callSpinLock.Exit() System.Threading.SynchronizationLockException was ...
0
votes
1answer
73 views

Shared Counter Gives Different Value With Spinlocks

I have the following code: #include <stdio.h> #include <pthread.h> #define THREAD_CNT 10 #define ITER 100 #define PRINT 1 int lock; unsigned long long int counter; void spin_lock(int ...
3
votes
1answer
663 views

difference between pthread_spinlock and boost::smart_ptr::spinlock?

I found the following spinlock code in boost::smart_ptr: bool try_lock() { return (__sync_lock_test_and_set(&v_, 1) == 0); } void lock() { for (unsigned k=0; !try_lock(); ++k) { ...
2
votes
1answer
314 views

Solving the Spinlock issue

In the Linux Device Drivers. When it introduces spinlocks, it gives the following example: Your driver is executing and has just taken out a lock that controls access to its device. While the ...
3
votes
2answers
184 views

When should & shouldn't I use this C# utility class to control threads via Interlocked

I'm trying to understand the logic behind how this class was written, and when I should and shouldn't use it. Any insight would be appreciated internal struct SpinLock { private volatile int ...
0
votes
1answer
205 views

Disabling the scheduler to reduce the cpu time on spinlock

In linux, in kvm environment, when a process in VM locks on some resource and is pre-empted, other processes of VM, which need that locked resource would spend time on spinlock. And the process would ...
2
votes
1answer
675 views

Is linux release the spinlock/semaphore when it kill a process?

If a process holds some spinlocks or semaphores, and exit accidently(e.g., killed by linux), would linux release these locks correctly? If linux doesn't do this work, why?
0
votes
1answer
267 views

What happens if a interrupt handler starts spinning?

I am following the Linux Device Drivers. When it introduces spinlocks, it gives the following example: Your driver is executing and has just taken out a lock that controls access to its device. ...
0
votes
0answers
77 views

Application of spinlock in Virtual Environment

I am an undergraduate student. I am doing my last year project in Xen which is a Virtual Machine Monitor. We are optimizing the Xen default credit scheduler so as to decrease the latency of the ...
2
votes
3answers
2k views

Why spinlocks don't work in uniprocessor (unicore) systems?

I know that spinlocks work with spining, different kernel paths exist and Kernels are preemptive, so why spinlocks don't work in uniprocessor systems? (for example, in Linux)
3
votes
1answer
430 views

Why are the implementations of the spin lock different between Windows XP and Windows 7?

I know the spinlock is exported by hal.dll in Windows, so I reverse engineered the code for the spin lock. The results are below. Windows XP's decompiled spinlock. unsigned __int32 __thiscall ...
1
vote
3answers
674 views

Does Mac OS X have pthread_spinlock_t type?

I didn't find it in Mac, but almost all Linux os support it.. Any one knows how to port it to mac?
1
vote
2answers
243 views

Spinlock in Javascript

How can I do a spinlock in javascript? I'm trying to load a bunch of images and I can only move forward after everything is loaded, so I have a spinlock like for(...) image[i].onload = function() ...
4
votes
3answers
1k views

Why is “sleeping” not allowed while holding a spinlock? [duplicate]

Possible Duplicate: Why can't you sleep while holding spinlock? As far as I know, spinlocks should be used in short duration, and are only choices in code such as interrupt handler ...
1
vote
0answers
320 views

What could cause a deadlock in ImageProviderReleaseInfoCallback / __spin_lock

I have a Cocoa application that uses a number of NSOperationQueue instances to process images in the background. Each queue processes invocation operations that essentially turn NSImage objects into ...
9
votes
2answers
3k views

x86 spinlock using cmpxchg

I'm new to using gcc inline assembly, and was wondering if, on an x86 multi-core machine, a spinlock (without race conditions) could be implemented as (using AT&T syntax): spin_lock: mov 0 eax ...

1 2