diff options
author | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2011-12-14 00:29:21 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2011-12-14 00:29:21 +0100 |
commit | c4c9ad7708ddd3114f78c5f860ebfeb92cfb79c3 (patch) | |
tree | 19063034154415a9a0076b18d7b626dad50bc2ea /driver/kmem.c | |
parent | a7cd579fbd12fdfc84ac5eff32dd5af093d78631 (diff) | |
download | pcitool-c4c9ad7708ddd3114f78c5f860ebfeb92cfb79c3.tar.gz pcitool-c4c9ad7708ddd3114f78c5f860ebfeb92cfb79c3.tar.bz2 pcitool-c4c9ad7708ddd3114f78c5f860ebfeb92cfb79c3.tar.xz pcitool-c4c9ad7708ddd3114f78c5f860ebfeb92cfb79c3.zip |
Synchronize kernel buffers during the read-kernel-memory and while accessing via sysfs
Diffstat (limited to 'driver/kmem.c')
-rw-r--r-- | driver/kmem.c | 29 |
1 files changed, 20 insertions, 9 deletions
diff --git a/driver/kmem.c b/driver/kmem.c index acf1263..37a7368 100644 --- a/driver/kmem.c +++ b/driver/kmem.c @@ -323,24 +323,19 @@ int pcidriver_kmem_free_all(pcidriver_privdata_t *privdata) return 0; } + /** * * Synchronize memory to/from the device (or in both directions). * */ -int pcidriver_kmem_sync( pcidriver_privdata_t *privdata, kmem_sync_t *kmem_sync ) +int pcidriver_kmem_sync_entry( pcidriver_privdata_t *privdata, pcidriver_kmem_entry_t *kmem_entry, int direction) { - pcidriver_kmem_entry_t *kmem_entry; - - /* Find the associated kmem_entry for this buffer */ - if ((kmem_entry = pcidriver_kmem_find_entry(privdata, &(kmem_sync->handle))) == NULL) - return -EINVAL; /* kmem_handle is not valid */ - if (kmem_entry->direction == PCI_DMA_NONE) return -EINVAL; #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,11) - switch (kmem_sync->dir) { + switch (direction) { case PCILIB_KMEM_SYNC_TODEVICE: pci_dma_sync_single_for_device( privdata->pdev, kmem_entry->dma_handle, kmem_entry->size, kmem_entry->direction ); break; @@ -355,7 +350,7 @@ int pcidriver_kmem_sync( pcidriver_privdata_t *privdata, kmem_sync_t *kmem_sync return -EINVAL; /* wrong direction parameter */ } #else - switch (kmem_sync->dir) { + switch (direction) { case PCILIB_KMEM_SYNC_TODEVICE: pci_dma_sync_single( privdata->pdev, kmem_entry->dma_handle, kmem_entry->size, kmem_entry->direction ); break; @@ -375,6 +370,22 @@ int pcidriver_kmem_sync( pcidriver_privdata_t *privdata, kmem_sync_t *kmem_sync /** * + * Synchronize memory to/from the device (or in both directions). + * + */ +int pcidriver_kmem_sync( pcidriver_privdata_t *privdata, kmem_sync_t *kmem_sync ) +{ + pcidriver_kmem_entry_t *kmem_entry; + + /* Find the associated kmem_entry for this buffer */ + if ((kmem_entry = pcidriver_kmem_find_entry(privdata, &(kmem_sync->handle))) == NULL) + return -EINVAL; /* kmem_handle is not valid */ + + return pcidriver_kmem_sync_entry(privdata, kmem_entry, kmem_sync->dir); +} + +/** + * * Free the given kmem_entry and its memory. * */ |