Print this page
Yuri P's code review feedback
8541 pfiles does not properly identify PF_KEY or PF_POLICY
Reviewed by: Mike Zeller <mike.zeller@joyent.com>
Reviewed by: Patrick Mooney <patrick.mooney@joyent.com>

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/sparc/ml/modstubs.s
          +++ new/usr/src/uts/sparc/ml/modstubs.s
↓ open down ↓ 13 lines elided ↑ open up ↑
  14   14   * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15   15   * If applicable, add the following below this CDDL HEADER, with the
  16   16   * fields enclosed by brackets "[]" replaced with your own identifying
  17   17   * information: Portions Copyright [yyyy] [name of copyright owner]
  18   18   *
  19   19   * CDDL HEADER END
  20   20   */
  21   21  
  22   22  /*
  23   23   * Copyright (c) 1990, 2010, Oracle and/or its affiliates. All rights reserved.
  24      - * Copyright (c) 2015, Joyent, Inc. All rights reserved.
  25   24   * Copyright 2016 Nexenta Systems, Inc.
       25 + * Copyright (c) 2017, Joyent, Inc. All rights reserved.
  26   26   */
  27   27  
  28   28  #if !defined(lint)
  29   29  #include "assym.h"
  30   30  #endif /* !lint */
  31   31  
  32   32  #include <sys/asm_linkage.h>
  33   33  
  34   34  #if defined(lint)
  35   35  
↓ open down ↓ 379 lines elided ↑ open up ↑
 415  415          WSTUB(ipsecesp, ipsecesp_algs_changed,  nomod_zero);
 416  416          WSTUB(ipsecesp, ipsecesp_in_assocfailure,       nomod_zero);
 417  417          WSTUB(ipsecesp, ipsecesp_init_funcs,    nomod_zero);
 418  418          WSTUB(ipsecesp, ipsecesp_icmp_error,    nomod_zero);
 419  419          WSTUB(ipsecesp, ipsecesp_send_keepalive,        nomod_zero);
 420  420          END_MODULE(ipsecesp);
 421  421  #endif
 422  422  
 423  423  #ifndef KEYSOCK_MODULE
 424  424          MODULE(keysock,drv);
      425 +        WSTUB(keysock,  keysock_spdsock_wput_iocdata,   nomod_void);
 425  426          WSTUB(keysock,  keysock_plumb_ipsec,    nomod_zero);
 426  427          WSTUB(keysock,  keysock_extended_reg,   nomod_zero);
 427  428          WSTUB(keysock,  keysock_next_seq,       nomod_zero);
 428  429          END_MODULE(keysock);
 429  430  #endif
 430  431  
 431  432  #ifndef SPDSOCK_MODULE
 432  433          MODULE(spdsock,drv);
 433  434          WSTUB(spdsock,  spdsock_update_pending_algs,    nomod_zero);
 434  435          END_MODULE(spdsock);
↓ open down ↓ 860 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX