+12
−19
Loading
Gitlab 现已全面支持 git over ssh 与 git over https。通过 HTTPS 访问请配置带有 read_repository / write_repository 权限的 Personal access token。通过 SSH 端口访问请使用 22 端口或 13389 端口。如果使用CAS注册了账户但不知道密码,可以自行至设置中更改;如有其他问题,请发邮件至 service@cra.moe 寻求协助。
Commit b1182bf8 ("kernel/timeout: Serialize handler callbacks on SMP") introduced an important fix to timeout handling on multiprocessor systems, but it did it in a clumsy way by holding a spinlock across the entire timeout process on all cores (everything would have to spin until one core finished the list). The lock also delays any nested interrupts that might otherwise be delivered, which breaks our nested_irq_offload case on xtensa+SMP (where contra x86, the "synchronous" interrupt is sensitive to mask state). Doing this right turns out not to be so hard: take the timeout lock, check to see if someone is already iterating (i.e. "announce_remaining" is non-zero), and if so just increment the ticks to announce and exit. The original cpu will then complete the full timeout list without blocking any others longer than needed to check the timeout state. Fixes #44758 Signed-off-by:Andy Ross <andrew.j.ross@intel.com>
CRA Git | Maintained and supported by SUSTech CRA and CCSE