[PVFS2-CVS]
commit by pcarns in pvfs2/test/client/sysint: client.c create.c
flush-1.c flush-2.c io-bug.c io-test-offset.c io-test.c
CVS commit program
cvs at parl.clemson.edu
Wed Mar 24 23:23:39 EST 2004
Update of /projects/cvsroot/pvfs2/test/client/sysint
In directory parlweb:/tmp/cvs-serv13064/test/client/sysint
Modified Files:
client.c create.c flush-1.c flush-2.c io-bug.c
io-test-offset.c io-test.c
Log Message:
added in stub for dist argument to sys_create(), must be set to NULL for
now. None of the other dist changes are in place, but I wanted to go ahead
and get this in for the next point release so we don't break compatibility
adding the sys_create() arg later
Index: client.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/test/client/sysint/client.c,v
diff -p -u -r1.44 -r1.45
--- client.c 24 Mar 2004 23:10:32 -0000 1.44
+++ client.c 25 Mar 2004 04:23:39 -0000 1.45
@@ -122,7 +122,7 @@ int main(
// call create
ret = PVFS_sys_create(entry_name, parent_refn, attr,
- credentials, resp_create);
+ credentials, NULL, resp_create);
if (ret < 0)
{
printf("create failed with errcode = %d\n", ret);
Index: create.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/test/client/sysint/create.c,v
diff -p -u -r1.37 -r1.38
--- create.c 24 Mar 2004 23:10:32 -0000 1.37
+++ create.c 25 Mar 2004 04:23:39 -0000 1.38
@@ -80,7 +80,7 @@ int main(int argc, char **argv)
str_buf, Lu(parent_refn.handle));
ret = PVFS_sys_create(entry_name, parent_refn, attr,
- credentials, &resp_create);
+ credentials, NULL, &resp_create);
if (ret < 0)
{
PVFS_perror("create failed with errcode", ret);
Index: flush-1.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/test/client/sysint/flush-1.c,v
diff -p -u -r1.10 -r1.11
--- flush-1.c 24 Mar 2004 23:10:33 -0000 1.10
+++ flush-1.c 25 Mar 2004 04:23:39 -0000 1.11
@@ -79,7 +79,7 @@ int main(int argc, char **argv)
parent_refn.fs_id = cur_fs;
ret = PVFS_sys_create(entry_name, parent_refn, attr,
- credentials, &resp_create);
+ credentials, NULL, &resp_create);
if (ret < 0)
{
printf("create failed with errcode = %d\n", ret);
Index: flush-2.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/test/client/sysint/flush-2.c,v
diff -p -u -r1.17 -r1.18
--- flush-2.c 24 Mar 2004 23:10:33 -0000 1.17
+++ flush-2.c 25 Mar 2004 04:23:39 -0000 1.18
@@ -130,7 +130,7 @@ int main(
entry_name = &(filename[1]); /* leave off slash */
ret = PVFS_sys_create(entry_name, parent_refn, attr,
- credentials, &resp_cr);
+ credentials, NULL, &resp_cr);
if (ret < 0)
{
fprintf(stderr, "Error: PVFS_sys_create() failure.\n");
Index: io-bug.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/test/client/sysint/io-bug.c,v
diff -p -u -r1.3 -r1.4
--- io-bug.c 24 Mar 2004 23:10:33 -0000 1.3
+++ io-bug.c 25 Mar 2004 04:23:39 -0000 1.4
@@ -136,7 +136,7 @@ int main(
entry_name = &(filename[1]); /* leave off slash */
ret = PVFS_sys_create(entry_name, parent_refn, attr,
- credentials, &resp_cr);
+ credentials, NULL, &resp_cr);
if (ret < 0)
{
fprintf(stderr, "Error: PVFS_sys_create() failure.\n");
Index: io-test-offset.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/test/client/sysint/io-test-offset.c,v
diff -p -u -r1.22 -r1.23
--- io-test-offset.c 24 Mar 2004 23:10:33 -0000 1.22
+++ io-test-offset.c 25 Mar 2004 04:23:39 -0000 1.23
@@ -136,7 +136,7 @@ int main(
entry_name = &(filename[1]); /* leave off slash */
ret = PVFS_sys_create(entry_name, parent_refn, attr,
- credentials, &resp_cr);
+ credentials, NULL, &resp_cr);
if (ret < 0)
{
fprintf(stderr, "Error: PVFS_sys_create() failure.\n");
Index: io-test.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/test/client/sysint/io-test.c,v
diff -p -u -r1.50 -r1.51
--- io-test.c 24 Mar 2004 23:10:33 -0000 1.50
+++ io-test.c 25 Mar 2004 04:23:39 -0000 1.51
@@ -133,7 +133,7 @@ int main(
entry_name = &(filename[1]); /* leave off slash */
ret = PVFS_sys_create(entry_name, parent_refn, attr,
- credentials, &resp_cr);
+ credentials, NULL, &resp_cr);
if (ret < 0)
{
fprintf(stderr, "Error: PVFS_sys_create() failure.\n");
More information about the PVFS2-CVS
mailing list