msm: camera: common: Increase the max tag length to 128
Currently the maximum length of tag is 64, but in some cases, the tag length we need is lager than 64, in this case some information will be lost, which leads to the failure to properly parse out the required information. We need to make sure that all the tags are the same length so that the parsing script can parse them correctly. We also need to make sure that the last character in tag is ":" in order for the parsing script to get the full tag string correctly. CRs-Fixed: 3467258 Change-Id: Ie8107ffd902d70d88026632a2c9fadaca0c276d8 Signed-off-by: mingpan <quic_mingpan@quicinc.com>
This commit is contained in:

committed by
Camera Software Integration

parent
8329f5d0b8
commit
12f52f25db
@@ -5209,7 +5209,7 @@ hw_dump:
|
||||
|
||||
/* Dump time info */
|
||||
rc = cam_common_user_dump_helper(&dump_args, cam_isp_ctx_user_dump_timer,
|
||||
req, sizeof(uint64_t), "ISP_CTX_DUMP:.%c", req_type);
|
||||
req, sizeof(uint64_t), "ISP_CTX_DUMP.%c:", req_type);
|
||||
if (rc) {
|
||||
CAM_ERR(CAM_ISP, "Time dump fail %lld, rc: %d, ctx_idx: %u, link: 0x%x",
|
||||
req->request_id, rc, ctx->ctx_id, ctx->link_hdl);
|
||||
|
Reference in New Issue
Block a user