X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Ftests%2Fllapi_fid_test.c;h=cefc10d517fa6bad54e45e6f8a699f0b6586f916;hb=d187a78afc960849c3eb86a1a0559c9ba00e8cdf;hp=ba8cd1ea8369568977c5845146e554e9301724cb;hpb=6712478e79588e73e28c7ccac3afc7ac2368a4f3;p=fs%2Flustre-release.git diff --git a/lustre/tests/llapi_fid_test.c b/lustre/tests/llapi_fid_test.c index ba8cd1e..cefc10d 100644 --- a/lustre/tests/llapi_fid_test.c +++ b/lustre/tests/llapi_fid_test.c @@ -22,6 +22,9 @@ /* * Copyright 2014 Cray Inc, all rights reserved. + * + * Copyright (c) 2016, Intel Corporation. + * * Author: Frank Zago. * * A few portions are extracted from llapi_layout_test.c @@ -99,9 +102,9 @@ static void cleanup(void) * file/directory */ static void helper_fid2path(const char *filename, int fd) { - lustre_fid fid; - lustre_fid fid2; - lustre_fid fid3; + struct lu_fid fid; + struct lu_fid fid2; + struct lu_fid fid3; char fidstr[FID_LEN + 1]; char path1[PATH_MAX]; char path2[PATH_MAX]; @@ -237,7 +240,7 @@ static void test11(void) { int rc; int fd; - lustre_fid fid; + struct lu_fid fid; char fidstr[FID_LEN + 1]; char path[PATH_MAX]; long long recno; @@ -273,7 +276,7 @@ static void test12(void) int fd; int fd2; int fd3; - lustre_fid fid; + struct lu_fid fid; /* Against a volatile file */ rc = mkdir(mainpath, 0); @@ -367,7 +370,7 @@ static void test30(void) } links[num_links]; char buf[PATH_MAX]; char buf2[PATH_MAX]; - lustre_fid fid; + struct lu_fid fid; char fidstr[FID_LEN + 1]; int rc; int i; @@ -473,8 +476,8 @@ static void test30(void) * type). mainpath must exist. */ static void help_test40(void) { - lustre_fid parent_fid; - lustre_fid fid2; + struct lu_fid parent_fid; + struct lu_fid fid2; char buf[PATH_MAX]; int rc; @@ -571,7 +574,7 @@ static void test42(void) const int num_links = 100; struct { char subdir[PATH_MAX]; - lustre_fid subdir_fid; + struct lu_fid subdir_fid; char filename[PATH_MAX]; bool seen; } links[num_links]; @@ -581,7 +584,7 @@ static void test42(void) int i; int fd; int linkno; - lustre_fid parent_fid; + struct lu_fid parent_fid; /* Create the containing directory. */ rc = mkdir(mainpath, 0);