~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to arch/mips/kernel/scall64-64.S

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
 
55
55
        sd      a3, PT_R26(sp)          # save a3 for syscall restarting
56
56
 
57
 
        li      t1, _TIF_SYSCALL_TRACE | _TIF_SYSCALL_AUDIT | _TIF_KERNEL_TRACE
 
57
        li      t1, _TIF_SYSCALL_TRACE | _TIF_SYSCALL_AUDIT
58
58
        LONG_L  t0, TI_FLAGS($28)       # syscall tracing enabled?
59
59
        and     t0, t1, t0
60
60
        bnez    t0, syscall_trace_entry
91
91
        SAVE_STATIC
92
92
        move    s0, t2
93
93
        move    a0, sp
94
 
        li      a1, 0
95
 
        jal     do_syscall_trace
 
94
        jal     syscall_trace_enter
96
95
 
97
96
        move    t0, s0
98
97
        RESTORE_STATIC
126
125
        END(handle_sys64)
127
126
 
128
127
        .align  3
129
 
        .type   sys_call_table,@object
130
 
EXPORT(sys_call_table)
 
128
sys_call_table:
131
129
        PTR     sys_read                        /* 5000 */
132
130
        PTR     sys_write
133
131
        PTR     sys_open
405
403
        PTR     sys_ioprio_get
406
404
        PTR     sys_utimensat                   /* 5275 */
407
405
        PTR     sys_signalfd
408
 
        PTR     sys_ni_syscall
 
406
        PTR     sys_ni_syscall                  /* was timerfd */
409
407
        PTR     sys_eventfd
410
408
        PTR     sys_fallocate
411
409
        PTR     sys_timerfd_create              /* 5280 */
426
424
        PTR     sys_fanotify_init               /* 5295 */
427
425
        PTR     sys_fanotify_mark
428
426
        PTR     sys_prlimit64
 
427
        PTR     sys_name_to_handle_at
 
428
        PTR     sys_open_by_handle_at
 
429
        PTR     sys_clock_adjtime               /* 5300 */
 
430
        PTR     sys_syncfs
 
431
        PTR     sys_setns
429
432
        .size   sys_call_table,.-sys_call_table