2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-11-22 17:41:55 +00:00

Add always_inline attribute to force gcc to inline single-instruction

functions.
This commit is contained in:
Michael Brown 2007-05-01 10:17:29 +00:00
parent 123a98db26
commit 817a446cc6
2 changed files with 4 additions and 4 deletions

View File

@ -98,7 +98,7 @@ static inline void job_init ( struct job_interface *job,
* @v intf Generic object communication interface
* @ret job Job control interface
*/
static inline struct job_interface *
static inline __attribute__ (( always_inline )) struct job_interface *
intf_to_job ( struct interface *intf ) {
return container_of ( intf, struct job_interface, intf );
}
@ -109,7 +109,7 @@ intf_to_job ( struct interface *intf ) {
* @v job Job control interface
* @ret dest Destination interface
*/
static inline struct job_interface *
static inline __attribute__ (( always_inline )) struct job_interface *
job_dest ( struct job_interface *job ) {
return intf_to_job ( job->intf.dest );
}

View File

@ -138,7 +138,7 @@ static inline void xfer_init ( struct xfer_interface *xfer,
* @v intf Generic object communication interface
* @ret xfer Data transfer interface
*/
static inline struct xfer_interface *
static inline __attribute__ (( always_inline )) struct xfer_interface *
intf_to_xfer ( struct interface *intf ) {
return container_of ( intf, struct xfer_interface, intf );
}
@ -149,7 +149,7 @@ intf_to_xfer ( struct interface *intf ) {
* @v xfer Data transfer interface
* @ret dest Destination interface
*/
static inline struct xfer_interface *
static inline __attribute__ (( always_inline )) struct xfer_interface *
xfer_dest ( struct xfer_interface *xfer ) {
return intf_to_xfer ( xfer->intf.dest );
}