Print this page
7127  remove -Wno-missing-braces from Makefile.uts

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/cpr/cpr_mod.c
          +++ new/usr/src/uts/common/cpr/cpr_mod.c
↓ open down ↓ 57 lines elided ↑ open up ↑
  58   58  
  59   59  #if defined(__sparc)
  60   60  extern void cpr_forget_cprconfig(void);
  61   61  #endif
  62   62  
  63   63  static struct modlmisc modlmisc = {
  64   64          &mod_miscops, "checkpoint resume"
  65   65  };
  66   66  
  67   67  static struct modlinkage modlinkage = {
  68      -        MODREV_1, (void *)&modlmisc, NULL
       68 +        MODREV_1, { (void *)&modlmisc, NULL }
  69   69  };
  70   70  
  71   71  int cpr_reusable_mode;
  72   72  
  73   73  kmutex_t        cpr_slock;      /* cpr serial lock */
  74   74  cpr_t           cpr_state;
  75   75  int             cpr_debug;
  76   76  int             cpr_test_mode; /* true if called via uadmin testmode */
  77   77  int             cpr_test_point = LOOP_BACK_NONE;        /* cpr test point */
  78   78  int             cpr_mp_enable = 0;      /* set to 1 to enable MP suspend */
↓ open down ↓ 397 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX