-
Notifications
You must be signed in to change notification settings - Fork 54.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ceph: quota: add initial infrastructure to support cephfs quotas
This patch adds the infrastructure required to support cephfs quotas as it is currently implemented in the ceph fuse client. Cephfs quotas can be set on any directory, and can restrict the number of bytes or the number of files stored beneath that point in the directory hierarchy. Quotas are set using the extended attributes 'ceph.quota.max_files' and 'ceph.quota.max_bytes', and can be removed by setting these attributes to '0'. Link: http://tracker.ceph.com/issues/22372 Signed-off-by: Luis Henriques <[email protected]> Reviewed-by: "Yan, Zheng" <[email protected]> Signed-off-by: Ilya Dryomov <[email protected]>
- Loading branch information
Showing
11 changed files
with
180 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* quota.c - CephFS quota | ||
* | ||
* Copyright (C) 2017-2018 SUSE | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* as published by the Free Software Foundation; either version 2 | ||
* of the License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program; if not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include "super.h" | ||
#include "mds_client.h" | ||
|
||
void ceph_handle_quota(struct ceph_mds_client *mdsc, | ||
struct ceph_mds_session *session, | ||
struct ceph_msg *msg) | ||
{ | ||
struct super_block *sb = mdsc->fsc->sb; | ||
struct ceph_mds_quota *h = msg->front.iov_base; | ||
struct ceph_vino vino; | ||
struct inode *inode; | ||
struct ceph_inode_info *ci; | ||
|
||
if (msg->front.iov_len != sizeof(*h)) { | ||
pr_err("%s corrupt message mds%d len %d\n", __func__, | ||
session->s_mds, (int)msg->front.iov_len); | ||
ceph_msg_dump(msg); | ||
return; | ||
} | ||
|
||
/* increment msg sequence number */ | ||
mutex_lock(&session->s_mutex); | ||
session->s_seq++; | ||
mutex_unlock(&session->s_mutex); | ||
|
||
/* lookup inode */ | ||
vino.ino = le64_to_cpu(h->ino); | ||
vino.snap = CEPH_NOSNAP; | ||
inode = ceph_find_inode(sb, vino); | ||
if (!inode) { | ||
pr_warn("Failed to find inode %llu\n", vino.ino); | ||
return; | ||
} | ||
ci = ceph_inode(inode); | ||
|
||
spin_lock(&ci->i_ceph_lock); | ||
ci->i_rbytes = le64_to_cpu(h->rbytes); | ||
ci->i_rfiles = le64_to_cpu(h->rfiles); | ||
ci->i_rsubdirs = le64_to_cpu(h->rsubdirs); | ||
ci->i_max_bytes = le64_to_cpu(h->max_bytes); | ||
ci->i_max_files = le64_to_cpu(h->max_files); | ||
spin_unlock(&ci->i_ceph_lock); | ||
|
||
iput(inode); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters