From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx2.suse.de ([195.135.220.15]:36010 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753288AbeBVKpZ (ORCPT ); Thu, 22 Feb 2018 05:45:25 -0500 From: Jan Kara To: Cc: Steve Kenton , =?UTF-8?q?Pali=20Roh=C3=A1r?= , Jan Kara Subject: [PATCH 0/5] udf: Improve uid/gid handling Date: Thu, 22 Feb 2018 11:45:14 +0100 Message-Id: <20180222104519.30241-1-jack@suse.cz> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: Hello, this patch series improves uid and gid handling for UDF filesystems. In particular when uid/gid mount options are used, we make sure even newly created and chowned files still belong to the target user/group (UDF now behaves the same way as FAT in this mode to be easy to use for removable media). Also when the filesystem does not store uid/gid for files, we now present these files as belonging to overflow[ug]id instead of invalid ids if uid/gid mount option are not used so that at least sysadmin can modify the filesystem. Honza