檢視專案鎖了幾張卡以及卡的個數

2021-09-22 01:50:42 字數 2320 閱讀 7551

1、在ap端projectconfig.mk檔案中找到custom_modem = sr6572l_hspa_band18_orange_sml_sku1

2、在modem端中找到對應的.mak檔案,通過.mak檔案找到如下的巨集控。

custom_option +=  __orange_sml_t1__
3、通過此巨集觀可以找到有多少張卡,或者說有那些卡被鎖了,

sr6572_wet_l_gprs_hspa_moly.wr8.w1449.md.wg.mp.v5 / custom / service / nvram / custom_nvram_sec.c
elif defined __orange_sml_t1__

const nvram_sml_context_struct nvram_ef_sml_default[2] =

將nvram_ef_sml_default配置成多元陣列,2代表了雙卡,雙卡使用到nvram_ef_sml_lid的前兩個record,nvram_ef_sml_default[2]

,裡面的元素也要copy一下,對應**中的陣列外部宣告也同部修改。

對於雙卡專案,需要修改以下兩處,x張卡的話就對應擴充陣列元素個數為x個:

#elif defined __orange_sml_t1__

const nvram_sml_context_struct nvram_ef_sml_default[2] =

, /* version */

sml_protection_scheme_hmac_sha256,

...........

.........

#else /* custom_sml_default */

, /* category n */

, /* category ns */

..........

..........

/* category n code */

, /* category ns code */

,/* category sp code */

........

........

}}, /* version */

sml_protection_scheme_hmac_sha256,

...........

.........

#else /* custom_sml_default */

, /* category n */

, /* category ns */

..........

..........

/* category n code */

, /* category ns code */

,/* category sp code */

........

........

}}

nvram_ef_sml_default[0]就是對應的卡槽1,nvram_ef_sml_default[1]就是對應卡槽2,以此類推。

4,在上面的**中可以看出,num=23即是設定後面的code部分前幾組會在sml_check會check到的,後面的code及時配置了也將不會起到作用。

5,所以你是不是認為這個鎖了23張卡呢?

6,如果你這樣認為,那麼你就錯了,鎖定範圍的code,還不是這裡起最終的作用,增加鎖卡code部分是由下面的屬性來控制的,

./custom/service/nvram/custom_nvram_sec.h
#elif defined(__orange_sml_t1__)

#define sml_max_support_cat_n 30

調整nvram_ef_sml_lid size對應的struct sml_context_struct(nvram_sml_context_struct)定義:

直接修改sml_max_support_cat_xx即可,

example:我要加大category n的陣列為20組:

將sml_max_support_cat_n巨集定義值修改為:

#define sml_max_support_cat_n 20,然後將對應的nvram_ef_sml_default中的code引數增大到對應組數。

MsSql檢視鎖資訊

檢視鎖資訊 create table t req spid int,obj name sysname declare s nvarchar 4000 rid int,dbname sysname,id int,objname sysname declare tb cursor for select ...

MySQL檢視鎖表

show status like lock show status like table 在mysql5.5中,information schema 庫中增加了三個關於鎖的表 memory引擎 select from information schema innodb trx root 127.0....

檢視Mysql鎖情況

當前執行的所有事務 select from information schema.innodb trx 當前出現的鎖 select from information schema.innodb locks 鎖等待的對應關係 select from information schema.innodb ...