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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/trill.c
          +++ new/usr/src/uts/common/io/trill.c
↓ open down ↓ 75 lines elided ↑ open up ↑
  76   76  };
  77   77  
  78   78  /* modldrv structure */
  79   79  static struct modlsockmod sockmod = {
  80   80          &mod_sockmodops, "AF_TRILL socket module", &sinfo
  81   81  };
  82   82  
  83   83  /* modlinkage structure */
  84   84  static struct modlinkage ml = {
  85   85          MODREV_1,
  86      -        &sockmod,
  87      -        NULL
       86 +        { &sockmod, NULL }
  88   87  };
  89   88  
  90   89  #define VALID_NICK(n)   ((n) != RBRIDGE_NICKNAME_NONE && \
  91   90                          (n) != RBRIDGE_NICKNAME_UNUSED)
  92   91  
  93   92  static mblk_t *
  94   93  create_trill_header(trill_sock_t *tsock, mblk_t *mp, const uint8_t *daddr,
  95   94      boolean_t trill_hdr_ok, boolean_t multidest, uint16_t tci,
  96   95      size_t msglen)
  97   96  {
↓ open down ↓ 1586 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX