- May 10, 2018
-
-
Tommaso Tocci authored
-
Tommaso Tocci authored
Support for the following calls has been added: - opendir - readdir - closedir The readdir call use the new RPC get_dirents that ask to all the nodes (broadcast) about all the existing first-level entries of a specific directory.
-
Tommaso Tocci authored
Allow to add already instantiated OpenFile to the OpenFileMap. This will come in hands when we will have sub-classes of the OpenFile. In that case this new add function will accept all object that are derived from the OpenFile class. See directories functionalities.
-
- May 08, 2018
-
-
Tommaso Tocci authored
-
Tommaso Tocci authored
-
Tommaso Tocci authored
-
Tommaso Tocci authored
The new PreloadContext class is used as singleton to store the general context information of the interception library. The plan is to move global accessed variables into this sigleton. At the moment just the logger object has been moved into it.
-
- Apr 16, 2018
-
-
Tommaso Tocci authored
-
- Apr 10, 2018
-
-
Marc Vef authored
It is only relevant for sparse files but the current implementation has a too high overhead on a single node (~10%). We need to find a better solution at a later point.
-
- Apr 09, 2018
-
- Apr 08, 2018
-
-
Marc Vef authored
This is an optimization for mdtest which shows very slow performance in removing files, getting worse with an increasing number of nodes.
-
- Apr 06, 2018
-
-
Tommaso Tocci authored
Postpone the creation of the OpenFile object until we are sure that the file actually exists and we have enough access rigths for it.
-
- Apr 03, 2018
-
-
Tommaso Tocci authored
Since POSIX.1-2001 the S_IFMT (0170000) bitmask of the file mode must contain the file type. At the moment we correctly support - [S_IFREG] regular file - [S_IFDIR] directory
-
- Mar 25, 2018
-
-
Marc Vef authored
-
- Mar 19, 2018
- Mar 15, 2018
-
-
Marc Vef authored
The LRU map caused multiple issues with memory mappings and caused severe errors and hanging situations. It has been replaced with a std::map. An Argobots mutex was added for rpc address lookups as many threads might insert and lookup this map in parallel. This caused bulk_transfer seqfauls as well as other file system crashes. Cleanup of file system logging.
-
Marc Vef authored
-
Marc Vef authored
-
Marc Vef authored
Only use 1 segment now but with multiple transfers
-
- Mar 09, 2018
-
-
Marc Vef authored
We need to be explicit about I/O as it cannot be simply repeated. A response from the daemon will come eventually, either success or failure.
-
Marc Vef authored
-
Marc Vef authored
Previously, an ES was created for each destination in each read or write. Creating and freeing these ES is costly. Also, these ESs had separate pools, which is bad practice. Multiple ESs work on a single pool. The ABT_sched decides which ULT or Tasklet is run by which ES at any time. This change does also reduce CPU load as library IO RPC calls used CPU time while waiting for the response.
-
Marc Vef authored
-
- Mar 05, 2018
-
-
Marc Vef authored
ADA-FS's statfs will fill the struct mostly with rough estimations. It is not supposed to return accurate data but "some" data for applications to work
-
- Mar 02, 2018
- Jan 29, 2018
- Jan 24, 2018
-
-
Marc Vef authored
Preload lib: RPC/IPC Mercury/Margo environments are only initialized if the mountdir path is used by the application For that, the daemon writes the mountdir (it was started with) to a configurable path to disk. The libraries read this value and only the process that uses part of this path will actually trigger the environment initialization. This forbids prior behavior where applications initialize the whole environment numerous times, although unused. For example, any MPI program will spawn multiple processes, all with the LD_PRELOAD environment variable set.
-
- Jan 19, 2018
-
-
Marc Vef authored
-
- Jan 16, 2018
-
-
Marc Vef authored
-
- Jan 15, 2018
-
-
Marc Vef authored
- should permissions be checked when access() is called or discarded. Default off //#define CHECK_ACCESS - If access permissions should be checked while opening a file. Default off //#define CHECK_ACCESS_DURING_OPEN - If disabled, a file or directory is always presumed to be there (even if it is not). No check is executed. Default on. #define DO_LOOKUP
-
Marc Vef authored
- Add: adafs_access, open with check if object exists - Add: root metadentry to database of each node - Modified: Open, unlink, mkdir, rmdir and combined their functionality to "create node" and "remove node"
-
- Jan 12, 2018
-
-
Marc Vef authored
-
- Dec 14, 2017
-
-
Marc Vef authored
-
- Dec 13, 2017
-
-
Marc Vef authored
-