changeset 152:3bf63abd5bd9

common: use "handle" as the name for the RPC obj handles Using "obj" is a bit misleading. Also shorted the STAT attr response variable name. Signed-off-by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
author Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
date Sun, 18 Oct 2015 15:50:48 -0400
parents 4557170a0481
children 2a8c2cf48674
files src/common/rpc_fs.x
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/common/rpc_fs.x	Sun Oct 18 14:40:47 2015 -0400
+++ b/src/common/rpc_fs.x	Sun Oct 18 15:50:48 2015 -0400
@@ -45,11 +45,11 @@
 
 %/***** STAT *****/
 struct rpc_stat_req {
-	struct nobjhndl	obj;
+	struct nobjhndl	handle;
 };
 
 struct rpc_stat_res {
-	struct nattr	attributes;
+	struct nattr	attr;
 };
 
 %/***** LOOKUP *****/
@@ -70,7 +70,7 @@
 };
 
 struct rpc_create_res {
-	struct nobjhndl	obj;
+	struct nobjhndl	handle;
 };
 
 %/***** REMOVE *****/