Changeset 8866
- Timestamp:
- 06/08/11 08:13:28 (2 years ago)
- Location:
- branches/Orange-Branch/src/server
- Files:
-
- 2 modified
-
list-eattr.sm (modified) (1 diff)
-
pvfs2-server.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/Orange-Branch/src/server/list-eattr.sm
r8746 r8866 102 102 gossip_debug(GOSSIP_LISTEATTR_DEBUG, "%s: requested key %d " 103 103 "size of %ld is greater than maximum of %d\n", 104 __func__, i, (int64_t)s_op->req->u.listeattr.keysz[i], 104 __func__, i, 105 ((long int)s_op->req->u.listeattr.keysz[i]), 105 106 PVFS_MAX_XATTR_NAMELEN ); 106 107 js_p->error_code = -PVFS_EINVAL; -
branches/Orange-Branch/src/server/pvfs2-server.c
r8865 r8866 1802 1802 if (argv[optind][0] != '/') 1803 1803 { 1804 if( getcwd(startup_cwd, PATH_MAX) < 0)1804 if( (startup_cwd = getcwd(startup_cwd, PATH_MAX)) == NULL ) 1805 1805 { 1806 1806 gossip_err("Failed to get current working directory to create " … … 2456 2456 gossip_debug(GOSSIP_SERVER_DEBUG, "%s: setting up pool on " 2457 2457 "%s, type: %u, fs_id: %llu, handle: %llu\n", 2458 __func__, host, t, llu(cur_fs->coll_id), 2458 __func__, host, t, 2459 llu(cur_fs->coll_id), 2459 2460 llu(pool_handle)); 2460 2461 ret = precreate_pool_setup_server(host, t,
