The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/fs/smbfs/ChangeLog

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 ChangeLog for smbfs.
    2 
    3 2001-12-31 René Scharfe <l.s.r@web.de>
    4 
    5         * inode.c: added smb_show_options to show mount options in /proc/mounts
    6         * inode.c, getopt.c, getopt.h: merged flag and has_arg in struct option
    7         * inode.c: use S_IRWXUGO where appropriate
    8 
    9 2001-12-22 Urban Widmark <urban@teststation.com>
   10 
   11         * file.c, proc.c: Fix problems triggered by the "fsx test"
   12 
   13 2001-09-17 Urban Widmark <urban@teststation.com>
   14 
   15         * proc.c: Use 4096 (was 512) as the blocksize for better write
   16           performance (patch originally by Jan Kratochvil)
   17         * proc.c: Skip disconnect smb, allows umount on unreachable servers.
   18         * proc.c: Go back to the interruptible sleep as reconnects seem to
   19           handle it now.
   20         * *.c: use autogenerated and private proto.h
   21 
   22 2000-11-22 Igor Zhbanov <bsg@uniyar.ac.ru>
   23 
   24         * proc.c: fixed date_unix2dos for dates earlier than 01/01/1980
   25           and date_dos2unix for date==0 (from 2.2)
   26 
   27 2001-07-13 Rob Radez <rob@osinvestor.com>
   28 
   29         * proc.c: make smb_errno return negative error values
   30 
   31 2001-07-09 Jochen Dolze <dolze@epcnet.de>
   32 
   33         * inode.c: smb_statfs always returned success.
   34         * proc.c, ioctl.c: Allow smbmount to signal failure to reconnect with
   35           a NULL argument to SMB_IOC_NEWCONN (speeds up error detection).
   36         * proc.c: Add some of the missing error codes to smb_errno
   37 
   38 2001-06-12 Urban Widmark <urban@teststation.com>
   39 
   40         * proc.c: replace the win95-flush fix with smb_seek, when needed.
   41         * proc.c: readdir 'lastname' bug (NetApp dir listing fix)
   42 
   43 2001-05-08 Urban Widmark <urban@teststation.com>
   44 
   45         * inode.c: Fix for changes on the server side not being detected
   46           properly. Must always drop cached pages when updating an inode with
   47           new size.
   48 
   49 2001-05-05 Urban Widmark <urban@teststation.com>
   50 
   51         * file.c, proc.c: Drop SMB_F_LOCALWRITE to detect changes made on
   52           both server and client, using flush with to force win9x to remember
   53           the right filesize.
   54 
   55 2001-04-25 René Scharfe <l.s.r@web.de>
   56 
   57         * inode.c: Don't clear s_flags and allow ro mounts
   58 
   59 2001-04-21 Urban Widmark <urban@teststation.com>
   60 
   61         * dir.c, proc.c: replace tests on conn_pid with tests on state to
   62           fix smbmount reconnect on smb_retry timeout and up the timeout to 30s.
   63         * proc.c: smb_newconn must have the server locked while updating it.
   64         * inode.c, proc.c: need flush after truncate on some servers (win9x)
   65         * file.c: add call to send SMBflush on fsync
   66           (as suggested by Jochen Dolze <dolze@epcnet.de>)
   67 
   68 2001-03-06 Urban Widmark <urban@teststation.com>
   69 
   70         * cache.c: d_add on hashed dentries corrupts d_hash list and
   71           causes loops in d_lookup. Inherited bug. :)
   72         * inode.c: tail -f fix for non-readonly opened files
   73           (related to the smb_proc_open change).
   74         * inode.c: tail -f fix for fast size changes with the same mtime.
   75 
   76 2001-03-02 Michael Kockelkorn <m.kockelkorn@biodata.com>
   77 
   78         * proc.c: fix smb_proc_open to allow open being called more than once
   79           with different modes (O_RDONLY -> O_WRONLY) without closing.
   80 
   81 2001-02-10 Urban Widmark <urban@teststation.com>
   82 
   83         * dir.c, cache.c: replace non-bigmem safe cache with cache code
   84           from ncpfs and fix some other bigmem bugs in smbfs.
   85         * inode.c: root dentry not properly initialized
   86         * proc.c, sock.c: adjust max parameters & max data to follow max_xmit
   87           lots of servers were having find_next trouble with this.
   88         * proc.c: use documented write method of truncating (NetApp fix)
   89 
   90 2000-08-14 Urban Widmark <urban@svenskatest.se>
   91 
   92         * dir.c: support case sensitive shares
   93         * inode.c: ascii mount options
   94         * proc.c: check length of paths to avoid buffer overflow
   95         * proc.c: don't do interruptable_sleep in smb_retry to avoid signal
   96           problem/race.
   97         * proc.c: O_RDONLY & smb_revalidate_inode fix (tail -f)
   98         * proc.c: add nls support
   99         * sock.c: attempt to fix smb_data_callback (avoid infinite loop)
  100 
  101 2000-07-25 Urban Widmark <urban@svenskatest.se>
  102 
  103         * proc.c: fix 3 places where bad server responses could cause an Oops.
  104 
  105 2000-07-15 Urban Widmark <urban@svenskatest.se>
  106 
  107         * *.c: more debug (%.*s) & indent fixes
  108 
  109 2000-06-24: Matt Maynard <matthewm@corel.com>
  110 
  111         * dir.c: dentry->d_inode->i_mtime isn't updated for all servers
  112           (NT?) and all operations (mv oldfile.txt newfile.txt) Removed for
  113           less efficient but better working directory cache.
  114         * proc.c: included aDIR smbclient fix for renaming directories on
  115           OS/2 servers (win95/98?) (orig by John Janosik)
  116 
  117 2000-07-01 Urban Widmark <urban@svenskatest.se>
  118 
  119         * *.c: replace ugly #ifdef's with less ugly debug macros.
  120 
  121 2000-01-03 Christian Groessler <cpg@aladdin.de>
  122 
  123         * proc.c: added posix semantics for unlink
  124 
  125 1999-11-16 Andrew Tridgell
  126 
  127         * proc.c: use level 260 for most conns, or level 1 for <NT1
  128         * proc.c: don't sleep every time with win95 on a FINDNEXT
  129         * proc.c: fixed loop_count bug
  130         * proc.c: got rid of resume_key
  131 
  132 [there are a few missing here :) ]
  133 
  134 1997-09-28 Riccardo Facchetti
  135 
  136         * proc.c: Fixed smb_d_path [now smb_build_path()] to be non-recursive
  137 
  138 1996-06-28 Yuri Per
  139 
  140         * proc.c: Fixed long file name support (smb_proc_readdir_long)
  141 
  142 You are in the wrong end for adding new entries. New entries at the top.

Cache object: 31a8931ae3807e4e0fc07438d33563b7


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.