fo_seek
.fo_seek = efihttp_fs_seek,
.fo_seek = hostfs_seek,
.fo_seek = bzf_seek,
.fo_seek = cd9660_seek,
.fo_seek = dos_seek,
.fo_seek = ext2fs_seek,
.fo_seek = zf_seek,
filepos = (f->f_ops->fo_seek)(f, 0, SEEK_CUR);
return (f->f_ops->fo_seek)(f, offset, where);
.fo_seek = nfs_seek,
.fo_seek = pkg_seek,
.fo_seek = splitfs_seek,
off_t (*fo_seek)(struct open_file *f, off_t offset, int where);
.fo_seek = tftp_seek,
.fo_seek = ufs_seek,
.fo_seek = xzf_seek,
.fo_seek = zfs_seek,
.fo_seek = zstdf_seek,
.fo_seek = host_seek,
if ((error = fo_seek(fp, 0, SEEK_CUR, td)) != 0)
if ((error = fo_seek(ofp, 0, SEEK_CUR, td)) != 0)
error = fo_seek(fp, current_offset, SEEK_SET, td);
error = fo_seek(ofp, out_offset, SEEK_SET, td);
if ((error = fo_seek(fp, 0, SEEK_CUR, td)) != 0)
error = fo_seek(fp, current_offset, SEEK_SET, td);
.fo_seek = vn_seek,
.fo_seek = shm_seek,
fo_seek(fp, offset, whence, td) : ESPIPE;
.fo_seek = vn_seek,
fo_seek_t *fo_seek;
return ((*fp->f_ops->fo_seek)(fp, offset, whence, td));