summaryrefslogtreecommitdiffstats
path: root/source3/smbd/globals.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2013-11-20 09:56:19 +0100
committerJeremy Allison <jra@samba.org>2014-03-05 13:59:20 -0800
commitec498a2414d96567bfed26f35b60ebe1ac40c68b (patch)
treee3bfebc069c2dfb6a1613889c06257c121084a98 /source3/smbd/globals.h
parent66877dfaa59561145eba6233dc1f43c282d8cd08 (diff)
downloadsamba-ec498a2414d96567bfed26f35b60ebe1ac40c68b.tar.gz
samba-ec498a2414d96567bfed26f35b60ebe1ac40c68b.tar.xz
samba-ec498a2414d96567bfed26f35b60ebe1ac40c68b.zip
s3:smb2_server: optimize smbd_smb2_request_setup_out()
We can use a preallocated buffer for the possible error response of the first response in the compound chain. This avoids a talloc_array_zero() call for the common case. Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/smbd/globals.h')
-rw-r--r--source3/smbd/globals.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/smbd/globals.h b/source3/smbd/globals.h
index 2b7fc7ec51..781379c986 100644
--- a/source3/smbd/globals.h
+++ b/source3/smbd/globals.h
@@ -611,6 +611,8 @@ struct smbd_smb2_request {
*/
struct iovec *vector;
int vector_count;
+#define OUTVEC_ALLOC_SIZE (SMB2_HDR_BODY + 9)
+ uint8_t _hdr[OUTVEC_ALLOC_SIZE];
} out;
};