Not sure what happened with this multiline comment, but clean up all the
stars.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
/* Simplified from version in include/linux/overflow.h */
/*
- * * Compute a*b+c, returning SIZE_MAX on overflow. Internal helper for
- * * struct_size() below.
- * */
+ * Compute a*b+c, returning SIZE_MAX on overflow. Internal helper for
+ * struct_size() below.
+ */
static inline size_t __ab_c_size(size_t a, size_t b, size_t c)
{
return (a * b) + c;