Home
last modified time | relevance | path

Searched refs:expected (Results 1 – 16 of 16) sorted by relevance

/fs/squashfs/
Dfile.c421 static int squashfs_readpage_fragment(struct page *page, int expected) in squashfs_readpage_fragment() argument
434 squashfs_copy_cache(page, buffer, expected, in squashfs_readpage_fragment()
441 static int squashfs_readpage_sparse(struct page *page, int expected) in squashfs_readpage_sparse() argument
443 squashfs_copy_cache(page, NULL, expected, 0); in squashfs_readpage_sparse()
453 int expected = index == file_end ? in squashfs_readpage() local
474 res = squashfs_readpage_sparse(page, expected); in squashfs_readpage()
476 res = squashfs_readpage_block(page, block, bsize, expected); in squashfs_readpage()
478 res = squashfs_readpage_fragment(page, expected); in squashfs_readpage()
Dfile_cache.c21 int squashfs_readpage_block(struct page *page, u64 block, int bsize, int expected) in squashfs_readpage_block() argument
32 squashfs_copy_cache(page, buffer, expected, 0); in squashfs_readpage_block()
Dfile_direct.c26 int expected) in squashfs_readpage_block() argument
85 page, expected); in squashfs_readpage_block()
97 if (res != expected) { in squashfs_readpage_block()
/fs/xfs/scrub/
Dfscounters.c260 uint64_t expected) in xchk_fscount_within_range() argument
265 trace_xchk_fscounters_within_range(sc->mp, expected, curr_value, in xchk_fscount_within_range()
273 if (curr_value == expected) in xchk_fscount_within_range()
280 if (expected >= min_value && expected <= max_value) in xchk_fscount_within_range()
Dtrace.h632 TP_PROTO(struct xfs_mount *mp, uint64_t expected, int64_t curr_value,
634 TP_ARGS(mp, expected, curr_value, old_value),
637 __field(uint64_t, expected)
643 __entry->expected = expected;
649 __entry->expected,
/fs/nfsd/
Dblocklayoutxdr.c182 u32 nr_iomaps, expected, i; in nfsd4_scsi_decode_layoutupdate() local
190 expected = sizeof(__be32) + nr_iomaps * PNFS_SCSI_RANGE_SIZE; in nfsd4_scsi_decode_layoutupdate()
191 if (len != expected) { in nfsd4_scsi_decode_layoutupdate()
193 __func__, len, expected); in nfsd4_scsi_decode_layoutupdate()
Dnfs4callback.c219 enum nfs_cb_opnum4 expected, int *status) in decode_cb_op_status() argument
228 if (unlikely(op != expected)) in decode_cb_op_status()
236 "we issued a request for %d\n", op, expected); in decode_cb_op_status()
Dvfs.c844 size_t expected) in nfsd_eof_on_read() argument
846 if (expected != 0 && len == 0) in nfsd_eof_on_read()
/fs/ubifs/
Dubifs.h1574 const u8 *expected, const u8 *got) in ubifs_check_hash() argument
1576 return crypto_memneq(expected, got, c->hash_len); in ubifs_check_hash()
1589 const u8 *expected, const u8 *got) in ubifs_check_hmac() argument
1591 return crypto_memneq(expected, got, c->hmac_desc_len); in ubifs_check_hmac()
1598 const u8 *expected);
1600 const void *buf, const u8 *expected) in ubifs_node_check_hash() argument
1603 return __ubifs_node_check_hash(c, buf, expected); in ubifs_node_check_hash()
Dauth.c188 const u8 *expected) in __ubifs_node_check_hash() argument
197 if (ubifs_check_hash(c, expected, calc)) in __ubifs_node_check_hash()
Dmaster.c66 const u8 *expected) in mst_node_check_hash() argument
78 if (ubifs_check_hash(c, expected, calc)) in mst_node_check_hash()
/fs/btrfs/
Dspace-info.c636 u64 expected; in btrfs_calc_reclaim_metadata_size() local
655 expected = div_factor_fine(space_info->total_bytes, 95); in btrfs_calc_reclaim_metadata_size()
657 expected = div_factor_fine(space_info->total_bytes, 90); in btrfs_calc_reclaim_metadata_size()
659 if (used > expected) in btrfs_calc_reclaim_metadata_size()
660 to_reclaim = used - expected; in btrfs_calc_reclaim_metadata_size()
DKconfig24 expected to change unless there are strong reasons to do so. If there
Dvolumes.c3744 bctl->stat.expected++; in __btrfs_balance()
/fs/jffs2/
DREADME.Locking6 JFFS2. It is not expected to remain perfectly up to date, but ought to
/fs/nfs/
Dnfs4xdr.c3177 static bool __decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected, in __decode_op_hdr() argument
3188 if (unlikely(opnum != expected)) in __decode_op_hdr()
3202 opnum, expected); in __decode_op_hdr()
3210 static int decode_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected) in decode_op_hdr() argument
3214 __decode_op_hdr(xdr, expected, &retval); in decode_op_hdr()