Renamed the FS interface hook read_link() to read_symlink().

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20330 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2007-03-05 03:52:57 +00:00
parent 12d359b85a
commit cf4ccd6575
2 changed files with 10 additions and 5 deletions

View File

@ -113,7 +113,7 @@ typedef struct file_system_module_info {
uint8 event, selectsync *sync); uint8 event, selectsync *sync);
status_t (*fsync)(fs_volume fs, fs_vnode vnode); status_t (*fsync)(fs_volume fs, fs_vnode vnode);
status_t (*read_link)(fs_volume fs, fs_vnode link, char *buffer, status_t (*read_symlink)(fs_volume fs, fs_vnode link, char *buffer,
size_t *_bufferSize); size_t *_bufferSize);
status_t (*create_symlink)(fs_volume fs, fs_vnode dir, const char *name, status_t (*create_symlink)(fs_volume fs, fs_vnode dir, const char *name,
const char *path, int mode); const char *path, int mode);

View File

@ -1642,8 +1642,13 @@ vnode_path_to_vnode(struct vnode *vnode, char *path, bool traverseLeafLink,
goto resolve_link_error; goto resolve_link_error;
} }
status = FS_CALL(nextVnode, read_link)(nextVnode->mount->cookie, if (FS_CALL(nextVnode, read_symlink) != NULL) {
nextVnode->private_node, buffer, &bufferSize); status = FS_CALL(nextVnode, read_symlink)(
nextVnode->mount->cookie, nextVnode->private_node, buffer,
&bufferSize);
} else
status = B_BAD_VALUE;
if (status < B_OK) { if (status < B_OK) {
free(buffer); free(buffer);
@ -4344,8 +4349,8 @@ common_read_link(int fd, char *path, char *buffer, size_t *_bufferSize,
if (status < B_OK) if (status < B_OK)
return status; return status;
if (FS_CALL(vnode, read_link) != NULL) { if (FS_CALL(vnode, read_symlink) != NULL) {
status = FS_CALL(vnode, read_link)(vnode->mount->cookie, status = FS_CALL(vnode, read_symlink)(vnode->mount->cookie,
vnode->private_node, buffer, _bufferSize); vnode->private_node, buffer, _bufferSize);
} else } else
status = B_BAD_VALUE; status = B_BAD_VALUE;