<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>031beb4e - sys: Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/nfscl/Makefile#031beb4e</link>
        <description>sys: Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd-14.2/sys/modules/nfscl/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 17:54:58 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ba774e92 - Fix the standalone build of the nfscl and nfsd modules.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/nfscl/Makefile#ba774e92</link>
        <description>Fix the standalone build of the nfscl and nfsd modules.Reported by:	jhs@berklix.com

            List of files:
            /freebsd-14.2/sys/modules/nfscl/Makefile</description>
        <pubDate>Wed, 02 Sep 2020 01:29:33 +0000</pubDate>
        <dc:creator>Rick Macklem &lt;rmacklem@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>193d9e76 - sys/modules: normalize .CURDIR-relative paths to SRCTOP</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/nfscl/Makefile#193d9e76</link>
        <description>sys/modules: normalize .CURDIR-relative paths to SRCTOPThis simplifies make output/logicTested with:	`cd sys/modules; make ALL_MODULES=` on amd64MFC after:	1 monthSponsored by:	Dell EMC Isilon

            List of files:
            /freebsd-14.2/sys/modules/nfscl/Makefile</description>
        <pubDate>Sat, 04 Mar 2017 10:10:17 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>aeaed508 - Move most of the 15 variations on generating opt_inet.h and</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/nfscl/Makefile#aeaed508</link>
        <description>Move most of the 15 variations on generating opt_inet.h andopt_inet6.h into kmod.mk by forcing almost everybody to eat the samedogfood. While at it, consolidate the opt_bpf.h and opt_mroute.htargets here too.

            List of files:
            /freebsd-14.2/sys/modules/nfscl/Makefile</description>
        <pubDate>Mon, 04 Aug 2014 22:37:02 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>54366c0b - - For kernel compiled only with KDTRACE_HOOKS and not any lock debugging</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/nfscl/Makefile#54366c0b</link>
        <description>- For kernel compiled only with KDTRACE_HOOKS and not any lock debugging  option, unbreak the lock tracing release semantic by embedding  calls to LOCKSTAT_PROFILE_RELEASE_LOCK() direclty in the inlined  version of the releasing functions for mutex, rwlock and sxlock.  Failing to do so skips the lockstat_probe_func invokation for  unlocking.- As part of the LOCKSTAT support is inlined in mutex operation, for  kernel compiled without lock debugging options, potentially every  consumer must be compiled including opt_kdtrace.h.  Fix this by moving KDTRACE_HOOKS into opt_global.h and remove the  dependency by opt_kdtrace.h for all files, as now only KDTRACE_FRAMES  is linked there and it is only used as a compile-time stub [0].[0] immediately shows some new bug as DTRACE-derived support for debugin sfxge is broken and it was never really tested.  As it was notincluding correctly opt_kdtrace.h before it was never enabled so itwas kept broken for a while.  Fix this by using a protection stub,leaving sfxge driver authors the responsibility for fixing itappropriately [1].Sponsored by:	EMC / Isilon storage divisionDiscussed with:	rstone[0] Reported by:	rstone[1] Discussed with:	philip

            List of files:
            /freebsd-14.2/sys/modules/nfscl/Makefile</description>
        <pubDate>Mon, 25 Nov 2013 07:38:45 +0000</pubDate>
        <dc:creator>Attilio Rao &lt;attilio@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>898dec78 - Fix make buildworld -DMODULES_WITH_WORLD</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/nfscl/Makefile#898dec78</link>
        <description>Fix make buildworld -DMODULES_WITH_WORLDSort opt_ srcs

            List of files:
            /freebsd-14.2/sys/modules/nfscl/Makefile</description>
        <pubDate>Thu, 23 Jun 2011 20:31:52 +0000</pubDate>
        <dc:creator>Ulrich Sp&#246;rlein &lt;uqs@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7c208ed6 - Fix the experimental NFS client so that it does not bogusly</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/nfscl/Makefile#7c208ed6</link>
        <description>Fix the experimental NFS client so that it does not boguslyset the f_flags field of &quot;struct statfs&quot;. This had the interestingeffect of making the NFSv4 mounts &quot;disappear&quot; after r221014,since NFSMNT_NFSV4 and MNT_IGNORE became the same bit.Move the files used for a diskless NFS root from sys/nfsclientto sys/nfs in preparation for them to be used by both NFSclients. Also, move the declaration of the three global datastructures from sys/nfsclient/nfs_vfsops.c to sys/nfs/nfs_diskless.cso that they are defined when either client uses them.Reviewed by:	jhbMFC after:	2 weeks

            List of files:
            /freebsd-14.2/sys/modules/nfscl/Makefile</description>
        <pubDate>Mon, 25 Apr 2011 22:22:51 +0000</pubDate>
        <dc:creator>Rick Macklem &lt;rmacklem@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f92bbff2 - Move sys/nfsclient/nfs_lock.c into sys/nfs and build it as a separate</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/nfscl/Makefile#f92bbff2</link>
        <description>Move sys/nfsclient/nfs_lock.c into sys/nfs and build it as a separatemodule that can be used by both the regular and experimental nfsclients. This fixes the problem reported by jh@ where /dev/nfslockwould be registered twice when both nfs clients were used.I also defined the size of the lm_fh field to be the correct value,as it should be the maximum size of an NFSv3 file handle.Reviewed by:	jhMFC after:	2 weeks

            List of files:
            /freebsd-14.2/sys/modules/nfscl/Makefile</description>
        <pubDate>Sat, 24 Jul 2010 22:11:11 +0000</pubDate>
        <dc:creator>Rick Macklem &lt;rmacklem@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>bcbdacdd - Add the kernel build glue for the experimental NFS subsystem that</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/nfscl/Makefile#bcbdacdd</link>
        <description>Add the kernel build glue for the experimental NFS subsystem thatincludes support for NFSv4. The subsystem can optionally be linkedinto the kernel using the two options:  NFSCL - the client  NFSD - the serverIt is also built as three modules:  nfscl - the client  nfsd - the server  nfscommon - functions shared by the client and serverApproved by:	kib (mentor)

            List of files:
            /freebsd-14.2/sys/modules/nfscl/Makefile</description>
        <pubDate>Thu, 28 May 2009 19:45:11 +0000</pubDate>
        <dc:creator>Rick Macklem &lt;rmacklem@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
