Lines Matching refs:b_ops
361 bp->b_ops = ops;
713 * memory from some other caller it will already have b_ops assigned.
715 * call, the buffer won't have b_ops but it should be clean and ready
720 * left in memory with NULL b_ops. This shouldn't be a problem unless
748 if (bp->b_ops) {
749 if (bp->b_ops != fab->buf_ops)
757 * Read verifiers can reference b_ops, so we set the pointer
761 bp->b_ops = fab->buf_ops;
764 bp->b_ops = NULL;
770 * Some read verifiers will (re)set b_ops, so we must be
771 * careful not to change b_ops after running the verifier.