History log of /freebsd-current/sbin/mount_udf/mount_udf.c
Revision Date Author Comments
# b3e76948 16-Aug-2023 Warner Losh <imp@FreeBSD.org>

Remove $FreeBSD$: two-line .h pattern

Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/


# 8a16b7a1 20-Nov-2017 Pedro F. Giffuni <pfg@FreeBSD.org>

General further adoption of SPDX licensing ID tags.

Mainly focus on files that use BSD 3-Clause license.

The Software Package Data Exchange (SPDX) group provides a specification
to make it easier for automated tools to detect and summarize well known
opensource licenses. We are gradually adopting the specification, noting
that the tags are considered only advisory and do not, in any way,
superceed or replace the license texts.

Special thanks to Wind River for providing access to "The Duke of
Highlander" tool: an older (2014) run over FreeBSD tree was useful as a
starting point.


# fbbd9655 28-Feb-2017 Warner Losh <imp@FreeBSD.org>

Renumber copyright clause 4

Renumber cluase 4 to 3, per what everybody else did when BSD granted
them permission to remove clause 3. My insistance on keeping the same
numbering for legal reasons is too pedantic, so give up on that point.

Submitted by: Jan Schaumann <jschauma@stevens.edu>
Pull Request: https://github.com/freebsd/freebsd/pull/96


# ca001f0b 04-Feb-2014 Christian Brueffer <brueffer@FreeBSD.org>

Unbreak mount_udf by passing the correct iovec length into
nmount(). This has been broken since r247856.

PR: bin/186193
Submitted by: Arnot Belohlavek
MFC after: 1 week


# 06704176 05-Mar-2013 Jung-uk Kim <jkim@FreeBSD.org>

Use build_iovec() to make it less cryptic. This also fixes warnings.


# 7039dfb3 05-Mar-2013 Jung-uk Kim <jkim@FreeBSD.org>

GC unused variables. Prefer NULL over 0 for pointers.


# d3250014 16-Jan-2012 Jaakko Heinonen <jh@FreeBSD.org>

Change checkpath() to not exit on error. This is a prerequisite for
fixing the mount(8) "failok" option.

PR: 163668
Reviewed by: Garrett Cooper, delphij (previous version)


# 1efe3c6b 04-Nov-2011 Ed Schouten <ed@FreeBSD.org>

Add missing static keywords for global variables to tools in sbin/.

These tools declare global variables without using the static keyword,
even though their use is limited to a single C-file, or without placing
an extern declaration of them in the proper header file.


# a7d5f7eb 19-Oct-2010 Jamie Gritton <jamie@FreeBSD.org>

A new jail(8) with a configuration file, to replace the work currently done
by /etc/rc.d/jail.


# fe0506d7 09-Mar-2010 Marcel Moolenaar <marcel@FreeBSD.org>

Create the altix project branch. The altix project will add support
for the SGI Altix 350 to FreeBSD/ia64. The hardware used for porting
is a two-module system, consisting of a base compute module and a
CPU expansion module. SGI's NUMAFlex architecture can be an excellent
platform to test CPU affinity and NUMA-aware features in FreeBSD.


# d7f03759 19-Oct-2008 Ulf Lilleengen <lulf@FreeBSD.org>

- Import the HEAD csup code which is the basis for the cvsmode work.


# 46b7a14b 10-Jun-2005 Xin LI <delphij@FreeBSD.org>

Use MOPT_END in favor of MOPT_NULL, which better describes the purporse
of the macro.


# 73ac4505 01-Jun-2005 Xin LI <delphij@FreeBSD.org>

Add a handy macro to represent null mount option, MOPT_NULL, and make
use of the macro in sbin/mount*'s, by replacing:

mopts[] = {
MOPT_STDOPTS,
{ NULL }
}

With:
mopts[] = {
MOPT_STDOPTS,
MOPT_NULL
}

This change will help to reduce the situation that we don't explicitly
initialize "struct mntopt"'s. It should not contribute to any
functional/logical changes as far as I can tell.


# 4c723140 09-Apr-2004 Mark Murray <markm@FreeBSD.org>

Remove advertising clause from University of California Regent's license,
per letter dated July 22, 1999.

Approved by: core, imp


# 0f4e4130 08-Dec-2003 Max Khon <fjoe@FreeBSD.org>

Make msdosfs long filenames matching case insensitive again.

PR: 59765
Submitted by: Ryuichiro Imura <imura@ryu16.org>


# cc639d55 24-Nov-2003 Alexander Kabaev <kan@FreeBSD.org>

Correct iov_len values passed to nmount(2) syscall. More accurate
parameter checking introduced in vfs_mount.c r1.113 rejects them
otherwise.

Submitted by: R. Imura <imura at ryu16 dot org>
Approved by: re (scottl,rwatson)


# cc2c948f 04-Nov-2003 Scott Long <scottl@FreeBSD.org>

Add support for multibyte character conversions.

Submitted by: imura@ryu16.org


# ce66ddb7 21-Aug-2002 Tom Rhodes <trhodes@FreeBSD.org>

s/filesystem/file system/g as discussed on -developers


# eddb9a0d 13-Aug-2002 Maxime Henrion <mux@FreeBSD.org>

Don't depend on namespace pollution in sys/mount.h and
include sys/uio.h.


# 526ba6d3 03-Aug-2002 Maxime Henrion <mux@FreeBSD.org>

Now that the kernel is able to load modules itself,
remove all the code which was trying to do so.
This code was nasty in several ways, it was hiding
the kernel bug where the kernel was unable to properly
load a module, and it was quitting if it wasn't able
to load the module. The consequence is that an ABI
breakage of the vfsconf API would have broken *every*
mount utility.


# c3210a83 15-Jun-2002 Maxime Henrion <mux@FreeBSD.org>

Convert UDF to nmount.

Reviewed by: scottl


# 7d4eb613 15-Apr-2002 Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org>

Sync with UDF p4 tree: Properly initialize part of the mntopts.
Move to WARNS=1.


# 51a7b740 14-Apr-2002 Scott Long <scottl@FreeBSD.org>

Actually add the UDF files!