Lines Matching defs:au
43 struct ceph_none_authorizer *au)
45 void *p = au->buf;
46 void *const end = p + sizeof(au->buf);
55 au->buf_len = p - (void *)au->buf;
56 dout("%s built authorizer len %d\n", __func__, au->buf_len);
97 struct ceph_none_authorizer *au;
100 au = kmalloc(sizeof(*au), GFP_NOFS);
101 if (!au)
104 au->base.destroy = ceph_auth_none_destroy_authorizer;
106 ret = ceph_auth_none_build_authorizer(ac, au);
108 kfree(au);
112 auth->authorizer = (struct ceph_authorizer *) au;
113 auth->authorizer_buf = au->buf;
114 auth->authorizer_buf_len = au->buf_len;