[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Xen-changelog] [xen-unstable] xenstore: set read_thread stacksize


  • To: xen-changelog@xxxxxxxxxxxxxxxxxxx
  • From: Xen patchbot-unstable <patchbot@xxxxxxx>
  • Date: Fri, 08 Jun 2012 00:44:08 +0000
  • Delivery-date: Fri, 08 Jun 2012 00:44:17 +0000
  • List-id: "Change log for Mercurial \(receive only\)" <xen-changelog.lists.xen.org>

# HG changeset patch
# User Simon Rowe <simon.rowe@xxxxxxxxxxxxx>
# Date 1339089780 -3600
# Node ID 0474a8b847622fadc20fead17c68cd3d95dc1a7f
# Parent  32a31e2cb03942f95a9453bba172e8732101761e
xenstore: set read_thread stacksize

xs_watch() creates a thread to wake watchers using default attributes. The
stacksize can be quite large (8 MB on Linux), applications that link against
xenstore end up having a larger memory footprint than necessary.

Signed-off-by: Simon Rowe <simon.rowe@xxxxxxxxxxxxx>
Acked-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx>
Committed-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx>
---


diff -r 32a31e2cb039 -r 0474a8b84762 tools/xenstore/xs.c
--- a/tools/xenstore/xs.c       Thu Jun 07 18:22:20 2012 +0100
+++ b/tools/xenstore/xs.c       Thu Jun 07 18:23:00 2012 +0100
@@ -702,21 +702,36 @@ bool xs_watch(struct xs_handle *h, const
        struct iovec iov[2];
 
 #ifdef USE_PTHREAD
+#define READ_THREAD_STACKSIZE (16 * 1024)
+
        /* We dynamically create a reader thread on demand. */
        mutex_lock(&h->request_mutex);
        if (!h->read_thr_exists) {
                sigset_t set, old_set;
+               pthread_attr_t attr;
+
+               if (pthread_attr_init(&attr) != 0) {
+                       mutex_unlock(&h->request_mutex);
+                       return false;
+               }
+               if (pthread_attr_setstacksize(&attr, READ_THREAD_STACKSIZE) != 
0) {
+                       pthread_attr_destroy(&attr);
+                       mutex_unlock(&h->request_mutex);
+                       return false;
+               }
 
                sigfillset(&set);
                pthread_sigmask(SIG_SETMASK, &set, &old_set);
 
-               if (pthread_create(&h->read_thr, NULL, read_thread, h) != 0) {
+               if (pthread_create(&h->read_thr, &attr, read_thread, h) != 0) {
                        pthread_sigmask(SIG_SETMASK, &old_set, NULL);
+                       pthread_attr_destroy(&attr);
                        mutex_unlock(&h->request_mutex);
                        return false;
                }
                h->read_thr_exists = 1;
                pthread_sigmask(SIG_SETMASK, &old_set, NULL);
+               pthread_attr_destroy(&attr);
        }
        mutex_unlock(&h->request_mutex);
 #endif

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.