~ubuntu-branches/ubuntu/trusty/linux-linaro-u8500/trusty

« back to all changes in this revision

Viewing changes to arch/sh/include/asm/thread_info.h

  • Committer: Bazaar Package Importer
  • Author(s): John Rigby, Upstream Fixes, Andy Green, John Rigby
  • Date: 2011-04-14 12:16:06 UTC
  • Revision ID: james.westby@ubuntu.com-20110414121606-b77podkyqgr2oix7
Tags: 2.6.38-1002.3
[ Upstream Fixes ]

* MUSB: shutdown: Make sure block is awake before doing shutdown
  - LP: #745737
* Fixed gpio polarity of gpio USB-phy reset.
  - LP: #747639

[ Andy Green ]

* LINARO: SAUCE: disable CONFIG_OMAP_RESET_CLOCKS
  - LP: #752900

[ John Rigby ]

* Rebase to new upstreams:
  Linux v2.6.38.1
  linaro-linux-2.6.38-upstream-29Mar2011
  Ubuntu-2.6.38-7.35
* SAUCE: OMAP4: clock: wait for module to become accessible on
  a clk enable
  - LP: #745737
* Rebase to new upstreams:
  Linux v2.6.38.2
  linaro-linux-2.6.38-upstream-5Apr2011
  Ubuntu-2.6.38-8.41
  - LP: #732842
* Update configs for device tree, dvfs and lttng
* LINARO: add building of dtb's
* LINARO: SAUCE: Disable lowest operating freqs on omap34xx
  - LP: #732912

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
#define TIF_SECCOMP             6       /* secure computing */
121
121
#define TIF_NOTIFY_RESUME       7       /* callback before returning to user */
122
122
#define TIF_SYSCALL_TRACEPOINT  8       /* for ftrace syscall instrumentation */
 
123
#define TIF_KERNEL_TRACE        9       /* kernel trace active */
123
124
#define TIF_POLLING_NRFLAG      17      /* true if poll_idle() is polling TIF_NEED_RESCHED */
124
125
#define TIF_MEMDIE              18      /* is terminating due to OOM killer */
125
126
#define TIF_FREEZE              19      /* Freezing for suspend */
132
133
#define _TIF_SECCOMP            (1 << TIF_SECCOMP)
133
134
#define _TIF_NOTIFY_RESUME      (1 << TIF_NOTIFY_RESUME)
134
135
#define _TIF_SYSCALL_TRACEPOINT (1 << TIF_SYSCALL_TRACEPOINT)
 
136
#define _TIF_KERNEL_TRACE       (1 << TIF_KERNEL_TRACE)
135
137
#define _TIF_POLLING_NRFLAG     (1 << TIF_POLLING_NRFLAG)
136
138
#define _TIF_FREEZE             (1 << TIF_FREEZE)
137
139
 
144
146
/* work to do in syscall trace */
145
147
#define _TIF_WORK_SYSCALL_MASK  (_TIF_SYSCALL_TRACE | _TIF_SINGLESTEP | \
146
148
                                 _TIF_SYSCALL_AUDIT | _TIF_SECCOMP    | \
147
 
                                 _TIF_SYSCALL_TRACEPOINT)
 
149
                                 _TIF_SYSCALL_TRACEPOINT | _TIF_KERNEL_TRACE)
148
150
 
149
151
/* work to do on any return to u-space */
150
152
#define _TIF_ALLWORK_MASK       (_TIF_SYSCALL_TRACE | _TIF_SIGPENDING      | \
151
153
                                 _TIF_NEED_RESCHED  | _TIF_SYSCALL_AUDIT   | \
152
154
                                 _TIF_SINGLESTEP    | _TIF_NOTIFY_RESUME   | \
153
 
                                 _TIF_SYSCALL_TRACEPOINT)
 
155
                                 _TIF_SYSCALL_TRACEPOINT | _TIF_KERNEL_TRACE)
154
156
 
155
157
/* work to do on interrupt/exception return */
156
158
#define _TIF_WORK_MASK          (_TIF_ALLWORK_MASK & ~(_TIF_SYSCALL_TRACE | \
157
 
                                 _TIF_SYSCALL_AUDIT | _TIF_SINGLESTEP))
 
159
                                 _TIF_SYSCALL_AUDIT | _TIF_SINGLESTEP | \
 
160
                                 _TIF_KERNEL_TRACE))
158
161
 
159
162
/*
160
163
 * Thread-synchronous status.