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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/inet/ipnet/ipnet.c
          +++ new/usr/src/uts/common/inet/ipnet/ipnet.c
↓ open down ↓ 195 lines elided ↑ open up ↑
 196  196      ipnet_detach, nodev, ipnet_devinfo, D_MP | D_MTPERMOD, &ipnet_info,
 197  197      ddi_quiesce_not_supported);
 198  198  
 199  199  static struct modldrv modldrv = {
 200  200          &mod_driverops,
 201  201          "STREAMS ipnet driver",
 202  202          &ipnet_ops
 203  203  };
 204  204  
 205  205  static struct modlinkage modlinkage = {
 206      -        MODREV_1, &modldrv, NULL
      206 +        MODREV_1, { &modldrv, NULL }
 207  207  };
 208  208  
 209  209  /*
 210  210   * This structure contains the template data (names and type) that is
 211  211   * copied, in bulk, into the new kstats structure created by net_kstat_create.
 212  212   * No actual statistical information is stored in this instance of the
 213  213   * ipnet_kstats_t structure.
 214  214   */
 215  215  static ipnet_kstats_t stats_template = {
 216  216          { "duplicationFail",    KSTAT_DATA_UINT64 },
↓ open down ↓ 2174 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX