befs fixes for 4.13-rc1
-----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAABAgAGBQJZaIEXAAoJEGu/nxmHO1GNRt8IAKatADenX+PZeE0npeilA0k2 GNmqpN1VAypXxOV2Ud0L5T0x9aRasMuiaQTxWRJHvMfhYycdlJOe61ZMjF0mBTp2 14mw0HpdiFzFrH3HoCTo1nwBfdkI4G9wGjE6+/ernp1jbmnVC8jWRd2AurbBGdFQ JMg1oFu13SxFGcJibarXoDfXAe0d4DZrMsXBTudWKyhsqhbkpXiYSdYT9HbyFhUy +/a7G/+PneDW6FvxR36D4vN5JNcwuW5NpvzDWXNpmj/c8Rr6Twycx9YJqiaRgQ/6 OUmIQseKMaJleysiCJo3ahWcn+LdOWOmX7cIpgA6L2yn3wGzMQklVAqPwxpy49Q= =csgd -----END PGP SIGNATURE----- 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()
This commit is contained in:
commit
d3c329c741
|
@ -120,18 +120,15 @@ static int befs_compare_strings(const void *key1, int keylen1,
|
|||
const void *key2, int keylen2);
|
||||
|
||||
/**
|
||||
* befs_bt_read_super - read in btree superblock convert to cpu byteorder
|
||||
* @sb: Filesystem superblock
|
||||
* @ds: Datastream to read from
|
||||
* @sup: Buffer in which to place the btree superblock
|
||||
* befs_bt_read_super() - read in btree superblock convert to cpu byteorder
|
||||
* @sb: Filesystem superblock
|
||||
* @ds: Datastream to read from
|
||||
* @sup: Buffer in which to place the btree superblock
|
||||
*
|
||||
* Calls befs_read_datastream to read in the btree superblock and
|
||||
* makes sure it is in cpu byteorder, byteswapping if necessary.
|
||||
*
|
||||
* On success, returns BEFS_OK and *@sup contains the btree superblock,
|
||||
* in cpu byte order.
|
||||
*
|
||||
* On failure, BEFS_ERR is returned.
|
||||
* Return: BEFS_OK on success and if *@sup contains the btree superblock in cpu
|
||||
* byte order. Otherwise return BEFS_ERR on error.
|
||||
*/
|
||||
static int
|
||||
befs_bt_read_super(struct super_block *sb, const befs_data_stream *ds,
|
||||
|
|
Loading…
Reference in New Issue