File tree Expand file tree Collapse file tree 4 files changed +18
-10
lines changed
Expand file tree Collapse file tree 4 files changed +18
-10
lines changed Original file line number Diff line number Diff line change 1+ # 1.2.1
2+ - Set library version correctly
3+ - Fix test build
4+
5+ # 1.2.0
6+ This is mostly a bug fix release, there's no major new feature:
7+ - Fix to support devices names with a hexadecimal domain name
8+ - Allow to override path to read driver info (LIBOCXL_SYSPATH)
9+ - Documentation enhancements
10+ - Makefile/build enhancements
11+ - Add tests for debug AFUs (memcpy, afp)
12+
13+
114# 1.1.0
215## User facing changes
316 - Requires Linux headers >= 4.18 to compile
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ MAKEFLAGS += -rR
66VERSION_MAJOR = 1
77
88# Change VERSION_MINOR on new features
9- VERSION_MINOR = 1
9+ VERSION_MINOR = 2
1010
1111# Change VERSION_PATCH on each tag
12- VERSION_PATCH = 0
12+ VERSION_PATCH = 1
1313
1414AR = $(CROSS_COMPILE)ar
1515AS = $(CROSS_COMPILE)as
Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17+ #include "libocxl_internal.h"
1718#include <unistd.h>
1819#include <string.h>
1920#include <stdlib.h>
2425#include <pthread.h>
2526#include <signal.h>
2627#include <fcntl.h>
27-
2828#include <misc/ocxl.h>
29-
30- #include "libocxl_internal.h"
3129#include "static.h"
3230
33- #include <stdlib.h>
34-
3531static const char * ocxl_sysfs_path = "/tmp/ocxl-test" ;
3632static const char * ocxl_dev_path = "/dev/ocxl-test" ;
3733
Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17+ #include "libocxl_internal.h"
1718#include <fuse/cuse_lowlevel.h>
1819#include <fuse/fuse_lowlevel.h>
1920#include <linux/poll.h>
20- #include "libocxl_internal.h"
2121#include <misc/ocxl.h>
2222#include <errno.h>
2323#include <sys/types.h>
2626#include <string.h>
2727#include <unistd.h>
2828#include <pthread.h>
29-
3029#include <stdlib.h>
3130
3231typedef struct ocxl_kernel_event_header ocxl_kernel_event_header ;
@@ -193,7 +192,7 @@ bool afu_is_attached() {
193192 * @return the thread for the device, or 0 on error
194193 */
195194pthread_t create_ocxl_device (const char * afu_name , size_t global_mmio_size , size_t per_pasid_mmio_size ) {
196- char sysfs_base [PATH_MAX ];
195+ char sysfs_base [PATH_MAX - 20 ];
197196 char tmp [PATH_MAX ];
198197 char buf [BUF_SIZE ];
199198
You can’t perform that action at this time.
0 commit comments