From 2b61d6b5ccec2f5be02081ddde87165959880bd5 Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Thu, 25 Aug 2016 05:54:42 +0200 Subject: Require uthash-devel instead of uthash --- pcitool.spec.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcitool.spec.in b/pcitool.spec.in index 645492b..8467519 100644 --- a/pcitool.spec.in +++ b/pcitool.spec.in @@ -18,7 +18,7 @@ Vendor: Institute for Data Processing and Electronics, KIT Packager: Suren A. Chilingaryan Source: ${CPACK_SOURCE_PACKAGE_FILE_NAME}.tar.bz2 URL: http://darksoft.org -BuildRequires: libfastwriter-devel libxml2-devel uthash +BuildRequires: libfastwriter-devel libxml2-devel uthash-devel BuildRequires: python python-devel swig BuildRequires: dkms BuildRequires: doxygen @@ -59,7 +59,7 @@ API exposes 4 API layers. Summary: Development files for pcilib Group: Development/Libraries Requires: libpcilib${PCILIB_ABI_VERSION} = %{version} -Requires: uthash +Requires: uthash-devel %description -n libpcilib-devel Development files for user-space PCI library -- cgit v1.2.1 From 1cec8390c4e4e4a98e14bbe5a3f6d8826c890c8c Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Thu, 25 Aug 2016 06:14:16 +0200 Subject: Fix ABI version --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 92ff3b5..4e259bd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,8 @@ project(pcitool C) -set(RELEASE "3") +set(RELEASE "0") set(PCILIB_VERSION "0.2.8") -set(PCILIB_ABI_VERSION "0") +set(PCILIB_ABI_VERSION "2") cmake_minimum_required(VERSION 2.8) #set(PKG_CONFIG_USE_CMAKE_PREFIX_PATH true) -- cgit v1.2.1 From 39c23788696c7f1ff76687bfeac376a919138844 Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Thu, 24 Nov 2016 12:24:43 +0100 Subject: Reduce number of DMA pages used by IPEDMA engine to address current hardware limit of 1023 --- dma/ipe.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dma/ipe.h b/dma/ipe.h index 2cd045d..849aa9d 100644 --- a/dma/ipe.h +++ b/dma/ipe.h @@ -6,7 +6,7 @@ #include "version.h" #define IPEDMA_PAGE_SIZE 4096l /**< page size */ -#define IPEDMA_DMA_PAGES 1024l /**< number of DMA pages in the ring buffer to allocate */ +#define IPEDMA_DMA_PAGES 512l /**< number of DMA pages in the ring buffer to allocate */ #define IPEDMA_DMA_TIMEOUT 100000l /**< us, overrides PCILIB_DMA_TIMEOUT (actual hardware timeout is 50ms according to Lorenzo) */ -- cgit v1.2.1