Re: [PATCH 2/8] rpdfs: add rpdfs_file_llseek

Zach Brown <[email protected]> Mon, 27 Apr 2026 15:22:00 -0700
Newsgroups dev.linux.lists.rpdfs-devel
Message-ID <[email protected]>
On Fri, Apr 24, 2026 at 04:05:14PM +0200, Valerie Aurora wrote:
> Use generic_file_llseek to implement file seek.

> +static loff_t rpdfs_file_llseek(struct file *file, loff_t offset, int whence)
> +{
> +	return generic_file_llseek(file, offset, whence);
> +}

This needs to refresh the inode.  It'd use the same pattern as getattr of acquiring
a block handle with the inode around its operation.

- z