Module Name:    src
Committed By:   pho
Date:           Fri Dec  3 13:08:10 UTC 2021

Modified Files:
        src/sys/fs/puffs: puffs_msgif.h

Log Message:
Avoid using register_t in <fs/puffs/puffs_msgif.h>

The purpose of this header file is to interface between the
kernel-space and user-space, and is #include'd by a user-space header
<puffs.h>. It should therefore not use any of kernel-only types, as
it's not reasonable to require user-land filesystems to #define
_KERNTYPES.


To generate a diff of this commit:
cvs rdiff -u -r1.86 -r1.87 src/sys/fs/puffs/puffs_msgif.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/fs/puffs/puffs_msgif.h
diff -u src/sys/fs/puffs/puffs_msgif.h:1.86 src/sys/fs/puffs/puffs_msgif.h:1.87
--- src/sys/fs/puffs/puffs_msgif.h:1.86	Mon Mar  8 17:34:30 2021
+++ src/sys/fs/puffs/puffs_msgif.h	Fri Dec  3 13:08:10 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: puffs_msgif.h,v 1.86 2021/03/08 17:34:30 christos Exp $	*/
+/*	$NetBSD: puffs_msgif.h,v 1.87 2021/12/03 13:08:10 pho Exp $	*/
 
 /*
  * Copyright (c) 2005, 2006, 2007  Antti Kantee.  All Rights Reserved.
@@ -705,7 +705,7 @@ struct puffs_vnmsg_pathconf {
 	struct puffs_req	pvn_pr;
 
 	int			pvnr_name;		/* OUT	*/
-	register_t		pvnr_retval;		/* IN	*/
+	__register_t		pvnr_retval;		/* IN	*/
 };
 
 struct puffs_vnmsg_advlock {

Reply via email to