void kill_fasync(struct fasync_struct **fp, int sig, int band) { /* First a quick test without locking: usually * the list is empty. */ if (*fp) { read_lock(&fasync_lock); /* reread *fp after obtaining the lock */ __kill_fasync(*fp, sig, band); read_unlock(&fasync_lock); } } EXPORT_SYMBOL(kill_fasync);