Blame source/vdo/kernel/verify.h

Packit Service d40955
/*
Packit Service d40955
 * Copyright (c) 2020 Red Hat, Inc.
Packit Service d40955
 *
Packit Service d40955
 * This program is free software; you can redistribute it and/or
Packit Service d40955
 * modify it under the terms of the GNU General Public License
Packit Service d40955
 * as published by the Free Software Foundation; either version 2
Packit Service d40955
 * of the License, or (at your option) any later version.
Packit Service d40955
 * 
Packit Service d40955
 * This program is distributed in the hope that it will be useful,
Packit Service d40955
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service d40955
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service d40955
 * GNU General Public License for more details.
Packit Service d40955
 * 
Packit Service d40955
 * You should have received a copy of the GNU General Public License
Packit Service d40955
 * along with this program; if not, write to the Free Software
Packit Service d40955
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
Packit Service d40955
 * 02110-1301, USA. 
Packit Service d40955
 *
Packit Service d40955
 * $Id: //eng/vdo-releases/aluminum/src/c++/vdo/kernel/verify.h#1 $
Packit Service d40955
 */
Packit Service d40955
Packit Service d40955
#include "kernelLayer.h"
Packit Service d40955
Packit Service d40955
/**
Packit Service d40955
 * Verify the Albireo-provided deduplication advice, and invoke a callback once
Packit Service d40955
 * the answer is available. This is done through a call to kvdoReadBlock()
Packit Service d40955
 * which will eventually call back to verifyDuplication() once the block is
Packit Service d40955
 * read and possibly uncompressed.
Packit Service d40955
 *
Packit Service d40955
 * @param dataVIO   The DataVIO with advice filled in.
Packit Service d40955
 **/
Packit Service d40955
void kvdoVerifyDuplication(DataVIO *dataVIO);
Packit Service d40955
Packit Service d40955
/**
Packit Service d40955
 * Implements DataVIOComparator.
Packit Service d40955
 *
Packit Service d40955
 * @param first   The first DataVIO to compare
Packit Service d40955
 * @param second  The second DataVIO to compare
Packit Service d40955
 *
Packit Service d40955
 * @return true if the contents of the two DataVIOs are the same
Packit Service d40955
 **/
Packit Service d40955
bool kvdoCompareDataVIOs(DataVIO *first, DataVIO *second)
Packit Service d40955
  __attribute__((warn_unused_result));