Print this page
fixup .text where possible
7127  remove -Wno-missing-braces from Makefile.uts

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/inet/iptun/iptun_dev.c
          +++ new/usr/src/uts/common/inet/iptun/iptun_dev.c
↓ open down ↓ 50 lines elided ↑ open up ↑
  51   51      iptun_detach, nodev, iptun_getinfo, D_MP, NULL, ddi_quiesce_not_supported);
  52   52  
  53   53  static struct modldrv iptun_modldrv = {
  54   54          &mod_driverops,
  55   55          IPTUN_LINKINFO,
  56   56          &iptun_dev_ops
  57   57  };
  58   58  
  59   59  static struct modlinkage iptun_modlinkage = {
  60   60          MODREV_1,
  61      -        &iptun_modldrv,
  62      -        NULL
       61 +        {   &iptun_modldrv,
       62 +            NULL }
  63   63  };
  64   64  
  65   65  /*
  66   66   * Initialize the tunnel stack instance.
  67   67   */
  68   68  /* ARGSUSED */
  69   69  static void *
  70   70  iptun_stack_init(netstackid_t stackid, netstack_t *ns)
  71   71  {
  72   72          iptun_stack_t   *iptuns;
↓ open down ↓ 187 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX