Re: [PATCH v2 0/3] handle large user and group ID for isofs and udf

2021-01-28 Thread bingjing chang
Hi Jan & Matthew, Thank you for your kind notices and comments. Please see my message below. bingjingc 於 2021年1月29日 週五 下午1:06寫道: > > [loop bxxxj...@gmail.com] in order to reply in plain-text > > Matthew Wilcox 於 2021-01-28 22:20 寫道: > > On Thu, Jan 28, 2021 at 11:55:01AM +0100, Jan Kara wrote:

Re: [PATCH v2 0/3] handle large user and group ID for isofs and udf

2021-01-28 Thread Matthew Wilcox
On Thu, Jan 28, 2021 at 11:55:01AM +0100, Jan Kara wrote: > On Thu 28-01-21 15:12:27, bingjingc wrote: > > From: BingJing Chang > > > > The uid/gid (unsigned int) of a domain user may be larger than INT_MAX. > > The parse_options of isofs and udf will return 0, and mount will fail > > with

Re: [PATCH v2 0/3] handle large user and group ID for isofs and udf

2021-01-28 Thread Jan Kara
On Thu 28-01-21 15:12:27, bingjingc wrote: > From: BingJing Chang > > The uid/gid (unsigned int) of a domain user may be larger than INT_MAX. > The parse_options of isofs and udf will return 0, and mount will fail > with -EINVAL. These patches try to handle large user and group ID. > > BingJing

[PATCH v2 0/3] handle large user and group ID for isofs and udf

2021-01-27 Thread bingjingc
From: BingJing Chang The uid/gid (unsigned int) of a domain user may be larger than INT_MAX. The parse_options of isofs and udf will return 0, and mount will fail with -EINVAL. These patches try to handle large user and group ID. BingJing Chang (3): parser: add unsigned int parser isofs: