Changeset 8872
- Timestamp:
- 06/08/11 18:52:28 (2 years ago)
- Location:
- branches/Orange-Branch
- Files:
-
- 7 modified
-
src/common/misc/pint-cached-config.c (modified) (2 diffs)
-
src/kernel/linux-2.6/inode.c (modified) (1 diff)
-
test/io/buffer/mt_test4.c (modified) (1 diff)
-
test/io/trove/trove-ls.c (modified) (1 diff)
-
test/io/trove/trove-rm.c (modified) (1 diff)
-
test/io/trove/trove-test.h (modified) (1 diff)
-
test/posix/libstat.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/Orange-Branch/src/common/misc/pint-cached-config.c
r8869 r8872 319 319 } 320 320 321 if( type != PINT_SERVER_TYPE_META &&type != PINT_SERVER_TYPE_IO)321 if((int)type != PINT_SERVER_TYPE_META && (int)type != PINT_SERVER_TYPE_IO) 322 322 { 323 323 return(-PVFS_EINVAL); … … 336 336 assert(cur_config_cache->fs); 337 337 338 if( type == PINT_SERVER_TYPE_META)338 if((int)type == PINT_SERVER_TYPE_META) 339 339 { 340 340 server_cursor = -
branches/Orange-Branch/src/kernel/linux-2.6/inode.c
r8806 r8872 94 94 if (!add_to_page_cache(page, mapping, page->index, GFP_KERNEL)) { 95 95 ret = read_one_page(page); 96 gossip_debug(GOSSIP_INODE_DEBUG, "failure adding page to cache, " 97 "read_one_page returned: %d\n", ret); 96 98 } 97 99 else { -
branches/Orange-Branch/test/io/buffer/mt_test4.c
r8871 r8872 27 27 NCAC_info_t info; 28 28 29 int ret1, ret2 , ret3;29 int ret1, ret2; 30 30 int extcnt; 31 31 int threadcnt; -
branches/Orange-Branch/test/io/trove/trove-ls.c
r7959 r8872 93 93 if (ret < 0) return -1; 94 94 95 if ( s_attr.type != TROVE_TEST_DIR) {95 if ((int)s_attr.type != TROVE_TEST_DIR) { 96 96 fprintf(stderr, "%s is not a directory.\n", path_name); 97 97 return -1; -
branches/Orange-Branch/test/io/trove/trove-rm.c
r7959 r8872 116 116 if (ret < 0) return -1; 117 117 118 if ( s_attr.type != TROVE_TEST_FILE) {118 if ((int)s_attr.type != TROVE_TEST_FILE) { 119 119 fprintf(stderr, "%s is not a file.\n", file_name); 120 120 return -1; -
branches/Orange-Branch/test/io/trove/trove-test.h
r7500 r8872 93 93 if (state != 0) return -1; 94 94 95 if ( s_attr.type != TROVE_TEST_DIR) {95 if ((int)s_attr.type != TROVE_TEST_DIR) { 96 96 fprintf(stderr, "%s is not a directory.\n", dir); 97 97 return -1; -
branches/Orange-Branch/test/posix/libstat.c
r5656 r8872 6 6 #include <linux/types.h> 7 7 #include <assert.h> 8 #include <linux/dirent.h>9 8 #include <linux/unistd.h> 10 9
