1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-30 00:00:11 +01:00

Merge branch 'shmem-fixes' into 'develop'

Shmem fixes

See merge request !32
This commit is contained in:
Steffen Vogel 2017-07-28 17:48:15 +02:00
commit 8c881a878a
3 changed files with 50 additions and 21 deletions

View file

@ -47,8 +47,6 @@ union shmem_queue {
struct queue_signalled qs;
};
#define SHMEM_MIN_SIZE (sizeof(struct memtype) + sizeof(struct memblock) + sizeof(pthread_barrier_t) + sizeof(pthread_barrierattr_t))
/** Struct containing all parameters that need to be known when creating a new
* shared memory object. */
struct shmem_conf {
@ -75,6 +73,7 @@ struct shmem_dir {
/** Main structure representing the shared memory interface. */
struct shmem_int {
struct shmem_dir read, write;
atomic_int readers, writers, closed;
};
/** Open the shared memory objects and retrieve / initialize the shared data structures.
@ -132,7 +131,7 @@ int shmem_int_alloc(struct shmem_int *shm, struct sample *smps[], unsigned cnt);
/** Returns the total size of the shared memory region with the given size of
* the input/output queues (in elements) and the given number of data elements
* per struct sample. */
size_t shmem_total_size(int insize, int outsize, int sample_size);
size_t shmem_total_size(int queuelen, int samplelen);
/** @} */

View file

@ -110,14 +110,15 @@ int shmem_read(struct node *n, struct sample *smps[], unsigned cnt)
int recv;
struct sample *shared_smps[cnt];
recv = shmem_int_read(&shm->intf, shared_smps, cnt);
if (recv < 0)
do {
recv = shmem_int_read(&shm->intf, shared_smps, cnt);
} while (recv == 0);
if (recv < 0) {
/* This can only really mean that the other process has exited, so close
* the interface to make sure the shared memory object is unlinked */
shmem_int_close(&shm->intf);
if (recv <= 0)
return recv;
}
sample_copy_many(smps, shared_smps, recv);
sample_put_many(shared_smps, recv);

View file

@ -33,18 +33,18 @@
#include "sample.h"
#include "shmem.h"
size_t shmem_total_size(int insize, int outsize, int sample_size)
size_t shmem_total_size(int queuelen, int samplelen)
{
/* We have the constant const of the memtype header */
return sizeof(struct memtype)
/* and the shared struct itself */
+ sizeof(struct shmem_shared)
/* the size of the 2 queues and the queue for the pool */
+ (insize + outsize) * (2 * sizeof(struct queue_cell))
/* the size of the actual queue and the queue for the pool */
+ queuelen * (2 * sizeof(struct queue_cell))
/* the size of the pool */
+ (insize + outsize) * kernel_get_cacheline_size() * CEIL(SAMPLE_LEN(sample_size), kernel_get_cacheline_size())
/* a memblock for each allocation (1 shmem_shared, 3 queues, 1 pool) */
+ 5 * sizeof(struct memblock)
+ queuelen * kernel_get_cacheline_size() * CEIL(SAMPLE_LEN(samplelen), kernel_get_cacheline_size())
/* a memblock for each allocation (1 shmem_shared, 2 queues, 1 pool) */
+ 4 * sizeof(struct memblock)
/* and some extra buffer for alignment */
+ 1024;
}
@ -52,7 +52,7 @@ size_t shmem_total_size(int insize, int outsize, int sample_size)
int shmem_int_open(const char *wname, const char* rname, struct shmem_int *shm, struct shmem_conf *conf)
{
char *cptr;
int fd, ret;
int fd, ret;
size_t len;
void *base;
struct memtype *manager;
@ -74,7 +74,7 @@ int shmem_int_open(const char *wname, const char* rname, struct shmem_int *shm,
if (fd < 0)
return -1;
len = shmem_total_size(conf->queuelen, conf->queuelen, conf->samplelen);
len = shmem_total_size(conf->queuelen, conf->samplelen);
if (ftruncate(fd, len) < 0)
return -1;
@ -138,6 +138,10 @@ int shmem_int_open(const char *wname, const char* rname, struct shmem_int *shm,
shm->read.len = len;
shm->read.shared = shared;
shm->readers = 0;
shm->writers = 0;
shm->closed = 0;
/* Unlink the semaphores; we don't need them anymore */
sem_unlink(wname);
@ -146,28 +150,53 @@ int shmem_int_open(const char *wname, const char* rname, struct shmem_int *shm,
int shmem_int_close(struct shmem_int *shm)
{
atomic_store(&shm->closed, 1);
if (shm->write.shared->polling)
queue_close(&shm->write.shared->queue.q);
else
queue_signalled_close(&shm->write.shared->queue.qs);
munmap(shm->read.base, shm->read.len);
munmap(shm->write.base, shm->write.len);
shm_unlink(shm->write.name);
if (atomic_load(&shm->readers) == 0)
munmap(shm->read.base, shm->read.len);
if (atomic_load(&shm->writers) == 0)
munmap(shm->write.base, shm->write.len);
return 0;
}
int shmem_int_read(struct shmem_int *shm, struct sample *smps[], unsigned cnt)
{
return shm->read.shared->polling ? queue_pull_many(&shm->read.shared->queue.q, (void **) smps, cnt)
: queue_signalled_pull_many(&shm->read.shared->queue.qs, (void **) smps, cnt);
int ret;
atomic_fetch_add(&shm->readers, 1);
if (shm->read.shared->polling)
ret = queue_pull_many(&shm->read.shared->queue.q, (void **) smps, cnt);
else
ret = queue_signalled_pull_many(&shm->read.shared->queue.qs, (void **) smps, cnt);
if (atomic_fetch_sub(&shm->readers, 1) == 1 && atomic_load(&shm->closed) == 1)
munmap(shm->read.base, shm->read.len);
return ret;
}
int shmem_int_write(struct shmem_int *shm, struct sample *smps[], unsigned cnt)
{
return shm->write.shared->polling ? queue_push_many(&shm->write.shared->queue.q, (void **) smps, cnt)
: queue_signalled_push_many(&shm->write.shared->queue.qs, (void **) smps, cnt);
int ret;
atomic_fetch_add(&shm->writers, 1);
if (shm->write.shared->polling)
ret = queue_push_many(&shm->write.shared->queue.q, (void **) smps, cnt);
else
ret = queue_signalled_push_many(&shm->write.shared->queue.qs, (void **) smps, cnt);
if (atomic_fetch_sub(&shm->writers, 1) == 1 && atomic_load(&shm->closed) == 1)
munmap(shm->write.base, shm->write.len);
return ret;
}
int shmem_int_alloc(struct shmem_int *shm, struct sample *smps[], unsigned cnt)