Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions MAINTAINERS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
The primary maintainers of this project are:

| Maintainer | GitHub ID | Affiliation |
| ---------------- | ----------------------------------------------------- | ----------- |
| Jim Garlick | [garlick](https://github.com/garlick) | LLNL |
| Mark Grondona | [grondo](https://github.com/grondo) | LLNL |
| Al Chu | [chu11](https://github.com/chu11) | LLNL |
3 changes: 2 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ SUBDIRS = \
t

EXTRA_DIST = \
NEWS.md
NEWS.md \
MAINTAINERS.md

export DEB_BUILD_OPTIONS ?= nocheck terse
deb: debian scripts/debbuild.sh
Expand Down
5 changes: 5 additions & 0 deletions src/cmd/diodcli.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ static char *prog;
/* Try to Twalk an open fid.
* This mimics what the linux kernel v9fs client does when
* we ls -l a mounted directory.
* See also: chaos/diod#47
*/
int cmd_open_walk (Npcfid *root, int argc, char **argv)
{
Expand Down Expand Up @@ -106,6 +107,7 @@ int cmd_open_walk (Npcfid *root, int argc, char **argv)
}

/* Tread should work on opened fids even if the file has been removed
* See also: chaos/diod#47
*/
int cmd_open_remove_read (Npcfid *root, int argc, char **argv)
{
Expand Down Expand Up @@ -142,6 +144,7 @@ int cmd_open_remove_read (Npcfid *root, int argc, char **argv)
}

/* Tgetattr should work on opened fids even if the file has been removed
* See also: chaos/diod#19
*/
int cmd_open_remove_getattr (Npcfid *root, int argc, char **argv)
{
Expand Down Expand Up @@ -182,6 +185,7 @@ int cmd_open_remove_getattr (Npcfid *root, int argc, char **argv)
}

/* Tsetattr should work on opened fids even if the file has been removed
* See also: chaos/diod#47
*/
int cmd_open_remove_setattr (Npcfid *root, int argc, char **argv)
{
Expand Down Expand Up @@ -246,6 +250,7 @@ int create_file (Npcfid *root, char *name, u32 mode, char *content, size_t len)

/* Tsetattr on a fid opened from path should not affect path when path
* is no longer the same file
* See also: chaos/diod#47
*/
int cmd_open_remove_create_setattr (Npcfid *root, int argc, char **argv)
{
Expand Down