From 0a00b2b5f6d115829f05bbac260ba7c9bc47c9e4 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 20 May 2016 13:24:11 +0200 Subject: rtems: Remove location from _Partition_Get() Use _Objects_Get_local() for _Partition_Get() to get rid of the location parameter. Move remote object handling to partition MPCI support. --- cpukit/rtems/include/rtems/rtems/partmp.h | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) (limited to 'cpukit/rtems/include/rtems/rtems/partmp.h') diff --git a/cpukit/rtems/include/rtems/rtems/partmp.h b/cpukit/rtems/include/rtems/rtems/partmp.h index e9612e7aba..b9eaa08b8c 100644 --- a/cpukit/rtems/include/rtems/rtems/partmp.h +++ b/cpukit/rtems/include/rtems/rtems/partmp.h @@ -64,6 +64,11 @@ typedef struct { Objects_Id proxy_id; } Partition_MP_Packet; +RTEMS_INLINE_ROUTINE bool _Partition_MP_Is_remote( Objects_Id id ) +{ + return _Objects_MP_Is_remote( id, &_Partition_Information ); +} + /** * @brief Partition_MP_Send_process_packet * @@ -80,15 +85,19 @@ void _Partition_MP_Send_process_packet ( ); /** - * @brief Partition_MP_Send_request_packet - * - * This routine performs a remote procedure call so that a - * directive operation can be initiated on another node. + * @brief Issues a remote rtems_partition_get_buffer() request. + */ +rtems_status_code _Partition_MP_Get_buffer( + rtems_id id, + void **buffer +); + +/** + * @brief Issues a remote rtems_partition_return_buffer() request. */ -rtems_status_code _Partition_MP_Send_request_packet ( - Partition_MP_Remote_operations operation, - Objects_Id partition_id, - void *buffer +rtems_status_code _Partition_MP_Return_buffer( + rtems_id id, + void *buffer ); /** -- cgit v1.2.3