Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 17 Mar 2013 13:45:37 GMT
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 222967 for review
Message-ID:  <201303171345.r2HDjb7P056659@skunkworks.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/@@222967?ac=10

Change 222967 by rwatson@rwatson_cinnamon on 2013/03/17 13:45:03

	Associate a tesla_store instance with each kernel thread; in the
	future we might want to use TSD instead.

Affected files ...

.. //depot/projects/ctsrd/tesla/src/sys/sys/proc.h#2 edit

Differences ...

==== //depot/projects/ctsrd/tesla/src/sys/sys/proc.h#2 (text+ko) ====

@@ -171,6 +171,7 @@
 struct sbuf;
 struct sleepqueue;
 struct td_sched;
+struct tesla_store;
 struct thread;
 struct trapframe;
 struct turnstile;
@@ -317,6 +318,7 @@
 	struct proc	*td_rfppwait_p;	/* (k) The vforked child */
 	struct vm_page	**td_ma;	/* (k) uio pages held */
 	int		td_ma_cnt;	/* (k) size of *td_ma */
+	struct tesla_store	*td_tesla;	/* (k) TESLA per-thread state */
 };
 
 struct mtx *thread_lock_block(struct thread *);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303171345.r2HDjb7P056659>