Lines Matching refs:entry
100 /* An entry waiting to be sent */
909 * writequeue_entry_complete - try to delete and free write queue entry
910 * @e: write queue entry to try to delete
1324 struct writequeue_entry *entry;
1326 entry = kmalloc(sizeof(struct writequeue_entry), allocation);
1327 if (!entry)
1330 entry->page = alloc_page(allocation);
1331 if (!entry->page) {
1332 kfree(entry);
1336 entry->offset = 0;
1337 entry->len = 0;
1338 entry->end = 0;
1339 entry->users = 0;
1340 entry->con = con;
1342 return entry;