Re: [PATCH] vfs: require verified birth date for file creation
From: Eric Biggers
Date: Wed Apr 01 2026 - 17:01:39 EST
On Wed, Apr 01, 2026 at 02:43:21PM +0200, Christian Brauner wrote:
> + u16 birthdate_year;
Shouldn't this be a u32 so that we don't have to rush to update this in
the year 65535? Maybe even an arbitrary-length integer stored in a
separate allocation, so that this won't have to be revisited.
> + if (age < 18)
Probably should go with something a bit higher to ensure it's sufficient
for all jurisdictions. Maybe 50?
- Eric