Print this page
NEX-16604 Windows 10 SMB client exhausts smbauth sockets
Reviewed by: Matt Barden <matt.barden@nexenta.com>
Reviewed by: Yuri Pankov <yuri.pankov@nexenta.com>
NEX-13644 File access audit logging
Reviewed by: Gordon Ross <gordon.ross@nexenta.com>
Reviewed by: Roman Strashkin <roman.strashkin@nexenta.com>
Reviewed by: Saso Kiselkov <saso.kiselkov@nexenta.com>
Reviewed by: Rick McNeal <rick.mcneal@nexenta.com>
Reviewed by: Yuri Pankov <yuri.pankov@nexenta.com>
NEX-16818 Add fksmbcl development tool
NEX-17264 SMB client test tp_smbutil_013 fails after NEX-14666
Reviewed by: Evan Layton <evan.layton@nexenta.com>
Reviewed by: Matt Barden <matt.barden@nexenta.com>
and: (fix ref leaks)
NEX-4083 Upstream changes from illumos 5917 and 5995
Reviewed by: Matt Barden <matt.barden@nexenta.com>
Reviewed by: Kevin Crowe <kevin.crowe@nexenta.com>
Reviewed by: Yuri Pankov <yuri.pankov@nexenta.com>
SMB-72 Improve startup/shudown debug features
SMB-50 User-mode SMB server (oops)
SMB-50 User-mode SMB server
 Includes work by these authors:
 Thomas Keiser <thomas.keiser@nexenta.com>
 Albert Lee <trisk@nexenta.com>

*** 8,25 **** # source. A copy of the CDDL is also available via the Internet at # http://www.illumos.org/license/CDDL. # # ! # Copyright 2013 Nexenta Systems, Inc. All rights reserved. # Copyright 2017 RackTop Systems. # LIBRARY = libfakekernel.a VERS = .1 COBJS = \ clock.o \ cond.o \ copy.o \ cred.o \ cyclic.o \ --- 8,27 ---- # source. A copy of the CDDL is also available via the Internet at # http://www.illumos.org/license/CDDL. # # ! # Copyright 2018 Nexenta Systems, Inc. All rights reserved. # Copyright 2017 RackTop Systems. # LIBRARY = libfakekernel.a VERS = .1 COBJS = \ + audit.o \ + callout.o \ clock.o \ cond.o \ copy.o \ cred.o \ cyclic.o \
*** 54,67 **** $(LINTLIB) := SRCS = $(SRCDIR)/$(LINTSRC) CSTD = $(CSTD_GNU99) C99LMODE = -Xc99=%all # Note: need our sys includes _before_ ENVCPPFLAGS, proto etc. CPPFLAGS.first += -I../common ! CFLAGS += $(CCVERBOSE) CPPFLAGS += $(INCS) -D_REENTRANT -D_FAKE_KERNEL CPPFLAGS += -D_FILE_OFFSET_BITS=64 # Could make this $(NOT_RELEASE_BUILD) but as the main purpose of # this library is for debugging, let's always define DEBUG here. --- 56,74 ---- $(LINTLIB) := SRCS = $(SRCDIR)/$(LINTSRC) CSTD = $(CSTD_GNU99) C99LMODE = -Xc99=%all + CFLAGS += $(CCVERBOSE) + # Note: need our sys includes _before_ ENVCPPFLAGS, proto etc. + # Also Note: intentionally override CPPFLAGS, not += CPPFLAGS.first += -I../common + CPPFLAGS= $(CPPFLAGS.first) ! INCS += -I$(SRC)/uts/common ! CPPFLAGS += $(INCS) -D_REENTRANT -D_FAKE_KERNEL CPPFLAGS += -D_FILE_OFFSET_BITS=64 # Could make this $(NOT_RELEASE_BUILD) but as the main purpose of # this library is for debugging, let's always define DEBUG here.