From: Jan Kiszka <jan.kiszka@domain.hid>
To: Philippe Gerum <rpm@xenomai.org>
Cc: xenomai-core <xenomai@xenomai.org>
Subject: [Xenomai-core] [pull request] heap reference and trivial build fixes
Date: Mon, 09 Nov 2009 21:36:35 +0100 [thread overview]
Message-ID: <4AF87D53.9090102@domain.hid> (raw)
[-- Attachment #1: Type: text/plain, Size: 1746 bytes --]
The following changes since commit 6d7d6bc436ef3d1fb51fa8de06d4ecf004e3b6a5:
Gilles Chanteperdrix (1):
nucleus: defer selector block deletion to an APC.
are available in the git repository at:
git://git.xenomai.org/xenomai-jki.git for-upstream
Jan Kiszka (2):
nucleus: Track heap mapping on to mm-clone
nucleus: Fix trivial build warning
ksrc/nucleus/heap.c | 12 +++++++++++-
ksrc/nucleus/module.c | 2 +-
2 files changed, 12 insertions(+), 2 deletions(-)
---
[PATCH] nucleus: Track heap mapping on to mm-clone
When the mm is cloned (due to fork), the heap mapping counter need to be
updated as well. Register an open callback with the vm-ops for this
purpose.
Signed-off-by: Jan Kiszka <jan.kiszka@domain.hid>
---
ksrc/nucleus/heap.c | 12 +++++++++++-
1 files changed, 11 insertions(+), 1 deletions(-)
diff --git a/ksrc/nucleus/heap.c b/ksrc/nucleus/heap.c
index b5fb1cd..27a4ad7 100644
--- a/ksrc/nucleus/heap.c
+++ b/ksrc/nucleus/heap.c
@@ -1017,6 +1017,15 @@ static void __unreserve_and_free_heap(void *ptr, size_t size, int kmflags)
}
}
+static void xnheap_vmopen(struct vm_area_struct *vma)
+{
+ xnheap_t *heap = vma->vm_private_data;
+
+ spin_lock(&kheapq_lock);
+ heap->archdep.numaps++;
+ spin_unlock(&kheapq_lock);
+}
+
static void xnheap_vmclose(struct vm_area_struct *vma)
{
xnheap_t *heap = vma->vm_private_data;
@@ -1037,7 +1046,8 @@ static void xnheap_vmclose(struct vm_area_struct *vma)
}
static struct vm_operations_struct xnheap_vmops = {
- .close = &xnheap_vmclose
+ .open = &xnheap_vmopen,
+ .close = &xnheap_vmclose
};
static int xnheap_open(struct inode *inode, struct file *file)
--
1.6.0.2
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 257 bytes --]
next reply other threads:[~2009-11-09 20:36 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-11-09 20:36 Jan Kiszka [this message]
2009-11-10 11:01 ` [Xenomai-core] [pull request] heap reference and trivial build fixes Gilles Chanteperdrix
2009-11-10 12:05 ` Jan Kiszka
2009-11-10 13:04 ` Gilles Chanteperdrix
2009-11-10 16:24 ` Jan Kiszka
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4AF87D53.9090102@domain.hid \
--to=jan.kiszka@domain.hid \
--cc=rpm@xenomai.org \
--cc=xenomai@xenomai.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.