diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-03-17 10:45:49 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-03-17 10:45:49 -0700 | 
| commit | 0eb392ec095ee29b932985deefb43e6d86d8a463 (patch) | |
| tree | 778cd8e7313e867a2fce06a253ba706a2968f2c2 /drivers | |
| parent | cb80b960ce44e3e4e90985bb65a84c1a10c450ee (diff) | |
| parent | 7ad2c39860dc0ca01d2152232224d2124e160fe3 (diff) | |
Merge tag 'for-linus-6.3-rc3-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip
Pull xen fixes from Juergen Gross:
 - cleanup for xen time handling
 - enable the VGA console in a Xen PVH dom0
 - cleanup in the xenfs driver
* tag 'for-linus-6.3-rc3-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip:
  xen: remove unnecessary (void*) conversions
  x86/PVH: obtain VGA console info in Dom0
  x86/xen/time: cleanup xen_tsc_safe_clocksource
  xen: update arch/x86/include/asm/xen/cpuid.h
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/xen/xenfs/xensyms.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/drivers/xen/xenfs/xensyms.c b/drivers/xen/xenfs/xensyms.c index c6c73a33c44d..b799bc759c15 100644 --- a/drivers/xen/xenfs/xensyms.c +++ b/drivers/xen/xenfs/xensyms.c @@ -64,7 +64,7 @@ static int xensyms_next_sym(struct xensyms *xs)  static void *xensyms_start(struct seq_file *m, loff_t *pos)  { -	struct xensyms *xs = (struct xensyms *)m->private; +	struct xensyms *xs = m->private;  	xs->op.u.symdata.symnum = *pos; @@ -76,7 +76,7 @@ static void *xensyms_start(struct seq_file *m, loff_t *pos)  static void *xensyms_next(struct seq_file *m, void *p, loff_t *pos)  { -	struct xensyms *xs = (struct xensyms *)m->private; +	struct xensyms *xs = m->private;  	xs->op.u.symdata.symnum = ++(*pos); @@ -88,7 +88,7 @@ static void *xensyms_next(struct seq_file *m, void *p, loff_t *pos)  static int xensyms_show(struct seq_file *m, void *p)  { -	struct xensyms *xs = (struct xensyms *)m->private; +	struct xensyms *xs = m->private;  	struct xenpf_symdata *symdata = &xs->op.u.symdata;  	seq_printf(m, "%016llx %c %s\n", symdata->address, @@ -120,7 +120,7 @@ static int xensyms_open(struct inode *inode, struct file *file)  		return ret;  	m = file->private_data; -	xs = (struct xensyms *)m->private; +	xs = m->private;  	xs->namelen = XEN_KSYM_NAME_LEN + 1;  	xs->name = kzalloc(xs->namelen, GFP_KERNEL); @@ -138,7 +138,7 @@ static int xensyms_open(struct inode *inode, struct file *file)  static int xensyms_release(struct inode *inode, struct file *file)  {  	struct seq_file *m = file->private_data; -	struct xensyms *xs = (struct xensyms *)m->private; +	struct xensyms *xs = m->private;  	kfree(xs->name);  	return seq_release_private(inode, file); | 
