[BACK]Return to kern_drvctl.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / kern

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

Diff for /src/sys/kern/kern_drvctl.c between version 1.42.2.1 and 1.43

version 1.42.2.1, 2018/09/23 17:33:15 version 1.43, 2017/11/30 20:25:55
Line 93  static int drvctl_stat(struct file *, st
Line 93  static int drvctl_stat(struct file *, st
 static int      drvctl_close(struct file *);  static int      drvctl_close(struct file *);
   
 static const struct fileops drvctl_fileops = {  static const struct fileops drvctl_fileops = {
           .fo_name = "drvctl",
         .fo_read = drvctl_read,          .fo_read = drvctl_read,
         .fo_write = drvctl_write,          .fo_write = drvctl_write,
         .fo_ioctl = drvctl_ioctl,          .fo_ioctl = drvctl_ioctl,
Line 106  static const struct fileops drvctl_fileo
Line 107  static const struct fileops drvctl_fileo
   
 #define MAXLOCATORS 100  #define MAXLOCATORS 100
   
   extern int (*devmon_insert_vec)(const char *, prop_dictionary_t);
 static int (*saved_insert_vec)(const char *, prop_dictionary_t) = NULL;  static int (*saved_insert_vec)(const char *, prop_dictionary_t) = NULL;
   
 static int drvctl_command(struct lwp *, struct plistref *, u_long, int);  static int drvctl_command(struct lwp *, struct plistref *, u_long, int);

Legend:
Removed from v.1.42.2.1  
changed lines
  Added in v.1.43

CVSweb <webmaster@jp.NetBSD.org>