On Fri, Oct 21, 2016 at 02:48:30PM +0200, Richard Weinberger wrote: > + > + if (ubifs_crypt_is_encrypted(inode)) { > + int clen = le16_to_cpu(dn->compr_size); > + > + if (clen <= 0 || clen > UBIFS_BLOCK_SIZE || clen > dlen) > + goto dump; > + > + ubifs_assert(dlen <= UBIFS_BLOCK_SIZE); > + err = fscrypt_decrypt_buffer(inode, &dn->data, &dn->data, dlen, block, GFP_NOFS); > + if (err) { > + ubifs_err(c, "fscrypt_decrypt_buffer failed: %i", err); > + return err; > + } > + > + ubifs_assert(clen <= dlen); > + dlen = clen; > + } > + There are several code blocks like this, calling either fscrypt_decrypt_buffer() or fscrypt_encrypt_buffer(), which seem to be mostly duplicated. Is it possible to refactor them into helper functions? There are also some lines well over 80 characters. Eric -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html