Commit d3c329c7 authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'befs-v4.13-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs

Pull single befs fix from Luis de Bethencourt:
 "Very little activity in the befs file system this time since I'm busy
  settling into a new job"

* tag 'befs-v4.13-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs:
  befs: add kernel-doc formatting for befs_bt_read_super()
parents b86faee6 799ce1db
...@@ -120,18 +120,15 @@ static int befs_compare_strings(const void *key1, int keylen1, ...@@ -120,18 +120,15 @@ static int befs_compare_strings(const void *key1, int keylen1,
const void *key2, int keylen2); const void *key2, int keylen2);
/** /**
* befs_bt_read_super - read in btree superblock convert to cpu byteorder * befs_bt_read_super() - read in btree superblock convert to cpu byteorder
* @sb: Filesystem superblock * @sb: Filesystem superblock
* @ds: Datastream to read from * @ds: Datastream to read from
* @sup: Buffer in which to place the btree superblock * @sup: Buffer in which to place the btree superblock
* *
* Calls befs_read_datastream to read in the btree superblock and * Calls befs_read_datastream to read in the btree superblock and
* makes sure it is in cpu byteorder, byteswapping if necessary. * makes sure it is in cpu byteorder, byteswapping if necessary.
* * Return: BEFS_OK on success and if *@sup contains the btree superblock in cpu
* On success, returns BEFS_OK and *@sup contains the btree superblock, * byte order. Otherwise return BEFS_ERR on error.
* in cpu byte order.
*
* On failure, BEFS_ERR is returned.
*/ */
static int static int
befs_bt_read_super(struct super_block *sb, const befs_data_stream *ds, befs_bt_read_super(struct super_block *sb, const befs_data_stream *ds,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment