Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AndroidKernelGoldfish
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Werner Sembach
AndroidKernelGoldfish
Commits
f925725d
Commit
f925725d
authored
May 5, 2012
by
Al Viro
Browse files
Options
Downloads
Patches
Plain Diff
mips: unobfuscate _TIF..._MASK
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
bfc83647
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
arch/mips/include/asm/thread_info.h
+4
-3
4 additions, 3 deletions
arch/mips/include/asm/thread_info.h
with
4 additions
and
3 deletions
arch/mips/include/asm/thread_info.h
+
4
−
3
View file @
f925725d
...
...
@@ -139,10 +139,11 @@ register struct thread_info *__current_thread_info __asm__("$28");
#define _TIF_WORK_SYSCALL_EXIT (_TIF_SYSCALL_TRACE | _TIF_SYSCALL_AUDIT)
/* work to do on interrupt/exception return */
#define _TIF_WORK_MASK (0x0000ffef & \
~(_TIF_SECCOMP | _TIF_SYSCALL_AUDIT))
#define _TIF_WORK_MASK \
(_TIF_SIGPENDING | _TIF_NEED_RESCHED | _TIF_NOTIFY_RESUME | \
_TIF_RESTORE_SIGMASK)
/* work to do on any return to u-space */
#define _TIF_ALLWORK_MASK (
0x8000ffff & ~_TIF_SECCOMP
)
#define _TIF_ALLWORK_MASK (
_TIF_WORK_MASK | _TIF_WORK_SYSCALL_EXIT
)
#endif
/* __KERNEL__ */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment