Lines Matching refs:buffer
166 __be64 *buffer; in register_notification_address() local
172 buffer = kmalloc(2 * 8, GFP_KERNEL); in register_notification_address()
173 if (!buffer) in register_notification_address()
177 buffer[0] = cpu_to_be64(OWNER_NO_OWNER); in register_notification_address()
178 buffer[1] = cpu_to_be64( in register_notification_address()
188 buffer, 2 * 8, in register_notification_address()
193 if (buffer[0] == cpu_to_be64(OWNER_NO_OWNER)) in register_notification_address()
196 if (buffer[0] == buffer[1]) in register_notification_address()
209 kfree(buffer); in register_notification_address()
220 __be64 *buffer; in unregister_notification_address() local
222 buffer = kmalloc(2 * 8, GFP_KERNEL); in unregister_notification_address()
223 if (buffer == NULL) in unregister_notification_address()
226 buffer[0] = cpu_to_be64( in unregister_notification_address()
229 buffer[1] = cpu_to_be64(OWNER_NO_OWNER); in unregister_notification_address()
233 buffer, 2 * 8, FW_QUIET | in unregister_notification_address()
236 kfree(buffer); in unregister_notification_address()