Remove references to multi-node systems in movedata.c
Multi-node systems are not supported. Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com> Change-Id: If16ffde2bf18d8729bc7d16e558db146b042bb36
This commit is contained in:
parent
6f39a8d627
commit
3b70db2da3
1 changed files with 4 additions and 6 deletions
|
@ -43,7 +43,7 @@
|
||||||
/* forward declarations */
|
/* forward declarations */
|
||||||
|
|
||||||
|
|
||||||
static void mvdreq_LILC(struct moved_req *ReqArgs);
|
static void mvdreq_copy(struct moved_req *ReqArgs);
|
||||||
|
|
||||||
static void mvdreq_docont(struct k_args *Cont);
|
static void mvdreq_docont(struct k_args *Cont);
|
||||||
|
|
||||||
|
@ -83,19 +83,17 @@ void K_mvdreq(struct k_args *Req)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* local memcpy? :
|
mvdreq_copy(ReqArgs);
|
||||||
*/
|
|
||||||
mvdreq_LILC(ReqArgs);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
*
|
*
|
||||||
* mvdreq_LILC - locally initiated, locally copied movedata request
|
* mvdreq_copy - perform movedata request
|
||||||
*
|
*
|
||||||
* RETURNS: N/A
|
* RETURNS: N/A
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static void mvdreq_LILC(struct moved_req *ReqArgs)
|
static void mvdreq_copy(struct moved_req *ReqArgs)
|
||||||
{
|
{
|
||||||
k_memcpy_s(ReqArgs->destination,
|
k_memcpy_s(ReqArgs->destination,
|
||||||
OCTET_TO_SIZEOFUNIT(ReqArgs->iTotalSize),
|
OCTET_TO_SIZEOFUNIT(ReqArgs->iTotalSize),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue