change function names

This commit is contained in:
Tomoki Shirasawa
2012-12-17 16:15:05 +09:00
parent 0a808057eb
commit 4693789608
49 changed files with 800 additions and 800 deletions

View File

@ -4,30 +4,30 @@
int memcpy_async(unsigned long dest, unsigned long src,
unsigned long len, int wait, unsigned long *notify)
{
struct aal_dma_request req;
struct ihk_dma_request req;
unsigned long fin = 0;
if (notify)
*notify = 0;
memset(&req, 0, sizeof(req));
/* Physical */
req.src_os = (aal_os_t)AAL_THIS_OS;
req.src_os = (ihk_os_t)IHK_THIS_OS;
req.src_phys = src;
req.dest_os = (aal_os_t)AAL_THIS_OS;
req.dest_os = (ihk_os_t)IHK_THIS_OS;
req.dest_phys = dest;
req.size = len;
if (notify) {
req.notify_os = (aal_os_t)AAL_THIS_OS;
req.notify_os = (ihk_os_t)IHK_THIS_OS;
req.notify = (void *)virt_to_phys(notify);
req.priv = (void *)1;
} else if (wait) {
req.notify_os = (aal_os_t)AAL_THIS_OS;
req.notify_os = (ihk_os_t)IHK_THIS_OS;
req.notify = (void *)virt_to_phys(&fin);
req.priv = (void *)1;
}
aal_mc_dma_request(0, &req);
ihk_mc_dma_request(0, &req);
if (wait) {
while (!fin) {
barrier();