summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
* s3: Fix a typoVolker Lendecke2012-03-261-1/+1
|
* s3: Rename a variable in inotify_watch for clarityVolker Lendecke2012-03-261-5/+5
|
* s3: Pass "filter" instead of "notify_entry" to inotify_mapVolker Lendecke2012-03-261-4/+4
| | | | This makes the potential modification a bit more obvious
* s3-make: Fix build with new smb2_session file.Jelmer Vernooij2012-03-261-0/+1
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Mon Mar 26 00:56:13 CEST 2012 on sn-devel-104
* smb2: Move smb2cli session setup code to cli_smb_common.Jelmer Vernooij2012-03-251-207/+0
|
* use usleep rather than sys_usleep in various places, in anticipation of ↵Jelmer Vernooij2012-03-246-39/+4
| | | | usleep moving to libreplace.
* lib/util: Remove obsolete sys_getpid() and sys_fork().Jelmer Vernooij2012-03-2445-93/+93
| | | | | | | | | The performance of these is minimal (these days) and they can return invalid results when used as part of applications that do not use sys_fork(). Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sat Mar 24 21:55:41 CET 2012 on sn-devel-104
* adt_tree: Fix return types.Jelmer Vernooij2012-03-241-3/+3
|
* s3-waf: Use samba3-util library instead of lots of tiny libs.Jelmer Vernooij2012-03-241-52/+18
| | | | | | | | The smaller libraries are currently all trivial in size and don't have any dependencies other than samba-util. Having lots of small private libraries is a pain for packaging, and there isn't much advantage in this.
* adt_tree: Avoid WERROR.Jelmer Vernooij2012-03-243-5/+8
|
* libreplace: Add getpeereid implementation.Jelmer Vernooij2012-03-245-36/+6
|
* util_malloc: Remove unused constant.Jelmer Vernooij2012-03-241-3/+0
|
* lib/util: Remove dummy wrapper for getgrgid().Jelmer Vernooij2012-03-241-3/+3
|
* lib/util: Remove dummy wrapper for getgrnam().Jelmer Vernooij2012-03-242-2/+2
|
* lib/util: Remove dummy wrapper for getpwuid().Jelmer Vernooij2012-03-243-6/+6
|
* lib/util: Remove dummy wrapper for getpwnam().Jelmer Vernooij2012-03-243-5/+5
|
* lib/util: Remove dummy wrappers for setpwent/getpwent/endpwent.Jelmer Vernooij2012-03-242-4/+4
|
* lib/util: Move calloc_array and memalign_array to top-level libutil.Jelmer Vernooij2012-03-242-34/+0
|
* cli_pipe: Avoid sys_connect.Jelmer Vernooij2012-03-241-1/+3
|
* sock_exec: Avoid sys_connect.Jelmer Vernooij2012-03-241-2/+2
|
* util_sock: Avoid sys_connect.Jelmer Vernooij2012-03-241-7/+13
|
* ctdb_conn: Avoid sys_connect.Jelmer Vernooij2012-03-241-1/+3
|
* replace: Move memalign() from lib/util/system.c to libreplace.Jelmer Vernooij2012-03-241-1/+1
|
* s3: Remove the sys_notify dependency from notify_internalVolker Lendecke2012-03-235-63/+37
| | | | | Autobuild-User: Volker Lendecke <vl@samba.org> Autobuild-Date: Fri Mar 23 12:12:51 CET 2012 on sn-devel-104
* s3-build: gss_krb5_export_lucid_sec_context is no longer used in the s3 buildAndrew Bartlett2012-03-231-6/+0
| | | | | Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Fri Mar 23 04:37:36 CET 2012 on sn-devel-104
* s3:vfs_gpfs: fix some compiler warningsChristian Ambach2012-03-222-4/+4
| | | | | Autobuild-User: Christian Ambach <ambi@samba.org> Autobuild-Date: Thu Mar 22 20:14:34 CET 2012 on sn-devel-104
* s3:vfs_gpfs: remove fallback to linux_setleaseChristian Ambach2012-03-221-6/+0
| | | | | | if setting the lease in GPFS failed, there is not much sense in trying to set a lease just locally that would not inform us of openers on other cluster nodes
* s3:vfs_gpfs: correct use of profiling macrosChristian Ambach2012-03-221-4/+5
| | | | under certain conditions START_PROFILE could have been called, but no END_PROFILE
* s3:vfs_gpfs: Implement fallocate callback for GPFSChristof Schmitt2012-03-223-0/+54
| | | | | | | GPFS provides the gpfs_prealloc call. Implement the fallocate callback with mode VFS_FALLOCATE_EXTEND_SIZE using this call. There is no support for VFS_FALLOCATE_KEEP_SIZE, so report this mode as not available.
* s3:vfs_gpfs: Report disk space and usage on GPFS share according to quotasChristof Schmitt2012-03-221-0/+129
| | | | | | | | | | | | | | | | | | When a client requests the information about free space and space used, adjust the reported values according to quotas in the GPFS file system: - Retrieve quotas for the current user, current group and fileset for the top level of the share. - If the soft block quota grace time has expired, report disk as full. - If a hard block quota has been exceeded, report disk as full. - If none of the hard block quotas been exceeded, report share size and free space according to the lowest limits found in the quotas. - If no applicable hard block quota has been set, report the information from the statfs call. This feature is disabled by default and has to be enabled by setting the option gpfs:dfreequota.
* s3:vfs_gpfs: add GPFS api calls for quota and free space reportingChristof Schmitt2012-03-222-0/+80
| | | | | | Add the GPFS api calls for reporting the quotas and free space: - get_gpfs_quota for querying a quota - get_gpfs_fset_id for mapping a path to a fileset id
* s3:vfs_gpfs: Export disk_norm functionChristof Schmitt2012-03-222-1/+2
| | | | | | vfs modules implementing the disk_free callback need access to the function disk_norm for normalizing the data if the parameter small query is true.
* s3:client correct a wordingChristian Ambach2012-03-221-1/+1
|
* s3: Fix smbd -iVolker Lendecke2012-03-221-9/+11
| | | | | Autobuild-User: Volker Lendecke <vl@samba.org> Autobuild-Date: Thu Mar 22 18:40:02 CET 2012 on sn-devel-104
* s3: Remove an unused structure fieldVolker Lendecke2012-03-221-2/+0
|
* s3: Add "notify" cmd to smbclientVolker Lendecke2012-03-221-0/+57
| | | | | Autobuild-User: Volker Lendecke <vl@samba.org> Autobuild-Date: Thu Mar 22 13:51:50 CET 2012 on sn-devel-104
* s3: Add sync cli_notifyVolker Lendecke2012-03-222-0/+39
|
* s3: Add FILE_NOTIFY_CHANGE_ALL #defineVolker Lendecke2012-03-221-0/+8
|
* s3-libsmb: Fix parsing a notify responseVolker Lendecke2012-03-221-1/+1
|
* s3: rename "len"->"next", according to wiresharkVolker Lendecke2012-03-221-3/+3
|
* s3:vfs_tsmsm: Fix a misspelling of a config parameter in the doc-commentMichael Adam2012-03-221-1/+1
| | | | The module uses "tsmsm:dmapi attribute" instead of "tsmsm:attribute name".
* s3-selftest: Remove some unnecessary commaBjörn Baumbach2012-03-221-2/+2
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3-selftest: Add samba3.blackbox.net.registry.check to test listBjörn Baumbach2012-03-221-0/+2
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3-selftest: introduce new net registry check checkBjörn Baumbach2012-03-221-0/+146
| | | | | | | Add a new check which checks for defects in the net registry check tool. Signed-off-by: Michael Adam <obnox@samba.org>
* Fix bug 8823 - source3/smbd/process.c:smb_dump seems to have a memory leak.Jeremy Allison2012-03-221-3/+8
| | | | | | | Based on code from Richard Sharpe. Move to talloc from malloc. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Thu Mar 22 00:20:41 CET 2012 on sn-devel-104
* s3: Move the notify_ctx to the smbd_server_connectionVolker Lendecke2012-03-215-10/+14
| | | | | | | | | We only need one notify_ctx per smbd. The notify_array can become quite large. It's based on absolute paths, so there's no point in having a copy of the complete array in memory multiple times. Autobuild-User: Volker Lendecke <vl@samba.org> Autobuild-Date: Wed Mar 21 14:26:07 CET 2012 on sn-devel-104
* s3: Remove "conn" param from notify_init()Volker Lendecke2012-03-213-11/+5
|
* s3: Remove "conn" param from sys_notify_context_createVolker Lendecke2012-03-213-5/+3
|
* s3: Remove "conn" from sys_notify_contextVolker Lendecke2012-03-213-3/+1
|
* s3: Pass "conn" to sys_notify_watch()Volker Lendecke2012-03-213-2/+5
|