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);
94 struct ceph_none_authorizer *au;
97 au = kmalloc(sizeof(*au), GFP_NOFS);
98 if (!au)
101 au->base.destroy = ceph_auth_none_destroy_authorizer;
103 ret = ceph_auth_none_build_authorizer(ac, au);
105 kfree(au);
109 auth->authorizer = (struct ceph_authorizer *) au;
110 auth->authorizer_buf = au->buf;
111 auth->authorizer_buf_len = au->buf_len;
112 auth->authorizer_reply_buf = au->reply_buf;
113 auth->authorizer_reply_buf_len = sizeof (au->reply_buf);