Re: [PATCH v2] btrfs-progs: change filename limit to 255 when creating subvolume

2018-10-24 Thread David Sterba
On Tue, Sep 18, 2018 at 09:17:54AM +0800, Su Yanjun wrote: > Modify the file name length limit to meet the Linux naming convention. > In addition, the file name length is always bigger than 0, no need to > compare with 0 again. > > Changelog: > v2: > Fix the same problem in creating snapshot

[PATCH v2] btrfs-progs: change filename limit to 255 when creating subvolume

2018-09-17 Thread Su Yanjun
Modify the file name length limit to meet the Linux naming convention. In addition, the file name length is always bigger than 0, no need to compare with 0 again. Changelog: v2: Fix the same problem in creating snapshot routine. Issue: #145 Signed-off-by: Su Yanjun --- v2: Also fix the same