Searched refs:unlink (Results 1 - 200 of 357) sorted by relevance

12

/linux-4.1.27/tools/testing/selftests/efivarfs/
H A DMakefile3 test_objs = open-unlink create-read
H A Dopen-unlink.c120 if (unlink(path) < 0) { main()
121 perror("unlink"); main()
H A Defivarfs.sh130 ./open-unlink $file
/linux-4.1.27/drivers/usb/usbip/
H A Dstub_tx.c41 struct stub_unlink *unlink; stub_enqueue_ret_unlink() local
43 unlink = kzalloc(sizeof(struct stub_unlink), GFP_ATOMIC); stub_enqueue_ret_unlink()
44 if (!unlink) { stub_enqueue_ret_unlink()
49 unlink->seqnum = seqnum; stub_enqueue_ret_unlink()
50 unlink->status = status; stub_enqueue_ret_unlink()
52 list_add_tail(&unlink->list, &sdev->unlink_tx); stub_enqueue_ret_unlink()
131 struct stub_unlink *unlink) setup_ret_unlink_pdu()
133 setup_base_pdu(&rpdu->base, USBIP_RET_UNLINK, unlink->seqnum); setup_ret_unlink_pdu()
134 rpdu->u.ret_unlink.status = unlink->status; setup_ret_unlink_pdu()
291 struct stub_unlink *unlink, *tmp; dequeue_from_unlink_tx() local
295 list_for_each_entry_safe(unlink, tmp, &sdev->unlink_tx, list) { dequeue_from_unlink_tx()
296 list_move_tail(&unlink->list, &sdev->unlink_free); dequeue_from_unlink_tx()
298 return unlink; dequeue_from_unlink_tx()
309 struct stub_unlink *unlink, *tmp; stub_send_ret_unlink() local
317 while ((unlink = dequeue_from_unlink_tx(sdev)) != NULL) { stub_send_ret_unlink()
326 usbip_dbg_stub_tx("setup ret unlink %lu\n", unlink->seqnum); stub_send_ret_unlink()
329 setup_ret_unlink_pdu(&pdu_header, unlink); stub_send_ret_unlink()
352 list_for_each_entry_safe(unlink, tmp, &sdev->unlink_free, list) { stub_send_ret_unlink()
353 list_del(&unlink->list); stub_send_ret_unlink()
354 kfree(unlink); stub_send_ret_unlink()
377 * and then receives the result of the unlink request. The stub_tx_loop()
379 * completion of the unlink request. The request of the stub_tx_loop()
380 * unlink is ignored. This is ok because a driver who calls stub_tx_loop()
381 * usb_unlink_urb() understands the unlink was too late by stub_tx_loop()
130 setup_ret_unlink_pdu(struct usbip_header *rpdu, struct stub_unlink *unlink) setup_ret_unlink_pdu() argument
H A Dvhci_rx.c119 struct vhci_unlink *unlink, *tmp; dequeue_pending_unlink() local
123 list_for_each_entry_safe(unlink, tmp, &vdev->unlink_rx, list) { dequeue_pending_unlink()
124 pr_info("unlink->seqnum %lu\n", unlink->seqnum); dequeue_pending_unlink()
125 if (unlink->seqnum == pdu->base.seqnum) { dequeue_pending_unlink()
126 usbip_dbg_vhci_rx("found pending unlink, %lu\n", dequeue_pending_unlink()
127 unlink->seqnum); dequeue_pending_unlink()
128 list_del(&unlink->list); dequeue_pending_unlink()
131 return unlink; dequeue_pending_unlink()
143 struct vhci_unlink *unlink; vhci_recv_ret_unlink() local
148 unlink = dequeue_pending_unlink(vdev, pdu); vhci_recv_ret_unlink()
149 if (!unlink) { vhci_recv_ret_unlink()
150 pr_info("cannot find the pending unlink %u\n", vhci_recv_ret_unlink()
156 urb = pickup_urb_and_free_priv(vdev, unlink->unlink_seqnum); vhci_recv_ret_unlink()
161 * I get the result of a unlink request. But, it seems that I vhci_recv_ret_unlink()
170 /* If unlink is successful, status is -ECONNRESET */ vhci_recv_ret_unlink()
182 kfree(unlink); vhci_recv_ret_unlink()
H A Dvhci_tx.c138 struct vhci_unlink *unlink, *tmp; dequeue_from_unlink_tx() local
142 list_for_each_entry_safe(unlink, tmp, &vdev->unlink_tx, list) { dequeue_from_unlink_tx()
143 list_move_tail(&unlink->list, &vdev->unlink_rx); dequeue_from_unlink_tx()
145 return unlink; dequeue_from_unlink_tx()
155 struct vhci_unlink *unlink = NULL; vhci_send_cmd_unlink() local
163 while ((unlink = dequeue_from_unlink_tx(vdev)) != NULL) { vhci_send_cmd_unlink()
172 usbip_dbg_vhci_tx("setup cmd unlink, %lu\n", unlink->seqnum); vhci_send_cmd_unlink()
176 pdu_header.base.seqnum = unlink->seqnum; vhci_send_cmd_unlink()
179 pdu_header.u.cmd_unlink.seqnum = unlink->unlink_seqnum; vhci_send_cmd_unlink()
H A Dvhci_hcd.c574 * unlink pdu is sent or not, vhci_rx receives a normal return pdu and gives
598 * => notify unlink completeness by giving back the urb
609 * - case 3a). the urb of the unlink request is now in submission.
611 * => after the unlink is completed, send RET_UNLINK.
613 * - case 3b). the urb of the unlink request is not in submission.
645 /* send unlink request here? */ vhci_urb_dequeue()
675 struct vhci_unlink *unlink; vhci_urb_dequeue() local
680 unlink = kzalloc(sizeof(struct vhci_unlink), GFP_ATOMIC); vhci_urb_dequeue()
681 if (!unlink) { vhci_urb_dequeue()
688 unlink->seqnum = atomic_inc_return(&the_controller->seqnum); vhci_urb_dequeue()
689 if (unlink->seqnum == 0xffff) vhci_urb_dequeue()
692 unlink->unlink_seqnum = priv->seqnum; vhci_urb_dequeue()
698 list_add_tail(&unlink->list, &vdev->unlink_tx); vhci_urb_dequeue()
712 struct vhci_unlink *unlink, *tmp; vhci_device_unlink_cleanup() local
717 list_for_each_entry_safe(unlink, tmp, &vdev->unlink_tx, list) { vhci_device_unlink_cleanup()
718 pr_info("unlink cleanup tx %lu\n", unlink->unlink_seqnum); vhci_device_unlink_cleanup()
719 list_del(&unlink->list); vhci_device_unlink_cleanup()
720 kfree(unlink); vhci_device_unlink_cleanup()
726 unlink = list_first_entry(&vdev->unlink_rx, struct vhci_unlink, vhci_device_unlink_cleanup()
729 /* give back URB of unanswered unlink request */ vhci_device_unlink_cleanup()
730 pr_info("unlink cleanup rx %lu\n", unlink->unlink_seqnum); vhci_device_unlink_cleanup()
732 urb = pickup_urb_and_free_priv(vdev, unlink->unlink_seqnum); vhci_device_unlink_cleanup()
735 unlink->unlink_seqnum); vhci_device_unlink_cleanup()
736 list_del(&unlink->list); vhci_device_unlink_cleanup()
737 kfree(unlink); vhci_device_unlink_cleanup()
745 list_del(&unlink->list); vhci_device_unlink_cleanup()
756 kfree(unlink); vhci_device_unlink_cleanup()
H A Dstub_dev.c198 struct stub_unlink *unlink, *tmp; stub_shutdown_connection() local
201 list_for_each_entry_safe(unlink, tmp, &sdev->unlink_tx, list) { stub_shutdown_connection()
202 list_del(&unlink->list); stub_shutdown_connection()
203 kfree(unlink); stub_shutdown_connection()
205 list_for_each_entry_safe(unlink, tmp, &sdev->unlink_free, stub_shutdown_connection()
207 list_del(&unlink->list); stub_shutdown_connection()
208 kfree(unlink); stub_shutdown_connection()
H A Dstub_rx.c233 dev_info(&priv->urb->dev->dev, "unlink urb %p\n", stub_recv_cmd_unlink()
242 * of the unlink request. stub_recv_cmd_unlink()
249 * the seqnum of the unlink request. This will be used stub_recv_cmd_unlink()
250 * to make the result pdu of the unlink request. stub_recv_cmd_unlink()
263 * will return the result pdu of this unlink request stub_recv_cmd_unlink()
269 * of the unlink request ? stub_recv_cmd_unlink()
274 "failed to unlink a urb %p, ret %d\n", stub_recv_cmd_unlink()
284 * The urb of the unlink target is not found in priv_init queue. It was stub_recv_cmd_unlink()
287 * return the completeness of this unlink request to vhci_hcd. stub_recv_cmd_unlink()
H A Dvhci.h70 /* seqnum of the unlink target */
H A Dusbip_common.h121 * - USBIP_CMD_UNLINK: an unlink request of a pending USBIP_CMD_SUBMIT,
194 * @seqnum: the URB seqnum to unlink
/linux-4.1.27/fs/nfs/
H A DMakefile9 direct.o pagelist.o read.o symlink.o unlink.o \
H A Dunlink.c2 * linux/fs/nfs/unlink.c
28 * @data: pointer to unlink structure.
249 * @dentry: dentry to unlink
319 /* Cancel a queued async unlink. Called when a sillyrename run fails. */
464 * queued async unlink if it failed.
500 * and only performs the unlink once the last reference to it is put.
559 /* queue unlink first. Can't do this from rpc_release as it nfs_sillyrename()
574 /* run the rename task, undo unlink if it fails */ nfs_sillyrename()
H A Ddir.c8 * 10 Apr 1996 Added silly rename for unlink --okir
11 * Re-implemented silly rename for unlink, newly implemented
1301 /* Unhash it, so that ancestors of killed async unlink nfs_dentry_delete()
1844 * If sillyrename() returns 0, we do nothing, otherwise we unlink.
1851 dfprintk(VFS, "NFS: unlink(%s/%lu, %pd)\n", dir->i_sb->s_id, nfs_unlink()
H A Dinternal.h488 /* unlink.c */
H A Dnfs3proc.c891 .unlink = nfs_unlink,
H A Dproc.c683 .unlink = nfs_unlink,
/linux-4.1.27/tools/testing/selftests/vm/
H A Dhugetlbfstest.c59 unlink(path); open_file()
63 unlink(path); open_file()
H A Dhugepage-mmap.c78 unlink(FILE_NAME); main()
89 unlink(FILE_NAME); main()
/linux-4.1.27/drivers/staging/lustre/lnet/lnet/
H A Dlib-md.c50 /* first unlink attempt... */ lnet_md_unlink()
56 * and unlink it if it was created lnet_md_unlink()
70 CDEBUG(D_NET, "Queueing unlink of md %p\n", md); lnet_md_unlink()
89 lnet_md_build(lnet_libmd_t *lmd, lnet_md_t *umd, int unlink) lnet_md_build() argument
104 lmd->md_flags = (unlink == LNET_UNLINK) ? LNET_MD_FLAG_AUTO_UNLINK : 0; lnet_md_build()
247 * \param unlink A flag to indicate whether the MD is automatically unlinked
267 lnet_unlink_t unlink, lnet_handle_md_t *handle) LNetMDAttach()
291 rc = lnet_md_build(md, &umd, unlink); LNetMDAttach()
334 * \param umd,unlink See the discussion for LNetMDAttach().
347 LNetMDBind(lnet_md_t umd, lnet_unlink_t unlink, lnet_handle_md_t *handle) LNetMDBind() argument
368 rc = lnet_md_build(md, &umd, unlink); LNetMDBind()
398 * this MD is not NULL and was created with auto unlink enabled, the ME is
266 LNetMDAttach(lnet_handle_me_t meh, lnet_md_t umd, lnet_unlink_t unlink, lnet_handle_md_t *handle) LNetMDAttach() argument
H A Dlib-me.c60 * \param unlink Indicates whether the ME should be unlinked when the memory
79 lnet_unlink_t unlink, lnet_ins_pos_t pos, LNetMEAttach()
107 me->me_unlink = unlink; LNetMEAttach()
140 * \param match_id,match_bits,ignore_bits,unlink,pos,handle See the discussion
151 lnet_unlink_t unlink, lnet_ins_pos_t pos, LNetMEInsert()
196 new_me->me_unlink = unlink; LNetMEInsert()
219 * and an unlink event will be generated. It is an error to use the ME handle
226 * \see LNetMDUnlink() for the discussion on delivering unlink event.
76 LNetMEAttach(unsigned int portal, lnet_process_id_t match_id, __u64 match_bits, __u64 ignore_bits, lnet_unlink_t unlink, lnet_ins_pos_t pos, lnet_handle_me_t *handle) LNetMEAttach() argument
148 LNetMEInsert(lnet_handle_me_t current_meh, lnet_process_id_t match_id, __u64 match_bits, __u64 ignore_bits, lnet_unlink_t unlink, lnet_ins_pos_t pos, lnet_handle_me_t *handle) LNetMEInsert() argument
H A Dlib-msg.c339 int unlink; lnet_msg_detach_md() local
345 unlink = lnet_md_unlinkable(md); lnet_msg_detach_md()
348 msg->msg_ev.unlinked = unlink; lnet_msg_detach_md()
352 if (unlink) lnet_msg_detach_md()
H A Dapi-ni.c466 /* Found alive MD/ME/EQ, user really should unlink/free lnet_res_container_cleanup()
686 * have shut down already, so it is safe to unlink and free all lnet_unprepare()
1668 /* We can have a tiny EQ since we only need to see the unlink event on lnet_ping_target_init()
1732 /* NB md could be busy; this just starts the unlink */ lnet_ping_target_fini()
1743 CWARN("Still waiting for ping MD to unlink\n"); lnet_ping_target_fini()
1792 /* NB 2 events max (including any unlink event) */ lnet_ping()
1830 /* MUST block for unlink to complete */ lnet_ping()
1860 /* timed out waiting for unlink */ lnet_ping()
H A Dlib-eq.c116 /* NB: hold lnet_eq_wait_lock for EQ link/unlink, so we can do LNetEQAlloc()
166 /* NB: hold lnet_eq_wait_lock for EQ link/unlink, so we can do LNetEQFree()
H A Drouter.c1117 /* unlink all RCDs on deathrow list */ lnet_prune_rc_data()
1156 "Waiting for rc buffers to unlink\n"); lnet_prune_rc_data()
1230 /* The unlink event callback will signal final completion */ lnet_router_checker()
1624 lnet_prune_rc_data(0); /* unlink all rcd and nowait */ lnet_router_checker()
H A Dlib-ptl.c206 /* Auto-unlink NOW, so the ME gets unlinked if required. lnet_try_match_md()
208 * for unlink when it is finalized. */ lnet_try_match_md()
/linux-4.1.27/arch/um/drivers/
H A Dxterm.c120 if (unlink(file)) { xterm_open()
122 printk(UM_KERN_ERR "xterm_open : unlink failed, errno = %d\n", xterm_open()
181 unlink(file); xterm_open()
H A Dmconsole_user.c173 unlink(mconsole_socket_name); mconsole_unlink_socket()
/linux-4.1.27/tools/perf/util/
H A Dvdso.c112 unlink(vdso_info->vdso.temp_file_name); vdso__exit()
115 unlink(vdso_info->vdso32.temp_file_name); vdso__exit()
117 unlink(vdso_info->vdsox32.temp_file_name); vdso__exit()
H A Ddata.c42 unlink(oldname); check_backup()
H A Dbuild-id.c443 if (unlink(linkname)) build_id_cache__remove_s()
452 if (unlink(linkname)) build_id_cache__remove_s()
H A Dsymbol-elf.c609 unlink(tmpbuf); decompress_kmodule()
1280 unlink(filename); kcore__init()
1536 return unlink(filename); kcore_copy__unlink()
1704 unlink(extract_filename); kcore_copy()
1750 unlink(kce->extract_filename); kcore_extract__create()
1759 unlink(kce->extract_filename); kcore_extract__delete()
H A Dtrace-event-info.c573 unlink(tdata->temp_file); tracing_data_put()
H A Dutil.c137 unlink(to); copyfile_mode()
/linux-4.1.27/tools/usb/
H A Dhcd-tests.sh9 # - unlink: needs bulk sink and/or src, test HCD unlink processing
24 # - include unlink tests
242 unlink)
/linux-4.1.27/include/linux/
H A Ddevpts_fs.h29 /* unlink */
H A Deventpoll.h37 * This is called from inside fs/file_table.c:__fput() to unlink files
H A Dnfs_fs.h494 * linux/fs/nfs/unlink.c
/linux-4.1.27/drivers/staging/lustre/lustre/ptlrpc/
H A Dniobuf.c89 /* We're going to get an UNLINK event when I unlink below, ptl_send_buf()
252 /* Let's setup deadline for reply unlink. */ ptlrpc_unregister_bulk()
262 /* the unlink ensures the callback happens ASAP and is the last ptlrpc_unregister_bulk()
274 /* Do not wait for unlink to finish. */ ptlrpc_unregister_bulk()
608 /* We must see the unlink callback to unset rq_reply_unlink, ptl_send_rpc()
609 so we can't auto-unlink */ ptl_send_rpc()
670 /* We do sync unlink here as there was no real transfer here so ptl_send_rpc()
671 * the chance to have long unlink to sluggish net is smaller here. */ ptl_send_rpc()
H A Devents.c113 DEBUG_REQ(D_NET, req, "unlink"); reply_in_callback()
154 so we must unlink in ptlrpc_unregister_reply */ reply_in_callback()
H A Dclient.c1603 * Note that this also will start async reply unlink. ptlrpc_check_set()
1609 * Check if we still need to wait for unlink. ptlrpc_check_set()
1778 /* unlink from net because we are going to ptlrpc_check_set()
1820 * reply unlink. */ ptlrpc_check_set()
1822 /* start async bulk unlink too */ ptlrpc_check_set()
2366 * Let's setup deadline for reply unlink. ptlrpc_unregister_reply()
2392 * Do not wait for unlink to finish. ptlrpc_unregister_reply()
/linux-4.1.27/arch/um/os-Linux/
H A Dmem.c121 if (unlink(tempname) < 0) { make_tempfile()
122 perror("unlink"); make_tempfile()
H A Duser_syms.c82 EXPORT_SYMBOL_PROTO(unlink); variable
H A Dumid.c104 if (unlink(file) < 0 && errno != ENOENT) { remove_files_and_dir()
272 * There's a nice tiny little race between this unlink and make_umid()
276 if (unlink(tmp)) { make_umid()
/linux-4.1.27/fs/jffs2/
H A Dsummary.h61 jint32_t ino; /* == zero for unlink */
117 jint32_t ino; /* == zero for unlink */
H A Ddir.c55 .unlink = jffs2_unlink,
411 as if it were the final unlink() */ jffs2_symlink()
555 as if it were the final unlink() */ jffs2_mkdir()
731 as if it were the final unlink() */ jffs2_mknod()
846 pr_notice("%s(): Link succeeded, unlink failed (err %d). You now have a hard link\n", jffs2_rename()
H A Dwrite.c529 as if it were the final unlink() */ jffs2_do_create()
628 /* dead_f is NULL if this was a rename not a real unlink */ jffs2_do_unlink()
H A Dbuild.c202 /* Should we unlink it from its previous parent? */ for_each_inode()
H A Dnodelist.h259 uint32_t ino; /* == zero for unlink */
/linux-4.1.27/include/uapi/linux/
H A Dkeyctl.h46 #define KEYCTL_UNLINK 9 /* unlink a key from a keyring */
H A Djffs2.h124 jint32_t ino; /* == zero for unlink */
/linux-4.1.27/fs/hfs/
H A Ddir.c246 * This serves as both unlink() and rmdir() in the inode_operations
251 * HFS does not have hardlinks, so both rmdir and unlink set the
314 .unlink = hfs_remove,
/linux-4.1.27/drivers/staging/comedi/drivers/
H A Dusbdux.c241 /* unlink only if the urb really has been submitted */ usbdux_ai_cancel()
329 /* after an unlink command, unplug, ... etc */ usbduxsub_ai_isoc_irq()
344 * operation would unlink the urb. usbduxsub_ai_isoc_irq()
369 /* unlink only if it is really running */ usbdux_ao_cancel()
464 /* after an unlink command, unplug, ... etc */ usbduxsub_ao_isoc_irq()
479 * operation would unlink the urb. usbduxsub_ao_isoc_irq()
501 /* in case of a resubmission after an unlink... */ usbdux_submit_urbs()
737 /* fixme: unlink here?? */ usbdux_ai_cmd()
1007 /* fixme: unlink here?? */ usbdux_ao_cmd()
1166 /* unlink only if it is really running */ usbdux_pwm_cancel()
1190 * after an unlink command, unplug, ... etc usbduxsub_pwm_irq()
1191 * no unlink needed here. Already shutting down. usbduxsub_pwm_irq()
1226 /* don't do an unlink here */ usbduxsub_pwm_irq()
1238 /* in case of a resubmission after an unlink... */ usbduxsub_submit_pwm_urbs()
1710 /* force unlink all urbs */ usbdux_detach()
H A Dusbduxsigma.c202 /* unlink only if it is really running */ usbduxsigma_ai_cancel()
287 /* happens after an unlink command */ usbduxsigma_ai_urb_complete()
301 * operation would unlink the urb. usbduxsigma_ai_urb_complete()
325 /* unlink only if it is really running */ usbduxsigma_ao_cancel()
417 /* happens after an unlink command */ usbduxsigma_ao_urb_complete()
431 * operation would unlink the urb. usbduxsigma_ao_urb_complete()
453 /* in case of a resubmission after an unlink... */ usbduxsigma_submit_urbs()
1038 /* unlink only if it is really running */ usbduxsigma_pwm_cancel()
1059 /* happens after an unlink command */ usbduxsigma_pwm_urb_complete()
1061 usbduxsigma_pwm_stop(dev, 0); /* w/o unlink */ usbduxsigma_pwm_urb_complete()
1069 usbduxsigma_pwm_stop(dev, 0); /* w/o unlink */ usbduxsigma_pwm_urb_complete()
1086 usbduxsigma_pwm_stop(dev, 0); /* w/o unlink */ usbduxsigma_pwm_urb_complete()
1096 /* in case of a resubmission after an unlink... */ usbduxsigma_submit_pwm_urb()
1607 /* force unlink all urbs */ usbduxsigma_detach()
H A Dusbduxfast.c291 /* after an unlink command, unplug, ... etc */ usbduxfast_ai_interrupt()
306 * operation would unlink the urb. usbduxfast_ai_interrupt()
792 /* fixme: unlink here?? */ usbduxfast_ai_cmd()
/linux-4.1.27/tools/testing/selftests/exec/
H A Dexecveat.c269 unlink("execveat.moved"); /* remove the file now fd open */ run_tests()
274 unlink("execveat.path.ephemeral"); run_tests()
323 unlink("script.moved"); /* remove the file while fd open */ run_tests()
331 unlink("subdir.moved/script"); run_tests()
332 unlink("subdir.moved"); run_tests()
/linux-4.1.27/fs/ubifs/
H A Ddir.c978 int unlink = !!new_inode; ubifs_rename() local
1002 if (unlink) ubifs_rename()
1006 if (unlink && is_dir) { ubifs_rename()
1042 if (!unlink) ubifs_rename()
1050 if (unlink) ubifs_rename()
1065 if (unlink) { ubifs_rename()
1088 if (unlink && IS_SYNC(new_inode)) ubifs_rename()
1111 if (unlink) { ubifs_rename()
1122 if (!unlink) ubifs_rename()
1125 if (unlink) ubifs_rename()
1179 .unlink = ubifs_unlink,
/linux-4.1.27/drivers/net/irda/
H A Dsir_dongle.c128 dev->dongle_drv = NULL; /* unlink the dongle driver */ sirdev_put_dongle()
H A Dksdazzle-sir.c169 /* unlink, shutdown, unplug, other nasties */ ksdazzle_speed_irq()
252 /* unlink, shutdown, unplug, other nasties */ ksdazzle_send_irq()
360 /* unlink, shutdown, unplug, other nasties */ ksdazzle_rcv_irq()
H A Dkingsun-sir.c140 /* unlink, shutdown, unplug, other nasties */ kingsun_send_irq()
213 /* unlink, shutdown, unplug, other nasties */ kingsun_rcv_irq()
H A Dks959-sir.c246 /* unlink, shutdown, unplug, other nasties */ ks959_speed_irq()
339 /* unlink, shutdown, unplug, other nasties */ ks959_send_irq()
446 /* unlink, shutdown, unplug, other nasties */ ks959_rcv_irq()
/linux-4.1.27/fs/qnx4/
H A Dnamei.c12 * 04-07-1998 by Frank Denis : first step for rmdir/unlink.
/linux-4.1.27/fs/ceph/
H A Dstrings.c67 case CEPH_MDS_OP_UNLINK: return "unlink"; ceph_mds_op_name()
H A Ddir.c13 * Directory operations: readdir, lookup, create, link, unlink,
903 * rmdir and unlink are differ only by the metadata op code
919 dout("unlink/rmdir dir %p dn %p inode %p\n", ceph_unlink()
1381 .unlink = ceph_unlink,
/linux-4.1.27/fs/efivarfs/
H A Dinode.c168 .unlink = efivarfs_unlink,
/linux-4.1.27/security/selinux/include/
H A Dclassmap.h4 #define COMMON_FILE_PERMS COMMON_FILE_SOCK_PERMS, "unlink", "link", \
/linux-4.1.27/fs/9p/
H A Dv9fs_vfs.h38 * unlink calls remove, which is an implicit clunk. So we have to track
H A Dvfs_inode.c616 * directories on unlink should have zero v9fs_remove()
816 * unlink. For cached mode create calls request for new v9fs_vfs_lookup()
892 * because we want write after unlink usecase v9fs_vfs_atomic_open()
924 * v9fs_vfs_unlink - VFS unlink hook to delete an inode
936 * v9fs_vfs_rmdir - VFS unlink hook to delete a directory
1502 .unlink = v9fs_vfs_unlink,
1515 .unlink = v9fs_vfs_unlink,
H A Dvfs_file.c100 * because we want write after unlink usecase v9fs_file_open()
515 * because we want write after unlink usecase v9fs_mmap_file_mmap()
H A Dvfs_inode_dotl.c339 * because we want write after unlink usecase v9fs_vfs_atomic_open_dotl()
981 .unlink = v9fs_vfs_unlink,
/linux-4.1.27/fs/affs/
H A Ddir.c34 .unlink = affs_unlink,
/linux-4.1.27/fs/ocfs2/
H A Dinode.h103 * We *only* set this on unlink vote from another node. If the inode
106 * whether our unlink succeeded. Otherwise we got this from a node
H A Ddcache.c213 * from unlink and rename on other nodes.
220 * lock until final dput. If the user requests and unlink or rename,
H A Djournal.h462 /* inode + dir inode (if we unlink a dir), + dir entry block + orphan
482 * directory + target unlink + 3 x dir index leaves */ ocfs2_rename_credits()
H A Dnamei.c154 * unlink. */ ocfs2_lookup()
188 * unlink on another node will message us to remove that ocfs2_lookup()
2886 .unlink = ocfs2_unlink,
/linux-4.1.27/tools/perf/tests/
H A Ddso-data.c159 unlink(file); test__dso_data()
217 unlink(dso->name); dsos__delete()
H A Dcode-reading.c363 unlink(test_file_name); fs_something()
/linux-4.1.27/drivers/usb/host/
H A Dfotg210.h29 unsigned long unlink; member in struct:fotg210_stats
33 * fotg210_hcd: async, unlink, periodic (and shadow), ...
64 FOTG210_HRTIMER_UNLINK_INTR, /* Wait for interrupt QH unlink */
435 struct fotg210_qh *unlink_next; /* next on unlink list */
444 #define QH_STATE_UNLINK_WAIT 4 /* LINKED and on unlink q */
H A Dfusbh200.h29 unsigned long unlink; member in struct:fusbh200_stats
33 * fusbh200_hcd: async, unlink, periodic (and shadow), ...
64 FUSBH200_HRTIMER_UNLINK_INTR, /* Wait for interrupt QH unlink */
425 struct fusbh200_qh *unlink_next; /* next on unlink list */
434 #define QH_STATE_UNLINK_WAIT 4 /* LINKED and on unlink q */
H A Dohci-q.c267 /* scan the periodic table to find and unlink this ED */ periodic_unlink()
289 ohci_dbg(ohci, "unlink %sed %p branch %d [%dus.], interval %d\n", periodic_unlink()
294 /* unlink an ed from one of the HC chains.
529 * its donelist soonish, even on unlink paths.) td_fill()
971 /* there are some urbs/eds to unlink; called in_irq(), with HCD locked */ finish_unlinks()
1021 /* unlink urbs as requested, but rescan the list after finish_unlinks()
1159 /* clean schedule: unlink EDs that are no longer busy */ takeback_td()
H A Dehci-q.c130 * If we come here during unlink, the QH overlay region qh_refresh()
257 COUNT(ehci->stats.unlink); ehci_urb_done()
284 * unlink qh.
442 /* An unlink may leave an incomplete qh_completions()
514 /* Otherwise the caller must unlink the QH. */ qh_completions()
517 /* restore original state; caller must unlink or relink */ qh_completions()
966 /* The async schedule and unlink lists are supposed to be empty */ disable_async()
1391 /* If nothing else is being unlinked, unlink the last empty QH */ unlink_empty_async()
1404 /* The root hub is suspended; unlink all the async QHs */ unlink_empty_async_suspended()
H A Dehci-timer.c219 /* start to unlink interrupt QHs */ ehci_handle_start_intr_unlinks()
226 * before the current unlink cycle began. The list is in ehci_handle_start_intr_unlinks()
257 * before the current unlink cycle began. The list is in ehci_handle_intr_unlinks()
H A Dehci.h54 unsigned long unlink; member in struct:ehci_stats
80 * ehci_hcd: async, unlink, periodic (and shadow), ...
111 EHCI_HRTIMER_UNLINK_INTR, /* Wait for interrupt QH unlink */
428 #define QH_STATE_UNLINK_WAIT 4 /* LINKED and on unlink q */
439 unsigned exception:1; /* got a fault, or an unlink
H A Dfhci-q.c268 /* there are some pedning request to unlink */ fhci_del_ed_list()
H A Dohci-hcd.c321 /* Unless an IRQ completed the unlink while it was being ohci_urb_dequeue()
322 * handed to us, flag it for unlink and giveback, and force ohci_urb_dequeue()
371 ohci_warn(ohci, "ED unlink timeout\n"); ohci_endpoint_disable()
721 * the unlink list. As a result, URBs could never be dequeued and
H A Dfotg210-hcd.c742 temp = scnprintf(next, size, "async unlink qh %p\n", fill_registers_buffer()
756 temp = scnprintf(next, size, "complete %ld unlink %ld\n", fill_registers_buffer()
757 fotg210->stats.complete, fotg210->stats.unlink); fill_registers_buffer()
1250 * before the current unlink cycle began. The list is in fotg210_handle_intr_unlinks()
2173 * If we come here during unlink, the QH overlay region qh_refresh()
2313 COUNT(fotg210->stats.unlink);
2500 /* An unlink may leave an incomplete qh_completions()
2575 * Our caller will start an unlink if qh->needs_rescan is qh_completions()
2576 * set. But if an unlink has already started, nothing needs qh_completions()
2583 /* restore original state; caller must unlink or relink */ qh_completions()
2608 /* Tell the caller to start an unlink */ qh_completions()
2611 /* otherwise, unlink already started */ qh_completions()
3717 * could interfere with an ongoing split transaction. To unlink qh_unlink_periodic()
3744 "unlink qh%d-%04x/%p start %d [%d/%d us]\n", qh_unlink_periodic()
5123 fotg210_dbg(fotg210, "complete %ld unlink %ld\n", fotg210_stop()
5124 fotg210->stats.complete, fotg210->stats.unlink); fotg210_stop()
5191 * dedicate a qh for the async ring head, since we couldn't unlink hcd_fotg210_init()
5492 * we drop ownership so next owner (or urb unlink) can get it
H A Dfusbh200-hcd.c715 temp = scnprintf(next, size, "async unlink qh %p\n", fill_registers_buffer()
728 temp = scnprintf (next, size, "complete %ld unlink %ld\n", fill_registers_buffer()
729 fusbh200->stats.complete, fusbh200->stats.unlink); fill_registers_buffer()
1212 * before the current unlink cycle began. The list is in fusbh200_handle_intr_unlinks()
2125 * If we come here during unlink, the QH overlay region qh_refresh()
2265 COUNT(fusbh200->stats.unlink);
2450 /* An unlink may leave an incomplete qh_completions()
2524 * Our caller will start an unlink if qh->needs_rescan is qh_completions()
2525 * set. But if an unlink has already started, nothing needs qh_completions()
2532 /* restore original state; caller must unlink or relink */ qh_completions()
2557 /* Tell the caller to start an unlink */ qh_completions()
2560 /* otherwise, unlink already started */ qh_completions()
3657 * could interfere with an ongoing split transaction. To unlink qh_unlink_periodic()
3683 "unlink qh%d-%04x/%p start %d [%d/%d us]\n", qh_unlink_periodic()
5056 fusbh200_dbg (fusbh200, "complete %ld unlink %ld\n", fusbh200_stop()
5057 fusbh200->stats.complete, fusbh200->stats.unlink); fusbh200_stop()
5115 * dedicate a qh for the async ring head, since we couldn't unlink hcd_fusbh200_init()
5400 * we drop ownership so next owner (or urb unlink) can get it
H A Dehci-dbg.c911 temp = scnprintf(next, size, "async unlink qh %p\n", fill_registers_buffer()
926 temp = scnprintf (next, size, "complete %ld unlink %ld\n", fill_registers_buffer()
927 ehci->stats.complete, ehci->stats.unlink); fill_registers_buffer()
H A Doxu210hp.h438 #define EHCI_SHRINK_JIFFIES (HZ/200) /* async qh unlink delay */
H A Duhci-debug.c385 "unlink", "iso", "int128", "int64", "int32", "int16", uhci_sprint_schedule()
H A Duhci-q.c325 * occurring after the nominal unlink frame. */ uhci_cleanup_queue()
1501 /* If the URB has already started, update the QH unlink time */ uhci_urb_dequeue()
1560 /* If the queue is now empty, we can unlink the QH and give up its
1722 /* If the current URB wants FSBR, unlink it temporarily uhci_advance_check()
H A Dehci-sched.c619 * could interfere with an ongoing split transaction. To unlink qh_unlink_periodic()
644 "unlink qh%d-%04x/%p start %d [%d/%d us]\n", qh_unlink_periodic()
679 /* if the qh is waiting for unlink, cancel it now */ start_unlink_intr()
710 * delay to avoid unlink qh too early.
974 /* cancel unlink wait for the qh */ intr_submit()
H A Doxu210hp-hcd.c1139 /* restore original state; caller must unlink or relink */ qh_completions()
1162 /* otherwise, unlink already started */ qh_completions()
1674 /* other unlink(s) may be pending (in QH_STATE_UNLINK_WAIT) */ end_unlink_async()
1787 /* unlink idle entries, reducing HC PCI usage as well scan_async()
2025 "unlink qh%d-%04x/%p start %d [%d/%d us]\n", qh_unlink_periodic()
2625 * dedicate a qh for the async ring head, since we couldn't unlink oxu_hcd_init()
2815 * we drop ownership so next owner (or urb unlink) can get it
H A Duhci-hcd.h177 unsigned int is_stopped:1; /* Queue was stopped by error/unlink */
/linux-4.1.27/drivers/usb/misc/
H A Dusbtest.c587 /* FIXME for unlink or fault handling tests, don't report perform_sglist()
1049 * usb_unlink_urb() is used to unlink something not at the ctrl_complete()
1068 /* async unlink for cleanup? */ ctrl_complete()
1098 /* FIXME this "unlink everything" exit route should ctrl_complete()
1102 /* unlink whatever's still pending */ ctrl_complete()
1119 ERROR(ctx->dev, "urb unlink --> %d\n", ctrl_complete()
1425 /* we can't unlink urbs while they're completing unlink1()
1428 * resubmission, but since we're testing unlink unlink1()
1431 ERROR(dev, "unlink retry\n"); unlink1()
1439 "unlink fail %d\n", retval); unlink1()
1539 /* Submit all the URBs and then unlink URBs num - 4 and num - 2. */ unlink_queued()
2288 dev_info(&intf->dev, "TEST 11: unlink %d reads of %d\n", usbtest_ioctl()
2294 dev_err(&intf->dev, "unlink reads failed %d, " usbtest_ioctl()
2301 dev_info(&intf->dev, "TEST 12: unlink %d writes of %d\n", usbtest_ioctl()
2307 dev_err(&intf->dev, "unlink writes failed %d, " usbtest_ioctl()
2455 /* unlink URBs from a bulk-OUT queue */ usbtest_ioctl()
2460 dev_info(&intf->dev, "TEST 24: unlink from %d queues of " usbtest_ioctl()
2468 "unlink queued writes failed %d, " usbtest_ioctl()
H A Dusblcd.c206 /* sync/async unlink faults aren't errors */ lcd_write_bulk_callback()
H A Dlegousbtower.c46 * - unlink read URBs which are no longer needed
784 /* sync/async unlink faults aren't errors */ tower_interrupt_out_callback()
H A Dldusb.c296 /* sync/async unlink faults aren't errors */ ld_usb_interrupt_out_callback()
/linux-4.1.27/drivers/acpi/acpica/
H A Dnsalloc.c160 * DESCRIPTION: Remove (unlink) and delete a namespace node
186 /* Node is not first child, unlink it */ acpi_ns_remove_node()
324 * No need to unlink the node since we are deleting the entire branch. acpi_ns_delete_children()
H A Dutcache.c128 /* Delete and unlink one cached state object */ acpi_os_purge_cache()
H A Dpsparse.c249 /* We must unlink this op from the parent tree */ acpi_ps_complete_this_op()
/linux-4.1.27/fs/sysv/
H A Dnamei.c283 .unlink = sysv_unlink,
/linux-4.1.27/fs/xfs/libxfs/
H A Dxfs_trans_resv.h38 struct xfs_trans_res tr_remove; /* unlink trans */
/linux-4.1.27/fs/minix/
H A Dnamei.c262 .unlink = minix_unlink,
/linux-4.1.27/fs/
H A Dbad_inode.c131 .unlink = bad_inode_unlink,
/linux-4.1.27/kernel/locking/
H A Dosq_lock.c166 * Step - C -- unlink osq_lock()
/linux-4.1.27/security/apparmor/
H A Daudit.c28 "unlink",
/linux-4.1.27/tools/hv/
H A Dhv_fcopy_daemon.c119 unlink(target_fname); hv_copy_cancel()
/linux-4.1.27/fs/omfs/
H A Ddir.c387 /* since omfs locates files by name, we need to unlink _before_ omfs_rename()
449 .unlink = omfs_remove,
/linux-4.1.27/net/bluetooth/cmtp/
H A Dcore.c390 goto unlink; cmtp_add_connection()
406 unlink: cmtp_add_connection()
/linux-4.1.27/drivers/hid/usbhid/
H A Dhid-core.c302 case -ECONNRESET: /* unlink */ hid_irq_in()
441 case -ECONNRESET: /* unlink */ hid_irq_out()
491 case -ECONNRESET: /* unlink */ hid_ctrl()
552 /* Prevent autosuspend following the unlink */ __usbhid_submit_report()
557 * before we can unlink it. We don't want to cancel __usbhid_submit_report()
603 /* Prevent autosuspend following the unlink */ __usbhid_submit_report()
608 * before we can unlink it. We don't want to cancel __usbhid_submit_report()
H A Dusbmouse.c72 case -ECONNRESET: /* unlink */ usb_mouse_irq()
H A Dusbkbd.c121 case -ECONNRESET: /* unlink */ usb_kbd_irq()
/linux-4.1.27/fs/reiserfs/
H A Dsuper.c162 * file it points to. It can either happen if unlink is completed but
163 * "save unlink" removal, or if file has both unlink and truncate
164 * pending and as unlink completes first (because key of "save link"
165 * protecting unlink is bigger that a key lf "save link" which
292 * the unlink almost completed, it just did not finish_unfinished()
347 /* not completed unlink (rmdir) found */ finish_unfinished()
421 /* unlink, rmdir, rename */ add_save_link()
491 /* unlink, rmdir, rename */ remove_save_link()
H A Dxattr.c91 error = dir->i_op->unlink(dir, dentry); xattr_unlink()
427 * and an unlink/rmdir has just occurred - GFP_NOFS avoids this reiserfs_get_page()
/linux-4.1.27/fs/xfs/
H A Dxfs_iops.c337 * With unlink, the VFS makes the dentry "negative": no inode, xfs_vn_unlink()
1124 .unlink = xfs_vn_unlink,
1128 * Yes, XFS uses the same method for rmdir and unlink.
1152 .unlink = xfs_vn_unlink,
1156 * Yes, XFS uses the same method for rmdir and unlink.
H A Dxfs_log_recover.c1447 * The ordering constraints are defined by the inode allocation and unlink
1468 * 4. Inode unlink buffers must be replayed after inode items are replayed.
1473 * second, inode unlink buffers third and cancelled buffers last.
1477 * tell an inode unlink buffer from the others, and so we can separate them out
1481 * - buffer_list for all buffers except cancelled/inode unlink buffers
1483 * - inode_buffer_list for inode unlink buffers
1489 * order. For cancelled buffers and inode unlink buffers this doesn't matter,
4592 * case the unlink transactions would have problems xlog_recover_finish()
/linux-4.1.27/drivers/scsi/aic7xxx/aicasm/
H A Daicasm.c704 unlink(ofilename); stop()
713 unlink(regfilename); stop()
722 unlink(listfilename); stop()
/linux-4.1.27/drivers/staging/lustre/include/linux/lnet/
H A Dlib-lnet.h96 /* Should unlink md when its refcount is 0 and either: lnet_md_unlinkable()
97 * - md has been flagged for deletion (by auto unlink or lnet_md_unlinkable()
99 * - auto unlink is on and md is exhausted. lnet_md_unlinkable()
H A Dapi.h127 * and LNetMDBind(); one operation to unlink and release the resources
/linux-4.1.27/fs/ocfs2/dlmfs/
H A Ddlmfs.c554 mlog(0, "unlink inode %lu\n", inode->i_ino); dlmfs_unlink()
560 mlog(ML_ERROR, "unlink %pd, error %d from destroy\n", dlmfs_unlink()
596 .unlink = dlmfs_unlink,
/linux-4.1.27/fs/logfs/
H A Ddir.c28 * Unlink and rmdir also share the same function: unlink. Again, this
31 * 2. unlink inode (clear journal)
793 .unlink = logfs_unlink,
/linux-4.1.27/fs/coda/
H A Ddir.c257 /* destruction routines: unlink, rmdir */ coda_unlink()
561 .unlink = coda_unlink,
/linux-4.1.27/net/sched/
H A Dcls_route.c341 /* unlink it */ route4_delete()
345 * notice we unlink'd the filter so we can't get it route4_delete()
/linux-4.1.27/drivers/staging/lustre/lustre/ldlm/
H A Dldlm_extent.c208 if (!node || !interval_is_intree(&node->li_node)) /* duplicate unlink */ ldlm_extent_unlink_lock()
/linux-4.1.27/arch/x86/vdso/
H A Dvdso2c.c115 unlink(outfilename); fail()
/linux-4.1.27/arch/xtensa/platforms/iss/
H A Dconsole.c76 * wait for the last remaining data to be sent. Then, we unlink its
/linux-4.1.27/drivers/gpu/drm/udl/
H A Dudl_main.c107 /* sync/async unlink faults aren't errors */ udl_urb_completion()
/linux-4.1.27/drivers/usb/storage/
H A Donetouch.c112 case -ECONNRESET: /* unlink */ usb_onetouch_irq()
/linux-4.1.27/fs/overlayfs/
H A Doverlayfs.h40 pr_debug("unlink(%pd2) = %i\n", dentry, err); ovl_do_unlink()
H A Ddir.c946 .unlink = ovl_unlink,
/linux-4.1.27/fs/ramfs/
H A Dinode.c143 .unlink = simple_unlink,
/linux-4.1.27/fs/ufs/
H A Dnamei.c350 .unlink = ufs_unlink,
/linux-4.1.27/fs/hostfs/
H A Dhostfs_user.c291 err = unlink(file); unlink_file()
H A Dhostfs_kern.c883 .unlink = hostfs_unlink,
/linux-4.1.27/drivers/platform/x86/
H A Dibm_rtl.c320 /* unmap, unlink and remove all traces */ ibm_rtl_exit()
/linux-4.1.27/arch/powerpc/include/asm/
H A Dsystbl.h16 SYSCALL_SPU(unlink)
/linux-4.1.27/arch/arm/vdso/
H A Dvdsomunge.c111 unlink(outfile); cleanup()
/linux-4.1.27/fs/bfs/
H A Ddir.c272 .unlink = bfs_unlink,
/linux-4.1.27/fs/exofs/
H A Dnamei.c309 .unlink = exofs_unlink,
/linux-4.1.27/net/netfilter/ipvs/
H A Dip_vs_proto.c84 /* unlink an free proto data */ register_ip_vs_proto_netns()
H A Dip_vs_conn.c228 /* Try to unlink ip_vs_conn from ip_vs_conn_tab.
243 /* Decrease refcnt and unlink conn only if we are last user */ ip_vs_conn_unlink()
/linux-4.1.27/sound/core/
H A Ddevice.c86 /* unlink */ __snd_device_free()
/linux-4.1.27/include/asm-generic/
H A Dtlb.h34 * since we unlink the page, flush TLBs, free the page. Since the disabling of
/linux-4.1.27/fs/gfs2/
H A Dinode.c1081 * @dir: The inode of the directory containing the inode to unlink
1085 * whether this is an unlink or an rmdir.
1376 /* grab the resource lock for unlink flag twiddling gfs2_rename()
1378 * so we unlink before doing the rename gfs2_rename()
1941 .unlink = gfs2_unlink,
/linux-4.1.27/drivers/net/can/usb/peak_usb/
H A Dpcan_usb_core.c554 * unlink in-flight Rx and Tx urbs and free their memory.
595 /* unlink all pending urbs and free used memory */ peak_usb_ndo_stop()
/linux-4.1.27/drivers/net/usb/
H A Drtl8150.c388 return; /* the urb is in unlink state */ read_bulk_callback()
471 case -ECONNRESET: /* unlink */ intr_callback()
H A Dpegasus.c469 netif_dbg(pegasus, ifdown, net, "rx unlink, %d\n", status); read_bulk_callback()
609 netif_dbg(pegasus, ifdown, net, "tx unlink, %d\n", status); write_bulk_callback()
635 case -ECONNRESET: /* unlink */ intr_callback()
H A Dusbnet.c593 case -ECONNRESET: /* async unlink */ rx_complete()
692 // unlink pending rx/tx; completion handlers do all other cleanup unlink_urbs()
729 netdev_dbg(dev->net, "unlink urb err, %d\n", retval);
1042 * tx_timeout will unlink URBs for sending packets and __handle_link_change()
1204 case -ECONNRESET: // async unlink tx_complete()
H A Dcatc.c314 case -ECONNRESET: /* unlink */ catc_irq_done()
/linux-4.1.27/drivers/staging/lustre/lustre/lmv/
H A Dlmv_obd.c2232 /* Send unlink requests to the MDT where the child is located */ lmv_unlink()
2262 CDEBUG(D_INODE, "unlink with fid="DFID"/"DFID" -> mds #%d\n", lmv_unlink()
2277 CDEBUG(D_INODE, "%s: try unlink to another MDT for "DFID"\n", lmv_unlink()
2284 * unlink RPC to MDT0, MDT0 return -EREMOTE, it will lmv_unlink()
2285 * resend unlink RPC to MDT1 (retry 1st time). lmv_unlink()
2287 * 2. During the unlink RPC in flight, lmv_unlink()
2291 * 3. MDT1 get unlink RPC(from A), then do remote lock on lmv_unlink()
2295 * 4. Then A will resend unlink RPC to MDT0. (retry 2nd times). lmv_unlink()
/linux-4.1.27/drivers/usb/
H A Dusb-skeleton.c170 /* sync/async unlink faults aren't errors */ skel_read_bulk_callback()
341 /* sync/async unlink faults aren't errors */ skel_write_bulk_callback()
/linux-4.1.27/net/tipc/
H A Dmsg.h830 /* tipc_skb_dequeue(): unlink first buffer with dest 'dport' from list
832 * @dport: selection criteria for buffer to unlink
/linux-4.1.27/drivers/staging/lustre/lnet/selftest/
H A Drpc.c434 /* The forthcoming unlink event will complete this operation srpc_post_active_rdma()
499 /* srpc_shutdown_service might have tried to unlink me
670 CDEBUG(D_NET, "waiting for %d posted buffers to unlink", srpc_finish_service()
1256 CWARN("Remote error %d at %s, unlink bulk buffer in case peer didn't initiate bulk transfer\n", srpc_send_rpc()
/linux-4.1.27/block/
H A Dblk-ioc.c86 * dancing to unlink all icq's and then frees ioc.
/linux-4.1.27/fs/pstore/
H A Dinode.c225 .unlink = pstore_unlink,
/linux-4.1.27/fs/jfs/
H A Dnamei.c343 * the directory is released (cf.unlink() of regular file).
465 * unlink() returns, but the removal of the file contents will be
468 * JFS does NOT support unlink() on directories.
1512 .unlink = jfs_unlink,
/linux-4.1.27/include/linux/usb/
H A Dusbnet.h105 #define FLAG_AVOID_UNLINK_URBS 0x0100 /* don't unlink urbs at usbnet_stop() */
/linux-4.1.27/fs/afs/
H A Dsecurity.c333 if (!(access & (AFS_ACE_DELETE | /* rmdir, unlink, rename from */ afs_permission()
/linux-4.1.27/fs/ext2/
H A Dnamei.c403 .unlink = ext2_unlink,
/linux-4.1.27/fs/btrfs/
H A Dtree-log.c42 * 1) on rename or unlink, if the inode being unlinked isn't in the fsync
44 * where the unlink was done.
45 * ---> record transid of last unlink/rename per directory
53 * The fsync above will unlink the original some_dir without recording
65 * a crash might unlink the old name without recreating the new one
769 * inode back references, we may have to unlink inodes from directories.
771 * This is a helper function to do the unlink of a specific directory
1230 * metadata. if we find one we have to unlink that name add_inode_ref()
2940 * unlink file X but leave X.link
5141 * On unlink we must make sure our immediate parent directory btrfs_log_inode_parent()
5386 * if the inode we're about to unlink was logged, btrfs_record_unlink_dir()
5402 /* we can safely do the unlink without any special recording */ btrfs_record_unlink_dir()
/linux-4.1.27/drivers/usb/core/
H A Dmessage.c273 * device driver code (like this routine) unlink queued urbs first, sg_complete()
300 * unlink pending urbs so they won't rx/tx bad data. sg_complete()
301 * careful: unlink can sometimes be synchronous... sg_complete()
314 "%s, unlink --> %d\n", sg_complete()
600 dev_warn(&io->dev->dev, "%s, unlink --> %d\n", usb_sg_cancel()
H A Dhcd.c1217 * @status: error code to store in @urb if the unlink succeeds
1222 * sure than an unlink is valid.
1246 * unlink this URB from the hardware. So there's no more work to do. usb_hcd_check_unlink_urb()
1618 * caller guarantees urb won't be recycled till both unlink()
1629 * the unlink is carried out. If they are already gone usb_hcd_unlink_urb()
2131 /* Protect against drivers that try to unlink URBs after the device
/linux-4.1.27/tools/testing/ktest/
H A Dktest.pl2161 unlink "$tmpdir/$modtar";
2382 unlink $buildlog;
2426 unlink "$output_config";
4106 unlink $opt{"LOG_FILE"};
4296 unlink $dmesg;
4297 unlink $buildlog;
4298 unlink $testlog;
/linux-4.1.27/drivers/scsi/
H A Dscsi_transport_sas.c1017 * associated phys, unlink them from the port as well.
1645 * sas_rphy_unlink - unlink SAS remote PHY
1646 * @rphy: SAS remote phy to unlink from its parent port
/linux-4.1.27/fs/kernfs/
H A Ddir.c266 * kernfs_unlink_sibling - unlink kernfs_node from sibling rbtree
269 * Try to unlink @kn from its sibling rbtree which starts from
1049 /* deactivate and unlink the subtree node-by-node */ __kernfs_remove()
/linux-4.1.27/fs/cifs/
H A Dsmb2ops.c1443 .unlink = smb2_unlink,
1521 .unlink = smb2_unlink,
1602 .unlink = smb2_unlink,
H A Dinode.c1227 * unlink on negative dentries currently.
1273 if (!server->ops->unlink) { cifs_unlink()
1278 rc = server->ops->unlink(xid, tcon, full_path, cifs_sb); cifs_unlink()
1709 * No-replace is the natural behavior for CIFS, so skip unlink hacks. cifs_rename2()
/linux-4.1.27/drivers/misc/mei/
H A Dnfc.c586 * since mei_nfc_free will unlink the clients mei_nfc_host_exit()
/linux-4.1.27/drivers/usb/gadget/function/
H A Df_phonet.c365 case -ECONNRESET: /* dequeued (unlink or netif down) */ pn_rx_complete()
H A Df_printer.c287 case -ECONNRESET: /* unlink */ rx_complete()
321 case -ECONNRESET: /* unlink */ tx_complete()
H A Du_ether.c318 case -ECONNRESET: /* unlink */ rx_complete()
459 case -ECONNRESET: /* unlink */ tx_complete()
/linux-4.1.27/fs/hfsplus/
H A Ddir.c553 .unlink = hfsplus_unlink,
/linux-4.1.27/fs/hpfs/
H A Dnamei.c619 .unlink = hpfs_unlink,
/linux-4.1.27/fs/nilfs2/
H A Dnamei.c557 .unlink = nilfs_unlink,
/linux-4.1.27/arch/s390/kernel/
H A Dcompat_wrapper.c66 COMPAT_SYSCALL_WRAP1(unlink, const char __user *, pathname);
/linux-4.1.27/arch/parisc/kernel/
H A Dsyscall_table.S68 ENTRY_SAME(unlink) /* 10 */
/linux-4.1.27/kernel/gcov/
H A Dgcc_3_4.c127 * gcov_info_unlink - unlink/remove profiling data set from the list
H A Dgcc_4_7.c136 * gcov_info_unlink - unlink/remove profiling data set from the list
/linux-4.1.27/tools/perf/scripts/python/
H A Dexport-to-postgresql.py265 os.unlink(name)
/linux-4.1.27/tools/testing/selftests/mqueue/
H A Dmq_open_tests.c247 * unlink will fail. So, if the name doesn't start with a /, add one main()
/linux-4.1.27/tools/usb/usbip/src/
H A Dusbipd.c480 unlink(pid_file); remove_pid_file()
/linux-4.1.27/drivers/media/rc/
H A Dati_remote.c668 case -ECONNRESET: /* unlink */ ati_remote_irq_in()
672 "%s: urb error status, unlink?\n", ati_remote_irq_in()
/linux-4.1.27/drivers/staging/lustre/lustre/include/lustre/
H A Dlustre_user.h681 /* Flags for unlink */
686 #define CLF_RENAME_LAST 0x0001 /* rename unlink last hardlink of target */
/linux-4.1.27/drivers/staging/lustre/lustre/llite/
H A Dnamei.c919 * to this file. Use this EA to unlink the objects on the OST. ll_objects_destroy()
1153 .unlink = ll_unlink,
/linux-4.1.27/drivers/md/
H A Draid5.h110 * lockdev check-hash unlink-stripe cnt++ clean-stripe hash-stripe unlockdev
112 * lockdev check-hash if(!cnt++)unlink-stripe unlockdev
/linux-4.1.27/fs/autofs4/
H A Droot.c62 .unlink = autofs4_dir_unlink,
602 * this, because the unlink is probably the result of an expire.
/linux-4.1.27/fs/cachefiles/
H A Dnamei.c281 _debug("unlink stale object"); cachefiles_bury_object()
781 !d_backing_inode(subdir)->i_op->unlink) cachefiles_get_directory()
/linux-4.1.27/drivers/staging/lustre/lustre/include/
H A Dobd_class.h1680 EXP_CHECK_MD_OP(exp, unlink); md_unlink()
1681 EXP_MD_COUNTER_INCREMENT(exp, unlink); md_unlink()
1682 rc = MDP(exp->exp_obd, unlink)(exp, op_data, request); md_unlink()
H A Dlustre_dlm_flags.h282 * It may happen that a client initiates two operations, e.g. unlink and
H A Dlustre_log.h45 * - mds unlink log: the MDS adds an entry upon delete
/linux-4.1.27/fs/fuse/
H A Ddir.c130 * timeout is unknown (unlink, rmdir, rename and in some cases
662 * If i_nlink == 0 then unlink doesn't make sense, yet this can fuse_unlink()
1889 .unlink = fuse_unlink,
/linux-4.1.27/drivers/staging/comedi/
H A Ddrivers.c923 /* unlink the driver */ comedi_driver_unregister()
/linux-4.1.27/drivers/staging/lustre/lustre/obdclass/
H A Dllog_cat.c223 /* unlink open-not-created llogs */ llog_cat_close()
/linux-4.1.27/drivers/staging/media/lirc/
H A Dlirc_sasem.c639 case -ENOENT: /* usbcore unlink successful! */ usb_rx_callback()
/linux-4.1.27/drivers/net/wireless/ath/carl9170/
H A Dcarl9170.h118 /* temporary list for RCU unlink procedure */
/linux-4.1.27/drivers/gpu/drm/
H A Ddrm_vm.c454 * Search the \p vma private data entry in drm_device::vmalist, unlink it, and
/linux-4.1.27/drivers/usb/image/
H A Dmicrotek.c92 * 20000523 Added unlink URB on scsi_abort, now OHCI supports it (john)
/linux-4.1.27/drivers/watchdog/
H A Dpcwd_usb.c181 case -ECONNRESET: /* unlink */ usb_pcwd_intr_done()
/linux-4.1.27/include/uapi/linux/netfilter/
H A Dnf_tables.h236 * @NFT_SET_ANONYMOUS: name allocation, automatic cleanup on unlink

Completed in 3493 milliseconds

12