From 028476f19c0b6fd8cd5069837fcb3f0faf9d0173 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Tue, 15 Nov 2016 15:09:08 +0100 Subject: [PATCH] btrfs-progs: send-stream: document return values of some functions Signed-off-by: David Sterba --- send-stream.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/send-stream.c b/send-stream.c index 913a17ff..d2de9d39 100644 --- a/send-stream.c +++ b/send-stream.c @@ -37,6 +37,13 @@ struct btrfs_send_stream { void *user; }; +/* + * Read len bytes to buf. + * Return: + * 0 - success + * < 0 - negative errno in case of error + * > 0 - no data read, EOF + */ static int read_buf(struct btrfs_send_stream *sctx, char *buf, size_t len) { int ret; @@ -68,6 +75,10 @@ out: /* * Reads a single command from kernel space and decodes the TLV's into * sctx->cmd_attrs + * + * Returns: + * 0 - success + * < 0 - an error in the command */ static int read_cmd(struct btrfs_send_stream *sctx) {