Re: [PATCH part2 2/4] earlycpio.c: Fix the confusing comment offind_cpio_data().

From: Tejun Heo
Date: Mon Aug 12 2013 - 10:17:29 EST


On Thu, Aug 08, 2013 at 01:03:57PM +0800, Tang Chen wrote:
> The comments of find_cpio_data() says:
>
> * @offset: When a matching file is found, this is the offset to the
> * beginning of the cpio. ......
>
> But according to the code,
>
> dptr = PTR_ALIGN(p + ch[C_NAMESIZE], 4);
> nptr = PTR_ALIGN(dptr + ch[C_FILESIZE], 4);
> ....
> *offset = (long)nptr - (long)data; /* data is the cpio file */
>
> @offset is the offset of the next file, not the matching file itself.
> This is confused and may cause unnecessary waste of time to debug.
> So fix it.
>
> v1 -> v2:
> As tj suggested, rename @offset to @nextoff which is more clear to
> users. And also adjust the new comments.
>
> Signed-off-by: Tang Chen <tangchen@xxxxxxxxxxxxxx>
> Reviewed-by: Zhang Yanfei <zhangyanfei@xxxxxxxxxxxxxx>

Reviewed-by: Tejun Heo <tj@xxxxxxxxxx>

Thanks.

--
tejun
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/