aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/smbfs
Commit message (Expand)AuthorAgeFilesLines
* Remove a lingering use of splbio().Mark Johnston2019-06-241-4/+0
* [smbfs] Allow semicolon in mounts that support long namesOleksandr Tymoshenko2019-01-201-2/+2
* Allocate pager bufs from UMA instead of 80-ish mutex protected linked list.Gleb Smirnoff2019-01-152-7/+9
* Ensure that directory entry padding bytes are zeroed.Mark Johnston2018-11-231-2/+2
* Use long for the last argument to VOP_PATHCONF rather than a register_t.John Baldwin2018-01-171-1/+1
* Move NAME_MAX, LINK_MAX, and CHOWN_RESTRICTED out of vop_stdpathconf().John Baldwin2017-12-191-2/+0
* Handle _PC_FILESIZEBITS and _PC_NO_TRUNC for smbfs' VOP_PATHCONF().John Baldwin2017-12-191-0/+9
* sys/fs: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-279-0/+18
* Mark pages after EOF as clean after pageout.Konstantin Belousov2017-07-261-3/+5
* Consistently use vop_stdpathconf() for default pathconf values.John Baldwin2017-07-111-1/+1
* - Remove 'struct vmmeter' from 'struct pcpu', leaving only global vmmeterGleb Smirnoff2017-04-171-4/+4
* smbfs: Fix an indentation levelConrad Meyer2017-04-061-1/+1
* Replace all remaining calls to vprint(9) with vn_printf(9), and removeEdward Tomasz Napierala2016-08-101-1/+1
* sys/fs: spelling fixes in comments.Pedro F. Giffuni2016-04-292-2/+2
* Cleanup unnecessary semicolons from the kernel.Pedro F. Giffuni2016-04-103-3/+2
* Change the type of newsize argument in the smbfs_smb_setfsize() functionAndrey V. Elsukov2016-01-113-6/+8
* Fix breakage caused by r292373 in ZFS/FUSE/NFS/SMBFS.Gleb Smirnoff2015-12-161-14/+10
* A change to KPI of vm_pager_get_pages() and underlying VOP_GETPAGES().Gleb Smirnoff2015-12-161-26/+14
* Fix a -Wcast-qual warning in smbfs_subr.c, by using __DECONST. NoDimitry Andric2015-01-301-2/+2
* Fix smbfs to not zero out statfs f_flags field. Previously, thisEdward Tomasz Napierala2014-11-211-2/+0
* Remove unused arguments for VOP_GETPAGES(), VOP_PUTPAGES().Gleb Smirnoff2014-09-101-2/+0
* Use SMB_QUERY_FS_SIZE_INFO request to populate statfs structure.Andrey V. Elsukov2014-04-153-18/+64
* Expand the use of stat(2) flags to allow storing some Windows/DOSKenneth D. Merry2013-08-212-10/+70
* - Fix double frees/user after free.Davide Italiano2013-07-031-113/+56
* Properly use v_data field. This magically worked (even if wrong) untilDavide Italiano2013-06-281-1/+1
* Garbage collect an useless check. smp should be never NULL.Davide Italiano2013-06-281-5/+0
* Plug a couple of leakages in smbfs_lookup().Davide Italiano2013-06-281-3/+6
* Change VM_OBJECT_LOCK/UNLOCK() -> VM_OBJECT_WLOCK/WUNLOCK() to reflectDavide Italiano2013-05-041-8/+9
* Overhaul locking in netsmb, getting rid of the obsolete lockmgr() primitive.Davide Italiano2013-05-041-2/+2
* Completely rewrite the interface to smbdev switching from dev_cloneDavide Italiano2013-05-042-10/+30
* smbfs_lookup() in the DOTDOT case operates on dvp->n_parent withoutDavide Italiano2013-03-092-15/+16
* - Initialize variable in smbfs_rename() to silent compiler warningDavide Italiano2013-03-091-1/+2
* - smbfs_rename() might return an error value without correctly upgradingDavide Italiano2012-11-262-2/+3
* - Remove reset of vpp pointer in some places as long as it's not reallyDavide Italiano2012-11-223-5/+0
* Until now, smbfs_fullpath() computed the full path starting from theDavide Italiano2012-11-225-60/+63
* Get rid of some old debug code. It provides checks similar to the oneDavide Italiano2012-11-142-40/+0
* Fix the lookup in the DOTDOT case in the same way as other filesystems do,Davide Italiano2012-11-141-0/+21
* - Do not put in the mntqueue half-constructed vnodes.Davide Italiano2012-10-314-123/+69
* Fix panic due to page faults while in kernel mode, under conditions ofDavide Italiano2012-10-317-169/+326
* Change the code to use %jd as printf() placeholder for uio_offset andDavide Italiano2012-10-312-4/+7
* Fix build in case we have SMBVDEBUG turned on.Davide Italiano2012-10-252-4/+5
* - Remove the references to the deprecated zalloc kernel interfaceDavide Italiano2012-10-252-36/+2
* Do not leave invalid pages in the object after the short read for aKonstantin Belousov2012-08-141-1/+1
* After the PHYS_TO_VM_PAGE() function was de-inlined, the main reasonKonstantin Belousov2012-08-051-0/+1
* Reduce code duplication and exposure of direct access to structKonstantin Belousov2012-08-041-30/+2
* Simply error handling by moving the allocation of np down to where it isChristian Brueffer2012-07-161-8/+6
* Save a bzero() by using M_ZERO.Christian Brueffer2012-07-151-2/+1
* Remove unused thread argument to vrecycle().Edward Tomasz Napierala2012-04-231-1/+1
* Rename cache_lookup_times() to cache_lookup() and retire the old API andJohn Baldwin2012-02-061-1/+1
* Make sure all intermediate variables holding mount flags (mnt_flag)Kirk McKusick2012-01-171-1/+1