Symmetric multiprocessing

learn more… | top users | synonyms

-2
votes
0answers
25 views
2
votes
1answer
36 views

Assessing the APIC and creating IPIs in x86 assembly

In a post-boot enviroment (no OS), how would one use the BSP (first core/processor) to create IPIs for the APs (all other cores/processors)? Essentially, how does one wake and set the instruction ...
0
votes
0answers
38 views

Setting CPU Affinity for a hardware interrupt in Linux

I would like to set up an interrupt affinity for a particular hardware interrupt. I know that all the hardware interrupts are handled by CPU0 by default in a SMP system, so i would like to change this ...
2
votes
1answer
68 views

Pin processor CPU Isolation on Windows

In linux where I work mostly, we use a technique called CPU isolation, that effectively locks a process on to a processor and also prevents the processor from running anything else. Our kernel guys ...
0
votes
0answers
87 views

Is there any opensource standlone tcp/ip stack for OCTEON cnMIPS.

We want to development a network traffic generator and tester on OCTEON cnMIPS cores.I have know that Single-Executive(SE) structure for application is more fully featured and should be preferred ...
0
votes
0answers
106 views

wait_event_interruptible_timeout always expires, even though wake_up event occurs in time

i have a question about what seems to be weird behavior of wait_event and wake_up on an Android embedded platform (Exynos5dual based) with a pre-emptive linux 3.0 kernel. It does not happen on a ...
0
votes
1answer
51 views

Using QAtomicInt as memory fence

Again something about lock free... Suppose I implement a simple array based circular FIFO of integers. The FIFO is accessed by 2 threads single producer, single consumer. The read and write indexes ...
0
votes
1answer
180 views

Linux Scheduler on NUMA and SMP

I wanted to know if a copy of schedule() function runs on each processor, or is it just one schedule() running for each processor. If there is a copy of schedule() running on each processor/core, how ...
9
votes
3answers
122 views

How are atomic operations implemented at a hardware level?

I get that at the assembly language level instruction set architectures provide compare and swap and similar operations. However, I don't understand how the chip is able to provide these guarantees. ...
2
votes
0answers
289 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 ...
1
vote
1answer
250 views

Why does linux kernel need idle thread?

Rather than "do nothing" if there is nothing to do (including SMP), why linux kernel runs idle thread?
0
votes
2answers
44 views

Concurrent stores seen in a consistent order

The Intel Architectures Software Developer's Manual, Aug. 2012, vol. 3A, sect. 8.2.2: Any two stores are seen in a consistent order by processors other than those performing the stores. But ...
3
votes
2answers
164 views

Why do we need separate kernel stack for each CPU [closed]

In practice, many operating systems are designed to have one kernel stack for each thread, or at least one for each CPU. But for an operating system that the kernel is locked every time a process ...
0
votes
0answers
67 views

smp infinite buffering after pause->play

I got a question, i am working on a project where i use Strobe Media Playback. Now everything works like a charm. now the problem: I am loading in a live stream and when i pause the live stream after ...
1
vote
0answers
111 views

Why ARM Process IPI at the end of ISR

I am studying IRQ handling on Linux. I have a question, why we need to handle IPI at the end of each ISR[for SMP]. Is there something special with IPI? why not we process in do_asm_IRQ with other ...
2
votes
3answers
580 views

parallel python, or MPI?

I have a code with heavy symbolic calculations (many multiple symbolic integrals). Also I have access to both an 8-core cpu computer (with 18 GB RAM) and a small 32 cpu cluster. I prefer to remain on ...
4
votes
1answer
225 views

limit the number of cores used by erlang

I'm running experiments on a node with 2 x Quad-Core Xeon E5520 2.2GHz, 24.0GB RAM, and Erlang R15B02 (SMP enabled). I wonder if I can limit the number of cores used by the Erlang VM so that I can ...
2
votes
1answer
544 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, ...
0
votes
1answer
88 views

