Lines Matching defs:create
80 ksft_print_msg("%s: [FAIL, udmabuf-create]\n", TEST_PREFIX);
135 struct udmabuf_create create;
170 memset(&create, 0, sizeof(create));
173 create.memfd = memfd;
174 create.offset = getpagesize()/2;
175 create.size = getpagesize();
176 buf = ioctl(devfd, UDMABUF_CREATE, &create);
183 create.memfd = memfd;
184 create.offset = 0;
185 create.size = getpagesize()/2;
186 buf = ioctl(devfd, UDMABUF_CREATE, &create);
193 create.memfd = 0; /* stdin */
194 create.offset = 0;
195 create.size = size;
196 buf = ioctl(devfd, UDMABUF_CREATE, &create);
206 create.memfd = memfd;
207 create.offset = 0;
208 create.size = size;
209 buf = ioctl(devfd, UDMABUF_CREATE, &create);