Home
last modified time | relevance | path

Searched refs:sb1 (Results 1 – 6 of 6) sorted by relevance

/linux/fs/qnx6/
H A Dsuper_mmi.c39 struct qnx6_mmi_super_block *sb1, *sb2; in qnx6_mmi_fill_super() local
51 sb1 = (struct qnx6_mmi_super_block *)bh1->b_data; in qnx6_mmi_fill_super()
53 if (fs32_to_cpu(sbi, sb1->sb_magic) != QNX6_SUPER_MAGIC) { in qnx6_mmi_fill_super()
61 if (fs32_to_cpu(sbi, sb1->sb_checksum) != in qnx6_mmi_fill_super()
68 offset = fs32_to_cpu(sbi, sb1->sb_num_blocks) + QNX6_SUPERBLOCK_AREA / in qnx6_mmi_fill_super()
69 fs32_to_cpu(sbi, sb1->sb_blocksize); in qnx6_mmi_fill_super()
72 if (!sb_set_blocksize(s, fs32_to_cpu(sbi, sb1->sb_blocksize))) { in qnx6_mmi_fill_super()
81 sb1 = (struct qnx6_mmi_super_block *)bh1->b_data; in qnx6_mmi_fill_super()
109 if (fs64_to_cpu(sbi, sb1->sb_serial) > in qnx6_mmi_fill_super()
112 qnx6_mmi_copy_sb(qsb, sb1); in qnx6_mmi_fill_super()
/linux/include/linux/fs/
H A Dsuper.h202 static inline bool sb_same_encoding(const struct super_block *sb1, in sb_same_encoding() argument
205 if (sb1->s_encoding == sb2->s_encoding) in sb_same_encoding()
208 return (sb1->s_encoding && sb2->s_encoding && in sb_same_encoding()
209 (sb1->s_encoding->version == sb2->s_encoding->version) && in sb_same_encoding()
210 (sb1->s_encoding_flags == sb2->s_encoding_flags)); in sb_same_encoding()
218 static inline bool sb_same_encoding(const struct super_block *sb1, in sb_same_encoding() argument
/linux/arch/mips/mm/
H A DMakefile38 obj-$(CONFIG_CPU_SB1) += c-r4k.o cerr-sb1.o cex-sb1.o tlb-r4k.o
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dreg_bounds.c1675 DEFINE_STRBUF(sb1, 256); in gen_vals()
1679 sb1->pos = sb2->pos = 0; in gen_vals()
1680 snprintf_num(U64, sb1, ctx->uvals[i]); in gen_vals()
1682 printf("SEED #%d: u64=%-20s s64=%-20s\n", i, sb1->buf, sb2->buf); in gen_vals()
1707 DEFINE_STRBUF(sb1, 256); in gen_vals()
1711 sb1->pos = sb2->pos = 0; in gen_vals()
1712 snprintf_num(U32, sb1, ctx->usubvals[i]); in gen_vals()
1714 printf("SUBSEED #%d: u32=%-10s s32=%-10s\n", i, sb1->buf, sb2->buf); in gen_vals()
1727 DEFINE_STRBUF(sb1, 256); in gen_ranges()
1730 sb1->pos = sb2->pos = 0; in gen_ranges()
[all …]
/linux/drivers/net/ethernet/marvell/octeontx2/af/cn20k/
H A Dnpc.c2837 struct npc_subbank *sb1, *sb2; in npc_subbank_ref_alloc() local
2862 rc = npc_mcam_idx_2_subbank_idx(rvu, r, &sb1, in npc_subbank_ref_alloc()
2869 __func__, sb1->idx, sb_idx1); in npc_subbank_ref_alloc()
2872 if (!npc_subbank_suits(sb1, key_type)) { in npc_subbank_ref_alloc()
2875 __func__, sb1->idx, key_type); in npc_subbank_ref_alloc()
2890 if (sb1 != sb2) { in npc_subbank_ref_alloc()
2898 npc_subbank_free_cnt(rvu, sb1, key_type) < count) { in npc_subbank_ref_alloc()
2901 npc_subbank_free_cnt(rvu, sb1, key_type)); in npc_subbank_ref_alloc()
2907 rc = npc_subbank_alloc(rvu, sb1, key_type, in npc_subbank_ref_alloc()
/linux/drivers/md/
H A Dmd.c1217 static int md_uuid_equal(mdp_super_t *sb1, mdp_super_t *sb2) in md_uuid_equal() argument
1219 return sb1->set_uuid0 == sb2->set_uuid0 && in md_uuid_equal()
1220 sb1->set_uuid1 == sb2->set_uuid1 && in md_uuid_equal()
1221 sb1->set_uuid2 == sb2->set_uuid2 && in md_uuid_equal()
1222 sb1->set_uuid3 == sb2->set_uuid3; in md_uuid_equal()
1225 static int md_sb_equal(mdp_super_t *sb1, mdp_super_t *sb2) in md_sb_equal() argument
1238 *tmp1 = *sb1; in md_sb_equal()