linux-nova
linux-nova copied to clipboard
NOVA is a log-structured file system designed for byte-addressable non-volatile memories, developed at the University of California, San Diego.
#### Issue In functions `nova_seq_delete_snapshot` and `nova_seq_test_perf`, NOVA directly `sscanf` from the user's buffer, which is unsafe and could cause Segment Fault sometimes. Instead, in the function `nova_seq_gc`, NOVA copies...
#### Issue The inode number is incorrect when `readdir`. #### Reproduce The blow C code is used to read the directory and print out the `d_ino`. ```c #include #include #include...
#### Issue In the function `nova_init_inode_list_from_inode`, `struct nova_inode_info_header sih` is not zero-out, leading to Read Fault in `nova_free_inode_log` due to the memory copy from the primary inode to the alternative...
Hi, I was trying to mount NOVA on small PMEM devices (preferably less than 64MiB). For that, I emulated a permanent memory device using memmap and created 2 partitions. While...