mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-09 13:30:17 +01:00
dix: Tune dtrace hooks around Dispatch
Don't call LookupMajorName if the hooks aren't active, it's quite expensive.
Before:
40000000 trep @ 0.0009 msec (1087458.5/sec): PutImage 10x10 square
60000000 trep @ 0.0005 msec (2012238.6/sec): ShmPutImage 10x10 square
After:
40000000 trep @ 0.0009 msec (1109091.3/sec): PutImage 10x10 square
60000000 trep @ 0.0005 msec (2072652.2/sec): ShmPutImage 10x10 square
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Signed-off-by: Adam Jackson <ajax@redhat.com>
(cherry picked from commit 83a98543b5)
This commit is contained in:
parent
9eaa0b5c89
commit
e1ea93fec9
1 changed files with 9 additions and 5 deletions
|
|
@ -425,9 +425,11 @@ Dispatch(void)
|
|||
client->minorOp = ext->MinorOpcode(client);
|
||||
}
|
||||
#ifdef XSERVER_DTRACE
|
||||
XSERVER_REQUEST_START(LookupMajorName(client->majorOp), client->majorOp,
|
||||
((xReq *)client->requestBuffer)->length,
|
||||
client->index, client->requestBuffer);
|
||||
if (XSERVER_REQUEST_START_ENABLED())
|
||||
XSERVER_REQUEST_START(LookupMajorName(client->majorOp),
|
||||
client->majorOp,
|
||||
((xReq *)client->requestBuffer)->length,
|
||||
client->index, client->requestBuffer);
|
||||
#endif
|
||||
if (result > (maxBigRequestSize << 2))
|
||||
result = BadLength;
|
||||
|
|
@ -438,8 +440,10 @@ Dispatch(void)
|
|||
XaceHookAuditEnd(client, result);
|
||||
}
|
||||
#ifdef XSERVER_DTRACE
|
||||
XSERVER_REQUEST_DONE(LookupMajorName(client->majorOp), client->majorOp,
|
||||
client->sequence, client->index, result);
|
||||
if (XSERVER_REQUEST_DONE_ENABLED())
|
||||
XSERVER_REQUEST_DONE(LookupMajorName(client->majorOp),
|
||||
client->majorOp, client->sequence,
|
||||
client->index, result);
|
||||
#endif
|
||||
|
||||
if (client->noClientException != Success)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue