Lines Matching full:sl
200 struct io_link *sl = io_kiocb_to_cmd(req, struct io_link);
208 sl->new_dfd = READ_ONCE(sqe->fd);
212 sl->oldpath = getname(oldpath);
213 if (IS_ERR(sl->oldpath))
214 return PTR_ERR(sl->oldpath);
216 sl->newpath = getname(newpath);
217 if (IS_ERR(sl->newpath)) {
218 putname(sl->oldpath);
219 return PTR_ERR(sl->newpath);
229 struct io_link *sl = io_kiocb_to_cmd(req, struct io_link);
234 ret = do_symlinkat(sl->oldpath, sl->new_dfd, sl->newpath);
289 struct io_link *sl = io_kiocb_to_cmd(req, struct io_link);
291 putname(sl->oldpath);
292 putname(sl->newpath);