can irq smp_affinity replace the rps(recieve package steering)?

I have a Netcard eth0, it has sigle queue, and its IRQ number is 63, my question is: if i set /proc/irq/63/smp_affinity to fffff whether means that the linux kernel will distribute the irq of eth0 ...
0
votes
1answer
205 views

mutex owner in SMP linux

In the kernel implementation of mutex, thread owner field exists only if it is a SMP build. I can understand that under good and clean code a thread will call release only if acquire was successful so ...
0
votes
0answers
87 views

Getting the same number of instructions executed per virtual CPU with qemu

I am testing qemu with a very simple program where every cores execute an infinit loop incrementing a register. The goal is to stop qemu and compare the register values on each core to evaluate the ...
0
votes
0answers
55 views

Kernel panic in flush_tlb_page function

In flush_tlb_page function exception comes to stop the cpu0. After that it returns to vector_swi(+0x28/0x88) and got a panic with data abort interrupt.Unable to handle kernel paging request at virtual ...
0
votes
1answer
109 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 : ...
0
votes
1answer
131 views

Kernel initialization on SMP system

When we start kernel on a SMP system, CPU0 starts kernel code where in main memory, cache and MMU specific to CPU0 is nitialized while CPUx are in WFI state. When cpu_up(x) is sent from CPU0, each of ...
1
vote
1answer
333 views

Getting statistics from Strobe Media Playback using Javascript

I am attempting to get statistics data from a Strobe Media Playback flash player. I have looked at this example, however it uses swfobject.js and .embedSWF() to create the player. I create the ...
0
votes
1answer
26 views

is hierarchical memory SMP a contradicition in terms?

Symmetric Multiprocessing systems are homogeneous processors which share memory. I just saw this talk by Tim Mattson and he says at some point that hierarchical memory (cache levels) invalidate the ...
1
vote
1answer
298 views

OpenMP and NUMA relation?

I have a dual socket Xeon E5522 2.26GHZ machine (with hyperthreading disabled) running ubuntu server on linux kernel 3.0 supporting NUMA. The architecture layout is 4 physical cores per socket. An ...
1
vote
0answers
113 views

How to get the current task for a given cpu in SMP linux?

