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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/lvm/notify/md_notify.c
          +++ new/usr/src/uts/common/io/lvm/notify/md_notify.c
↓ open down ↓ 598 lines elided ↑ open up ↑
 599  599  /*
 600  600   * put this stuff at end so we don't have to create forward
 601  601   * references for everything
 602  602   */
 603  603  static struct modlmisc modlmisc = {
 604  604          &mod_miscops,
 605  605          "Solaris Volume Manager notification module"
 606  606  };
 607  607  
 608  608  static struct modlinkage modlinkage = {
 609      -        MODREV_1, (void *)&modlmisc, NULL
      609 +        MODREV_1, { (void *)&modlmisc, NULL }
 610  610  };
 611  611  
 612  612  static md_named_services_t notify_services[] = {
 613  613          {notify_interface,      "notify interface"},
 614  614          {notify_reap_off,       MD_NOTIFY_REAP_OFF},
 615  615          {notify_reap_on,        MD_NOTIFY_REAP_ON},
 616  616          {notify_test_stats,     MD_NOTIFY_TEST_STATS},
 617  617          {NULL,                  0}
 618  618  };
 619  619  
↓ open down ↓ 50 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX