+5
−5
Loading
Gitlab 现已全面支持 git over ssh 与 git over https。通过 HTTPS 访问请配置带有 read_repository / write_repository 权限的 Personal access token。通过 SSH 端口访问请使用 22 端口或 13389 端口。如果使用CAS注册了账户但不知道密码,可以自行至设置中更改;如有其他问题,请发邮件至 service@cra.moe 寻求协助。
[XFS] Long btree pointers are still 64 bit on disk On 32 bit machines with CONFIG_LBD=n, XFS reduces the in memory size of xfs_fsblock_t to 32 bits so that it will fit within 32 bit addressing. However, the disk format for long btree pointers are still 64 bits in size. The recent btree rewrite failed to take this into account when initialising new btree blocks, setting sibling pointers to NULL and checking if they are NULL. Hence checking whether a 64 bit NULL was the same as a 32 bit NULL was failingi resulting in NULL sibling pointers failing to be detected correctly. This showed up as WANT_CORRUPTED_GOTO shutdowns in xfs_btree_delrec. Fix this by making all the comparisons and setting of long pointer btree NULL blocks to the disk format, not the in memory format. i.e. use NULLDFSBNO. Reported-by:Alexander Beregalov <a.beregalov@gmail.com> Reported-by:
Jacek Luczak <difrost.kernel@gmail.com> Reported-by:
Danny ter Haar <dth@dth.net> Tested-by:
Jacek Luczak <difrost.kernel@gmail.com> Reviewed-by:
Christoph Hellwig <hch@infradead.org> Signed-off-by:
Dave Chinner <david@fromorbit.com> Signed-off-by:
Felix Blyakher <felixb@sgi.com>
CRA Git | Maintained and supported by SUSTech CRA and CCSE