I am writing a kernel module which tries to get the current task for a given cpu, for example, for_each_possible_cpu(cpu) { p = curr_task(cpu); printk("current task on cpu %d is %d\n", cpu, ...
10
votes
1answer
338 views

C and C++ compilers with “aggressive” volatile semantics

Are there any C or C++ compilers out there that implement "aggressive" memory consistency model for volatile variables? By "aggressive" consistency model I mean accompanying all writes to volatile ...
4
votes
2answers
64 views

Is it faster to avoid writes when the values might be the same

On SMP machines is there a performance benefit to #2 vs #1: 1) x = 0; or 2) if (x) x = 0; I was thinking that the behind the scenes overhead to manage cache coherency between the CPUs might have ...
1
vote
4answers
126 views

In what order does user space code execute?

Hi I'm writting a char driver that reads and writes to a particular device. Since I'm a noob, this is a very simple and easy char drive that only utilizes the simplest of protocols such as open, read, ...
1
vote
2answers
380 views

How are light weight threads scheduled by the linux kernel on a multichip multicore SMP system?

I am running a parallel algorithm using light threads and I am wondering how are these assigned to different cores when the system provides several cores and several chips. Are threads assigned to a ...
0
votes
2answers
93 views

Is it possible for a child process created by fork() on Linux to run on a separate core in an SMP environment?

When calling fork(), what practices exist to ensure that the child process can run in parallel on a separate core?
0
votes
1answer
176 views

What is the expected overhead of a multi-process system compared to multi-threaded application?

For some operating systems (OpenBSD & ...) threads are userland-only and mostly exist for compatibility. Disregarding that type of implementation, how does the use of kernel-level threads compare ...
2
votes
5answers
403 views

What happens if two process in different processors try to acquire the lock at EXACTLY same time

Ok, so I am reading about synchronization, and I read through various algorithms such as spinlocks, semaphores, and mutex to avoid race condition. However, these algorithms can't prevent race ...
1
vote
2answers
3k views

Linux find out Hyper-threaded core id

I spent this morning trying to find out how to determine which processor id is the hyper-threaded core, but without luck. I wish to find out this information and use set_affinity() to bind a process ...
1
vote
1answer
297 views

How to find the thread affinity in Linux other than using the affinity mask?

We have an embedded MIPS 2-core processor running SMP Linux (2.6.18). We are planning to assign the affinity of the main GUI threads to one of the two cores, and the other core used for driver/data ...
1
vote
2answers
454 views

Large RAM Requirements and Clusters/Clouds

This is really a bioinformatics question, but I'll make it as general as I can. Here's the semi-hypothetical situation: Let's say I have access to a cluster or even a cloud. I want to run some very ...
3
votes
2answers
213 views

Is there a way to take advantage of multi-core when dealing with network connections?

When we doing network programming, no matter you use multi-process, multi-thread or select/poll(epoll), there is only one process/thread to deal with accept the connection on same port. And if you ...
0
votes
1answer
708 views

Having Trouble with SMP (Strobe Media Playback)

I'm having some difficulties getting paths within SMP to work right. In the demo files, it includes an HTML file that works great when I just double click it. But when I move it elsewhere, say one ...
1
vote
1answer
399 views

Boost threads and non-existant speedups on Linux SMPs

I have written a small example C++ program, using boost::thread. Since it's 215 lines, I've posted it on pastebin instead http://pastebin.com/LRZ24W7D The program creates a large number of floats ...
2
votes
1answer
254 views

Using Erlang for testing.

Can I test on a computer with a single core erlang programs for four or more cores? When starting without using any parameter erlang smp assumes 2:2 like this: Erlang R14A (erts-5.8) [smp: 2:2] [rq: ...
3
votes
2answers
2k views

How could I know which core a process is running on?

I am currently working on a project about setting process to one core in linux environment. I use sched_setaffinity to do this job and I wonder whether there are some functions provided by linux to ...
0
votes
1answer
668 views

Multithread and SMP Linux

The Linux Kernel is said to be SMP. It is said that processes and kernel threads shall be distributed across processors. Does all Linux distribution like fedora13, ubuntu 10.04 Lucid by default ...
0
votes
3answers
291 views

Java mutex with smp

I am learning multi-thread programming; and whilst practising mutex, I notice that it seems doesn't work correctly on my dule-core laptop. The mutex code is at http://pastebin.com/axGY5y3c The ...
5
votes
2answers
493 views

does the linux kernel in an SMP system guarantee that UDP packets arriving from a network in order will be read from a socket in order?

on a project I am working on, we are seeing out-of-order issues in certain circumstances on a SMP system when we are reading a UDP stream from the network. We can see it arrives from the network in ...
0
votes
2answers
94 views

core at which function is running

consider a kernel tasklet scheduled and executing the tasklet function. Is there a way to know which core the tasklet is running ? I mean is there a function / variable to know at which core the ...
0
votes
2answers
2k views

Processor affinity settings for Linux kernel modules?

In Windows, I can set the processor affinity of driver code using KeSetSystemAffinityThread, and check which processor my code is running on using KeGetCurrentProcessorNumber. I'm trying to do ...
0
votes
3answers
532 views

How this pthread actually works?

I am actually on my project on compiler with SMP, and want to code with pthreads and heard about many parallel things open mpi and so on, So to start with how this thread is allocated to core while ...
0
votes
4answers
634 views

Why does block I/O completion take so long when crossing CPUs?

I am trying to squeeze the most performance out of a Linux block driver for a high-end storage device. One problem that has me a bit stumped at the moment is this: if a user task starts an I/O ...

1 2