From: Yehuda Sadeh Date: Wed, 23 Jun 2010 22:52:27 +0000 (-0700) Subject: ceph: fix caps debugfs entry X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=bfaf148eb2e42c00f1c79b2163f0804068ea0c5e;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git ceph: fix caps debugfs entry The ceph client structure was not set correctly. Signed-off-by: Yehuda Sadeh Signed-off-by: Sage Weil --- diff --git a/fs/ceph/debugfs.c b/fs/ceph/debugfs.c index 3be33fb066c..f2f5332ddbb 100644 --- a/fs/ceph/debugfs.c +++ b/fs/ceph/debugfs.c @@ -261,7 +261,7 @@ static int osdc_show(struct seq_file *s, void *pp) static int caps_show(struct seq_file *s, void *p) { - struct ceph_client *client = p; + struct ceph_client *client = s->private; int total, avail, used, reserved, min; ceph_reservation_status(client, &total, &avail, &used, &reserved, &min);