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

« back to all changes in this revision

Viewing changes to arch/xtensa/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:
131
131
#define TIF_IRET                4       /* return with iret */
132
132
#define TIF_MEMDIE              5       /* is terminating due to OOM killer */
133
133
#define TIF_RESTORE_SIGMASK     6       /* restore signal mask in do_signal() */
 
134
#define TIF_KERNEL_TRACE        7       /* kernel trace active */
134
135
#define TIF_POLLING_NRFLAG      16      /* true if poll_idle() is polling TIF_NEED_RESCHED */
135
136
#define TIF_FREEZE              17      /* is freezing for suspend */
136
137
 
139
140
#define _TIF_NEED_RESCHED       (1<<TIF_NEED_RESCHED)
140
141
#define _TIF_SINGLESTEP         (1<<TIF_SINGLESTEP)
141
142
#define _TIF_IRET               (1<<TIF_IRET)
 
143
#define _TIF_KERNEL_TRACE       (1<<TIF_KERNEL_TRACE)
142
144
#define _TIF_POLLING_NRFLAG     (1<<TIF_POLLING_NRFLAG)
143
145
#define _TIF_RESTORE_SIGMASK    (1<<TIF_RESTORE_SIGMASK)
144
146
#define _TIF_FREEZE             (1<<TIF_FREEZE)
145
147
 
146
 
#define _TIF_WORK_MASK          0x0000FFFE      /* work to do on interrupt/exception return */
 
148
#define _TIF_WORK_MASK          0x0000FF7E      /* work to do on interrupt/exception return */
147
149
#define _TIF_ALLWORK_MASK       0x0000FFFF      /* work to do on any return to u-space */
148
150
 
149
151
/*