Deleted Added
sdiff udiff text old ( 254025 ) new ( 254356 )
full compact
1/*-
2 * Copyright (c) 2010 Isilon Systems, Inc.
3 * Copyright (c) 2010 iX Systems, Inc.
4 * Copyright (c) 2010 Panasas, Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 551 unchanged lines hidden (view full) ---

560
561struct fileops linuxfileops = {
562 .fo_read = linux_file_read,
563 .fo_poll = linux_file_poll,
564 .fo_close = linux_file_close,
565 .fo_ioctl = linux_file_ioctl,
566 .fo_chmod = invfo_chmod,
567 .fo_chown = invfo_chown,
568};
569
570/*
571 * Hash of vmmap addresses. This is infrequently accessed and does not
572 * need to be particularly large. This is done because we must store the
573 * caller's idea of the map size to properly unmap.
574 */
575struct vmmap {

--- 125 unchanged lines hidden ---