2005-04-17 02:20:36 +04:00
/ *
* This f i l e i s s u b j e c t t o t h e t e r m s a n d c o n d i t i o n s o f t h e G N U G e n e r a l P u b l i c
* License. S e e t h e f i l e " C O P Y I N G " i n t h e m a i n d i r e c t o r y o f t h i s a r c h i v e
* for m o r e d e t a i l s .
*
2006-07-07 17:07:18 +04:00
* Copyright ( C ) 1 9 9 5 - 9 9 , 2 0 0 0 - 0 2 , 0 6 R a l f B a e c h l e < r a l f @linux-mips.org>
2005-04-17 02:20:36 +04:00
* Copyright ( C ) 2 0 0 1 M I P S T e c h n o l o g i e s , I n c .
* Copyright ( C ) 2 0 0 4 T h i e m o S e u f e r
2013-12-04 18:35:28 +04:00
* Copyright ( C ) 2 0 1 4 I m a g i n a t i o n T e c h n o l o g i e s L t d .
2005-04-17 02:20:36 +04:00
* /
# include < l i n u x / e r r n o . h >
# include < a s m / a s m . h >
# include < a s m / a s m m a c r o . h >
2006-07-07 17:07:18 +04:00
# include < a s m / i r q f l a g s . h >
2005-04-17 02:20:36 +04:00
# include < a s m / m i p s r e g s . h >
# include < a s m / r e g d e f . h >
# include < a s m / s t a c k f r a m e . h >
# include < a s m / i s a d e p . h >
# include < a s m / s y s m i p s . h >
# include < a s m / t h r e a d _ i n f o . h >
# include < a s m / u n i s t d . h >
# include < a s m / w a r . h >
2005-09-10 00:32:31 +04:00
# include < a s m / a s m - o f f s e t s . h >
2005-04-17 02:20:36 +04:00
/* Highest syscall used of any syscall flavour */
# define M A X _ S Y S C A L L _ N O _ _ N R _ O 3 2 _ L i n u x + _ _ N R _ O 3 2 _ L i n u x _ s y s c a l l s
2013-01-22 15:59:30 +04:00
.align 5
2005-04-17 02:20:36 +04:00
NESTED( h a n d l e _ s y s , P T _ S I Z E , s p )
.set noat
SAVE_ S O M E
2006-09-26 18:43:40 +04:00
TRACE_ I R Q S _ O N _ R E L O A D
2005-04-17 02:20:36 +04:00
STI
.set at
lw t 1 , P T _ E P C ( s p ) # s k i p s y s c a l l o n r e t u r n
subu v0 , v0 , _ _ N R _ O 3 2 _ L i n u x # c h e c k s y s c a l l n u m b e r
sltiu t 0 , v0 , _ _ N R _ O 3 2 _ L i n u x _ s y s c a l l s + 1
addiu t 1 , 4 # s k i p t o n e x t i n s t r u c t i o n
sw t 1 , P T _ E P C ( s p )
beqz t 0 , i l l e g a l _ s y s c a l l
2012-07-14 11:22:05 +04:00
sll t 0 , v0 , 2
2005-04-17 02:20:36 +04:00
la t 1 , s y s _ c a l l _ t a b l e
addu t 1 , t 0
lw t 2 , ( t 1 ) # s y s c a l l r o u t i n e
beqz t 2 , i l l e g a l _ s y s c a l l
sw a3 , P T _ R 2 6 ( s p ) # s a v e a 3 f o r s y s c a l l r e s t a r t i n g
2012-07-14 11:22:05 +04:00
/ *
* More t h a n f o u r a r g u m e n t s . T r y t o d e a l w i t h i t b y c o p y i n g t h e
* stack a r g u m e n t s f r o m t h e u s e r s t a c k t o t h e k e r n e l s t a c k .
* This S u c k s ( T M ) .
* /
lw t 0 , P T _ R 2 9 ( s p ) # g e t o l d u s e r s t a c k p o i n t e r
/ *
* We i n t e n t i o n a l l y k e e p t h e k e r n e l s t a c k a l i t t l e b e l o w t h e t o p o f
* userspace s o w e d o n ' t h a v e t o d o a s l o w e r b y t e a c c u r a t e c h e c k h e r e .
* /
lw t 5 , T I _ A D D R _ L I M I T ( $ 2 8 )
addu t 4 , t 0 , 3 2
and t 5 , t 4
bltz t 5 , b a d _ s t a c k # - > s p i s b a d
/ *
* Ok, c o p y t h e a r g s f r o m t h e l u s e r s t a c k t o t h e k e r n e l s t a c k .
* /
.set push
.set noreorder
.set nomacro
2013-12-04 18:35:28 +04:00
1 : user_ l w ( t 5 , 1 6 ( t 0 ) ) # a r g u m e n t # 5 f r o m u s p
4 : user_ l w ( t 6 , 2 0 ( t 0 ) ) # a r g u m e n t # 6 f r o m u s p
3 : user_ l w ( t 7 , 2 4 ( t 0 ) ) # a r g u m e n t # 7 f r o m u s p
2 : user_ l w ( t 8 , 2 8 ( t 0 ) ) # a r g u m e n t # 8 f r o m u s p
2012-07-14 11:22:05 +04:00
sw t 5 , 1 6 ( s p ) # a r g u m e n t # 5 t o k s p
sw t 6 , 2 0 ( s p ) # a r g u m e n t # 6 t o k s p
sw t 7 , 2 4 ( s p ) # a r g u m e n t # 7 t o k s p
sw t 8 , 2 8 ( s p ) # a r g u m e n t # 8 t o k s p
.set pop
.section _ _ ex_ t a b l e ," a "
PTR 1 b ,b a d _ s t a c k
PTR 2 b ,b a d _ s t a c k
PTR 3 b ,b a d _ s t a c k
PTR 4 b ,b a d _ s t a c k
.previous
2005-04-17 02:20:36 +04:00
lw t 0 , T I _ F L A G S ( $ 2 8 ) # s y s c a l l t r a c i n g e n a b l e d ?
2013-05-29 03:02:18 +04:00
li t 1 , _ T I F _ W O R K _ S Y S C A L L _ E N T R Y
2005-04-17 02:20:36 +04:00
and t 0 , t 1
2013-01-22 15:59:30 +04:00
bnez t 0 , s y s c a l l _ t r a c e _ e n t r y # - > y e s
2005-04-17 02:20:36 +04:00
jalr t 2 # D o T h e R e a l T h i n g ( T M )
li t 0 , - E M A X E R R N O - 1 # e r r o r ?
sltu t 0 , t 0 , v0
sw t 0 , P T _ R 7 ( s p ) # s e t e r r o r f l a g
beqz t 0 , 1 f
2010-09-28 21:50:37 +04:00
lw t 1 , P T _ R 2 ( s p ) # s y s c a l l n u m b e r
2005-04-17 02:20:36 +04:00
negu v0 # e r r o r
2010-09-28 21:50:37 +04:00
sw t 1 , P T _ R 0 ( s p ) # s a v e i t f o r s y s c a l l r e s t a r t i n g
2005-04-17 02:20:36 +04:00
1 : sw v0 , P T _ R 2 ( s p ) # r e s u l t
o32_syscall_exit :
2012-05-06 00:11:35 +04:00
j s y s c a l l _ e x i t _ p a r t i a l
2005-04-17 02:20:36 +04:00
/* ------------------------------------------------------------------------ */
syscall_trace_entry :
SAVE_ S T A T I C
move s0 , t 2
move a0 , s p
2014-01-22 18:40:03 +04:00
/ *
* syscall n u m b e r i s i n v0 u n l e s s w e c a l l e d s y s c a l l ( _ _ N R _ ## # )
* where t h e r e a l s y s c a l l n u m b e r i s i n a0
* /
addiu a1 , v0 , _ _ N R _ O 3 2 _ L i n u x
bnez v0 , 1 f / * _ _ N R _ s y s c a l l a t o f f s e t 0 * /
lw a1 , P T _ R 4 ( s p )
1 : jal s y s c a l l _ t r a c e _ e n t e r
2005-04-17 02:20:36 +04:00
2014-01-22 18:40:02 +04:00
bltz v0 , 2 f # s e c c o m p f a i l e d ? S k i p s y s c a l l
2005-11-30 19:24:57 +03:00
move t 0 , s0
RESTORE_ S T A T I C
2005-04-17 02:20:36 +04:00
lw a0 , P T _ R 4 ( s p ) # R e s t o r e a r g u m e n t r e g i s t e r s
lw a1 , P T _ R 5 ( s p )
lw a2 , P T _ R 6 ( s p )
lw a3 , P T _ R 7 ( s p )
2005-11-30 19:24:57 +03:00
jalr t 0
2005-04-17 02:20:36 +04:00
li t 0 , - E M A X E R R N O - 1 # e r r o r ?
sltu t 0 , t 0 , v0
sw t 0 , P T _ R 7 ( s p ) # s e t e r r o r f l a g
beqz t 0 , 1 f
2010-09-28 21:50:37 +04:00
lw t 1 , P T _ R 2 ( s p ) # s y s c a l l n u m b e r
2005-04-17 02:20:36 +04:00
negu v0 # e r r o r
2010-09-28 21:50:37 +04:00
sw t 1 , P T _ R 0 ( s p ) # s a v e i t f o r s y s c a l l r e s t a r t i n g
2005-04-17 02:20:36 +04:00
1 : sw v0 , P T _ R 2 ( s p ) # r e s u l t
2014-01-22 18:40:02 +04:00
2 : j s y s c a l l _ e x i t
2005-04-17 02:20:36 +04:00
/* ------------------------------------------------------------------------ */
/ *
* The s t a c k p o i n t e r f o r a c a l l w i t h m o r e t h a n 4 a r g u m e n t s i s b a d .
* We p r o b a b l y s h o u l d h a n d l e t h i s c a s e a b i t m o r e d r a s t i c .
* /
bad_stack :
2010-09-28 21:50:47 +04:00
li v0 , E F A U L T
2005-04-17 02:20:36 +04:00
sw v0 , P T _ R 2 ( s p )
li t 0 , 1 # s e t e r r o r f l a g
sw t 0 , P T _ R 7 ( s p )
j o 3 2 _ s y s c a l l _ e x i t
/ *
* The s y s t e m c a l l d o e s n o t e x i s t i n t h i s k e r n e l
* /
illegal_syscall :
2008-10-24 20:17:22 +04:00
li v0 , E N O S Y S # e r r o r
2005-04-17 02:20:36 +04:00
sw v0 , P T _ R 2 ( s p )
li t 0 , 1 # s e t e r r o r f l a g
sw t 0 , P T _ R 7 ( s p )
j o 3 2 _ s y s c a l l _ e x i t
END( h a n d l e _ s y s )
LEAF( s y s _ s y s c a l l )
subu t 0 , a0 , _ _ N R _ O 3 2 _ L i n u x # c h e c k s y s c a l l n u m b e r
sltiu v0 , t 0 , _ _ N R _ O 3 2 _ L i n u x _ s y s c a l l s + 1
2008-11-19 02:05:46 +03:00
beqz t 0 , e i n v a l # d o n o t r e c u r s e
2012-07-14 11:22:05 +04:00
sll t 1 , t 0 , 2
2005-04-17 02:20:36 +04:00
beqz v0 , e i n v a l
lw t 2 , s y s _ c a l l _ t a b l e ( t 1 ) # s y s c a l l r o u t i n e
/ * Some s y s c a l l s l i k e e x e c v e g e t t h e i r a r g u m e n t s f r o m s t r u c t p t _ r e g s
and c l a i m z e r o a r g u m e n t s i n t h e s y s c a l l t a b l e . T h u s w e h a v e t o
assume t h e w o r s t c a s e a n d s h u f f l e a r o u n d a l l p o t e n t i a l a r g u m e n t s .
If y o u w a n t p e r f o r m a n c e , d o n ' t u s e i n d i r e c t s y s c a l l s . * /
move a0 , a1 # s h i f t a r g u m e n t r e g i s t e r s
move a1 , a2
move a2 , a3
lw a3 , 1 6 ( s p )
lw t 4 , 2 0 ( s p )
lw t 5 , 2 4 ( s p )
lw t 6 , 2 8 ( s p )
sw t 4 , 1 6 ( s p )
sw t 5 , 2 0 ( s p )
sw t 6 , 2 4 ( s p )
sw a0 , P T _ R 4 ( s p ) # . . a n d p u s h b a c k a 0 - a3 , s o m e
sw a1 , P T _ R 5 ( s p ) # s y s c a l l s e x p e c t t h e m t h e r e
sw a2 , P T _ R 6 ( s p )
sw a3 , P T _ R 7 ( s p )
sw a3 , P T _ R 2 6 ( s p ) # u p d a t e a 3 f o r s y s c a l l r e s t a r t i n g
jr t 2
/* Unreached */
2013-01-22 15:59:30 +04:00
einval : li v0 , - E N O S Y S
2005-04-17 02:20:36 +04:00
jr r a
END( s y s _ s y s c a l l )
2012-07-14 11:22:05 +04:00
.align 2
.type sys_ c a l l _ t a b l e , @object
EXPORT( s y s _ c a l l _ t a b l e )
PTR s y s _ s y s c a l l / * 4 0 0 0 * /
PTR s y s _ e x i t
PTR _ _ s y s _ f o r k
PTR s y s _ r e a d
PTR s y s _ w r i t e
PTR s y s _ o p e n / * 4 0 0 5 * /
PTR s y s _ c l o s e
PTR s y s _ w a i t p i d
PTR s y s _ c r e a t
PTR s y s _ l i n k
PTR s y s _ u n l i n k / * 4 0 1 0 * /
PTR s y s _ e x e c v e
PTR s y s _ c h d i r
PTR s y s _ t i m e
PTR s y s _ m k n o d
PTR s y s _ c h m o d / * 4 0 1 5 * /
PTR s y s _ l c h o w n
PTR s y s _ n i _ s y s c a l l
PTR s y s _ n i _ s y s c a l l / * w a s s y s _ s t a t * /
PTR s y s _ l s e e k
PTR s y s _ g e t p i d / * 4 0 2 0 * /
PTR s y s _ m o u n t
PTR s y s _ o l d u m o u n t
PTR s y s _ s e t u i d
PTR s y s _ g e t u i d
PTR s y s _ s t i m e / * 4 0 2 5 * /
PTR s y s _ p t r a c e
PTR s y s _ a l a r m
PTR s y s _ n i _ s y s c a l l / * w a s s y s _ f s t a t * /
PTR s y s _ p a u s e
PTR s y s _ u t i m e / * 4 0 3 0 * /
PTR s y s _ n i _ s y s c a l l
PTR s y s _ n i _ s y s c a l l
PTR s y s _ a c c e s s
PTR s y s _ n i c e
PTR s y s _ n i _ s y s c a l l / * 4 0 3 5 * /
PTR s y s _ s y n c
PTR s y s _ k i l l
PTR s y s _ r e n a m e
PTR s y s _ m k d i r
PTR s y s _ r m d i r / * 4 0 4 0 * /
PTR s y s _ d u p
PTR s y s m _ p i p e
PTR s y s _ t i m e s
PTR s y s _ n i _ s y s c a l l
PTR s y s _ b r k / * 4 0 4 5 * /
PTR s y s _ s e t g i d
PTR s y s _ g e t g i d
PTR s y s _ n i _ s y s c a l l / * w a s s i g n a l ( 2 ) * /
PTR s y s _ g e t e u i d
PTR s y s _ g e t e g i d / * 4 0 5 0 * /
PTR s y s _ a c c t
PTR s y s _ u m o u n t
PTR s y s _ n i _ s y s c a l l
PTR s y s _ i o c t l
PTR s y s _ f c n t l / * 4 0 5 5 * /
PTR s y s _ n i _ s y s c a l l
PTR s y s _ s e t p g i d
PTR s y s _ n i _ s y s c a l l
PTR s y s _ o l d u n a m e
PTR s y s _ u m a s k / * 4 0 6 0 * /
PTR s y s _ c h r o o t
PTR s y s _ u s t a t
PTR s y s _ d u p2
PTR s y s _ g e t p p i d
PTR s y s _ g e t p g r p / * 4 0 6 5 * /
PTR s y s _ s e t s i d
PTR s y s _ s i g a c t i o n
PTR s y s _ s g e t m a s k
PTR s y s _ s s e t m a s k
PTR s y s _ s e t r e u i d / * 4 0 7 0 * /
PTR s y s _ s e t r e g i d
PTR s y s _ s i g s u s p e n d
PTR s y s _ s i g p e n d i n g
PTR s y s _ s e t h o s t n a m e
PTR s y s _ s e t r l i m i t / * 4 0 7 5 * /
PTR s y s _ g e t r l i m i t
PTR s y s _ g e t r u s a g e
PTR s y s _ g e t t i m e o f d a y
PTR s y s _ s e t t i m e o f d a y
PTR s y s _ g e t g r o u p s / * 4 0 8 0 * /
PTR s y s _ s e t g r o u p s
PTR s y s _ n i _ s y s c a l l / * o l d _ s e l e c t * /
PTR s y s _ s y m l i n k
PTR s y s _ n i _ s y s c a l l / * w a s s y s _ l s t a t * /
PTR s y s _ r e a d l i n k / * 4 0 8 5 * /
PTR s y s _ u s e l i b
PTR s y s _ s w a p o n
PTR s y s _ r e b o o t
PTR s y s _ o l d _ r e a d d i r
PTR s y s _ m i p s _ m m a p / * 4 0 9 0 * /
PTR s y s _ m u n m a p
PTR s y s _ t r u n c a t e
PTR s y s _ f t r u n c a t e
PTR s y s _ f c h m o d
PTR s y s _ f c h o w n / * 4 0 9 5 * /
PTR s y s _ g e t p r i o r i t y
PTR s y s _ s e t p r i o r i t y
PTR s y s _ n i _ s y s c a l l
PTR s y s _ s t a t f s
PTR s y s _ f s t a t f s / * 4 1 0 0 * /
PTR s y s _ n i _ s y s c a l l / * w a s i o p e r m ( 2 ) * /
PTR s y s _ s o c k e t c a l l
PTR s y s _ s y s l o g
PTR s y s _ s e t i t i m e r
PTR s y s _ g e t i t i m e r / * 4 1 0 5 * /
PTR s y s _ n e w s t a t
PTR s y s _ n e w l s t a t
PTR s y s _ n e w f s t a t
PTR s y s _ u n a m e
PTR s y s _ n i _ s y s c a l l / * 4 1 1 0 w a s i o p l ( 2 ) * /
PTR s y s _ v h a n g u p
PTR s y s _ n i _ s y s c a l l / * w a s s y s _ i d l e ( ) * /
PTR s y s _ n i _ s y s c a l l / * w a s s y s _ v m 8 6 * /
PTR s y s _ w a i t 4
PTR s y s _ s w a p o f f / * 4 1 1 5 * /
PTR s y s _ s y s i n f o
PTR s y s _ i p c
PTR s y s _ f s y n c
PTR s y s _ s i g r e t u r n
PTR _ _ s y s _ c l o n e / * 4 1 2 0 * /
PTR s y s _ s e t d o m a i n n a m e
PTR s y s _ n e w u n a m e
PTR s y s _ n i _ s y s c a l l / * s y s _ m o d i f y _ l d t * /
PTR s y s _ a d j t i m e x
PTR s y s _ m p r o t e c t / * 4 1 2 5 * /
PTR s y s _ s i g p r o c m a s k
PTR s y s _ n i _ s y s c a l l / * w a s c r e a t e _ m o d u l e * /
PTR s y s _ i n i t _ m o d u l e
PTR s y s _ d e l e t e _ m o d u l e
PTR s y s _ n i _ s y s c a l l / * 4 1 3 0 w a s g e t _ k e r n e l _ s y m s * /
PTR s y s _ q u o t a c t l
PTR s y s _ g e t p g i d
PTR s y s _ f c h d i r
PTR s y s _ b d f l u s h
PTR s y s _ s y s f s / * 4 1 3 5 * /
PTR s y s _ p e r s o n a l i t y
PTR s y s _ n i _ s y s c a l l / * f o r a f s _ s y s c a l l * /
PTR s y s _ s e t f s u i d
PTR s y s _ s e t f s g i d
PTR s y s _ l l s e e k / * 4 1 4 0 * /
PTR s y s _ g e t d e n t s
PTR s y s _ s e l e c t
PTR s y s _ f l o c k
PTR s y s _ m s y n c
PTR s y s _ r e a d v / * 4 1 4 5 * /
PTR s y s _ w r i t e v
PTR s y s _ c a c h e f l u s h
PTR s y s _ c a c h e c t l
PTR s y s _ s y s m i p s
PTR s y s _ n i _ s y s c a l l / * 4 1 5 0 * /
PTR s y s _ g e t s i d
PTR s y s _ f d a t a s y n c
PTR s y s _ s y s c t l
PTR s y s _ m l o c k
PTR s y s _ m u n l o c k / * 4 1 5 5 * /
PTR s y s _ m l o c k a l l
PTR s y s _ m u n l o c k a l l
PTR s y s _ s c h e d _ s e t p a r a m
PTR s y s _ s c h e d _ g e t p a r a m
PTR s y s _ s c h e d _ s e t s c h e d u l e r / * 4 1 6 0 * /
PTR s y s _ s c h e d _ g e t s c h e d u l e r
PTR s y s _ s c h e d _ y i e l d
PTR s y s _ s c h e d _ g e t _ p r i o r i t y _ m a x
PTR s y s _ s c h e d _ g e t _ p r i o r i t y _ m i n
PTR s y s _ s c h e d _ r r _ g e t _ i n t e r v a l / * 4 1 6 5 * /
PTR s y s _ n a n o s l e e p
PTR s y s _ m r e m a p
PTR s y s _ a c c e p t
PTR s y s _ b i n d
PTR s y s _ c o n n e c t / * 4 1 7 0 * /
PTR s y s _ g e t p e e r n a m e
PTR s y s _ g e t s o c k n a m e
PTR s y s _ g e t s o c k o p t
PTR s y s _ l i s t e n
PTR s y s _ r e c v / * 4 1 7 5 * /
PTR s y s _ r e c v f r o m
PTR s y s _ r e c v m s g
PTR s y s _ s e n d
PTR s y s _ s e n d m s g
PTR s y s _ s e n d t o / * 4 1 8 0 * /
PTR s y s _ s e t s o c k o p t
PTR s y s _ s h u t d o w n
PTR s y s _ s o c k e t
PTR s y s _ s o c k e t p a i r
PTR s y s _ s e t r e s u i d / * 4 1 8 5 * /
PTR s y s _ g e t r e s u i d
PTR s y s _ n i _ s y s c a l l / * w a s s y s _ q u e r y _ m o d u l e * /
PTR s y s _ p o l l
PTR s y s _ n i _ s y s c a l l / * w a s n f s s e r v c t l * /
PTR s y s _ s e t r e s g i d / * 4 1 9 0 * /
PTR s y s _ g e t r e s g i d
PTR s y s _ p r c t l
PTR s y s _ r t _ s i g r e t u r n
PTR s y s _ r t _ s i g a c t i o n
PTR s y s _ r t _ s i g p r o c m a s k / * 4 1 9 5 * /
PTR s y s _ r t _ s i g p e n d i n g
PTR s y s _ r t _ s i g t i m e d w a i t
PTR s y s _ r t _ s i g q u e u e i n f o
PTR s y s _ r t _ s i g s u s p e n d
PTR s y s _ p r e a d64 / * 4 2 0 0 * /
PTR s y s _ p w r i t e 6 4
PTR s y s _ c h o w n
PTR s y s _ g e t c w d
PTR s y s _ c a p g e t
PTR s y s _ c a p s e t / * 4 2 0 5 * /
PTR s y s _ s i g a l t s t a c k
PTR s y s _ s e n d f i l e
PTR s y s _ n i _ s y s c a l l
PTR s y s _ n i _ s y s c a l l
PTR s y s _ m i p s _ m m a p2 / * 4 2 1 0 * /
PTR s y s _ t r u n c a t e 6 4
PTR s y s _ f t r u n c a t e 6 4
PTR s y s _ s t a t 6 4
PTR s y s _ l s t a t 6 4
PTR s y s _ f s t a t 6 4 / * 4 2 1 5 * /
PTR s y s _ p i v o t _ r o o t
PTR s y s _ m i n c o r e
PTR s y s _ m a d v i s e
PTR s y s _ g e t d e n t s64
PTR s y s _ f c n t l 6 4 / * 4 2 2 0 * /
PTR s y s _ n i _ s y s c a l l
PTR s y s _ g e t t i d
PTR s y s _ r e a d a h e a d
PTR s y s _ s e t x a t t r
PTR s y s _ l s e t x a t t r / * 4 2 2 5 * /
PTR s y s _ f s e t x a t t r
PTR s y s _ g e t x a t t r
PTR s y s _ l g e t x a t t r
PTR s y s _ f g e t x a t t r
PTR s y s _ l i s t x a t t r / * 4 2 3 0 * /
PTR s y s _ l l i s t x a t t r
PTR s y s _ f l i s t x a t t r
PTR s y s _ r e m o v e x a t t r
PTR s y s _ l r e m o v e x a t t r
PTR s y s _ f r e m o v e x a t t r / * 4 2 3 5 * /
PTR s y s _ t k i l l
PTR s y s _ s e n d f i l e 6 4
PTR s y s _ f u t e x
2006-04-05 12:45:47 +04:00
# ifdef C O N F I G _ M I P S _ M T _ F P A F F
/ *
* For F P U a f f i n i t y s c h e d u l i n g o n M I P S M T p r o c e s s o r s , w e n e e d t o
* intercept s y s _ s c h e d _ x x x a f f i n i t y ( ) c a l l s u n t i l w e g e t a p r o p e r h o o k
2013-06-04 11:40:24 +04:00
* in k e r n e l / s c h e d / c o r e . c . C o n s i d e r e d o n l y t e m p o r a r y w e o n l y s u p p o r t
* these h o o k s f o r t h e 3 2 - b i t k e r n e l - t h e r e i s n o M I P S 6 4 M T p r o c e s s o r
* atm.
2006-04-05 12:45:47 +04:00
* /
2012-07-14 11:22:05 +04:00
PTR m i p s m t _ s y s _ s c h e d _ s e t a f f i n i t y
PTR m i p s m t _ s y s _ s c h e d _ g e t a f f i n i t y
2006-04-05 12:45:47 +04:00
# else
2012-07-14 11:22:05 +04:00
PTR s y s _ s c h e d _ s e t a f f i n i t y
PTR s y s _ s c h e d _ g e t a f f i n i t y / * 4 2 4 0 * /
2006-04-05 12:45:47 +04:00
# endif / * C O N F I G _ M I P S _ M T _ F P A F F * /
2012-07-14 11:22:05 +04:00
PTR s y s _ i o _ s e t u p
PTR s y s _ i o _ d e s t r o y
PTR s y s _ i o _ g e t e v e n t s
PTR s y s _ i o _ s u b m i t
PTR s y s _ i o _ c a n c e l / * 4 2 4 5 * /
PTR s y s _ e x i t _ g r o u p
PTR s y s _ l o o k u p _ d c o o k i e
PTR s y s _ e p o l l _ c r e a t e
PTR s y s _ e p o l l _ c t l
PTR s y s _ e p o l l _ w a i t / * 4 2 5 0 * /
PTR s y s _ r e m a p _ f i l e _ p a g e s
PTR s y s _ s e t _ t i d _ a d d r e s s
PTR s y s _ r e s t a r t _ s y s c a l l
PTR s y s _ f a d v i s e 6 4 _ 6 4
PTR s y s _ s t a t f s64 / * 4 2 5 5 * /
PTR s y s _ f s t a t f s64
PTR s y s _ t i m e r _ c r e a t e
PTR s y s _ t i m e r _ s e t t i m e
PTR s y s _ t i m e r _ g e t t i m e
PTR s y s _ t i m e r _ g e t o v e r r u n / * 4 2 6 0 * /
PTR s y s _ t i m e r _ d e l e t e
PTR s y s _ c l o c k _ s e t t i m e
PTR s y s _ c l o c k _ g e t t i m e
PTR s y s _ c l o c k _ g e t r e s
PTR s y s _ c l o c k _ n a n o s l e e p / * 4 2 6 5 * /
PTR s y s _ t g k i l l
PTR s y s _ u t i m e s
PTR s y s _ m b i n d
2014-06-26 07:41:29 +04:00
PTR s y s _ g e t _ m e m p o l i c y
PTR s y s _ s e t _ m e m p o l i c y / * 4 2 7 0 * /
2012-07-14 11:22:05 +04:00
PTR s y s _ m q _ o p e n
PTR s y s _ m q _ u n l i n k
PTR s y s _ m q _ t i m e d s e n d
PTR s y s _ m q _ t i m e d r e c e i v e
PTR s y s _ m q _ n o t i f y / * 4 2 7 5 * /
PTR s y s _ m q _ g e t s e t a t t r
PTR s y s _ n i _ s y s c a l l / * s y s _ v s e r v e r * /
PTR s y s _ w a i t i d
PTR s y s _ n i _ s y s c a l l / * a v a i l a b l e , w a s s e t a l t r o o t * /
PTR s y s _ a d d _ k e y / * 4 2 8 0 * /
PTR s y s _ r e q u e s t _ k e y
PTR s y s _ k e y c t l
PTR s y s _ s e t _ t h r e a d _ a r e a
PTR s y s _ i n o t i f y _ i n i t
PTR s y s _ i n o t i f y _ a d d _ w a t c h / * 4 2 8 5 * /
PTR s y s _ i n o t i f y _ r m _ w a t c h
PTR s y s _ m i g r a t e _ p a g e s
PTR s y s _ o p e n a t
PTR s y s _ m k d i r a t
PTR s y s _ m k n o d a t / * 4 2 9 0 * /
PTR s y s _ f c h o w n a t
PTR s y s _ f u t i m e s a t
PTR s y s _ f s t a t a t 6 4
PTR s y s _ u n l i n k a t
PTR s y s _ r e n a m e a t / * 4 2 9 5 * /
PTR s y s _ l i n k a t
PTR s y s _ s y m l i n k a t
PTR s y s _ r e a d l i n k a t
PTR s y s _ f c h m o d a t
PTR s y s _ f a c c e s s a t / * 4 3 0 0 * /
PTR s y s _ p s e l e c t 6
PTR s y s _ p p o l l
PTR s y s _ u n s h a r e
PTR s y s _ s p l i c e
PTR s y s _ s y n c _ f i l e _ r a n g e / * 4 3 0 5 * /
PTR s y s _ t e e
PTR s y s _ v m s p l i c e
PTR s y s _ m o v e _ p a g e s
PTR s y s _ s e t _ r o b u s t _ l i s t
PTR s y s _ g e t _ r o b u s t _ l i s t / * 4 3 1 0 * /
PTR s y s _ k e x e c _ l o a d
PTR s y s _ g e t c p u
PTR s y s _ e p o l l _ p w a i t
PTR s y s _ i o p r i o _ s e t
PTR s y s _ i o p r i o _ g e t / * 4 3 1 5 * /
PTR s y s _ u t i m e n s a t
PTR s y s _ s i g n a l f d
PTR s y s _ n i _ s y s c a l l / * w a s t i m e r f d * /
PTR s y s _ e v e n t f d
PTR s y s _ f a l l o c a t e / * 4 3 2 0 * /
PTR s y s _ t i m e r f d _ c r e a t e
PTR s y s _ t i m e r f d _ g e t t i m e
PTR s y s _ t i m e r f d _ s e t t i m e
PTR s y s _ s i g n a l f d4
PTR s y s _ e v e n t f d2 / * 4 3 2 5 * /
PTR s y s _ e p o l l _ c r e a t e 1
PTR s y s _ d u p3
PTR s y s _ p i p e 2
PTR s y s _ i n o t i f y _ i n i t 1
PTR s y s _ p r e a d v / * 4 3 3 0 * /
PTR s y s _ p w r i t e v
PTR s y s _ r t _ t g s i g q u e u e i n f o
PTR s y s _ p e r f _ e v e n t _ o p e n
PTR s y s _ a c c e p t 4
PTR s y s _ r e c v m m s g / * 4 3 3 5 * /
PTR s y s _ f a n o t i f y _ i n i t
PTR s y s _ f a n o t i f y _ m a r k
PTR s y s _ p r l i m i t 6 4
PTR s y s _ n a m e _ t o _ h a n d l e _ a t
PTR s y s _ o p e n _ b y _ h a n d l e _ a t / * 4 3 4 0 * /
PTR s y s _ c l o c k _ a d j t i m e
PTR s y s _ s y n c f s
PTR s y s _ s e n d m m s g
PTR s y s _ s e t n s
PTR s y s _ p r o c e s s _ v m _ r e a d v / * 4 3 4 5 * /
PTR s y s _ p r o c e s s _ v m _ w r i t e v
PTR s y s _ k c m p
PTR s y s _ f i n i t _ m o d u l e
2014-02-04 16:29:01 +04:00
PTR s y s _ s c h e d _ s e t a t t r
PTR s y s _ s c h e d _ g e t a t t r / * 4 3 5 0 * /
2014-05-13 19:56:41 +04:00
PTR s y s _ r e n a m e a t 2
2014-06-11 02:45:09 +04:00
PTR s y s _ s e c c o m p
2014-08-26 05:03:40 +04:00
PTR s y s _ g e t r a n d o m
PTR s y s _ m e m f d _ c r e a t e