btrfs-progs: give raid6.c its exported prototypes
authorZach Brown <zab@redhat.com>
Wed, 14 Aug 2013 23:16:44 +0000 (16:16 -0700)
committerDavid Sterba <dsterba@suse.cz>
Tue, 3 Sep 2013 17:41:11 +0000 (19:41 +0200)
commit0173e6eb83dd120cf6d5063ef4fb5eef5c7eef4c
treef78fe171e259c890ee7be26946bb589a4c2d16d2
parent2a505d6c583bf68b47ba6d8e8ccbb42f76060e72
btrfs-progs: give raid6.c its exported prototypes

raid6.c is built without access to the prototypes of functions it
exports.

  warning: symbol 'raid6_gen_syndrome' was not declared.  Should it be static?

They could be changed and get out of sync of the exported prototypes
without errors.   So we add disk-io.h, and its dependency ctree.h, so
that it has a chance to check that its exported prototypes are correct.

Signed-off-by: Zach Brown <zab@redhat.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
raid6.c