<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://xfs.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=J3gum</id>
	<title>xfs.org - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://xfs.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=J3gum"/>
	<link rel="alternate" type="text/html" href="https://xfs.org/index.php/Special:Contributions/J3gum"/>
	<updated>2026-04-21T08:37:27Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.3</generator>
	<entry>
		<id>https://xfs.org/index.php?title=FITRIM/discard&amp;diff=2816</id>
		<title>FITRIM/discard</title>
		<link rel="alternate" type="text/html" href="https://xfs.org/index.php?title=FITRIM/discard&amp;diff=2816"/>
		<updated>2012-08-31T16:25:33Z</updated>

		<summary type="html">&lt;p&gt;J3gum: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Purpose ==&lt;br /&gt;
&lt;br /&gt;
FITRIM is a mounted filesystem feature to discard (or &amp;quot;[https://en.wikipedia.org/wiki/TRIM trim]&amp;quot;) blocks which are not in use by the filesystem. This is useful for solid-state drives (SSDs) and thinly-provisioned storage.&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
&lt;br /&gt;
#The block device underneath the filesystem must support the FITRIM operation.&lt;br /&gt;
#The kernel must include TRIM support and XFS must include FITRIM support (this has been true for Linux since v2.6.38, Jan 18 2011)&lt;br /&gt;
#Realtime discard mode requires a more recent v3.0 kernel&lt;br /&gt;
&lt;br /&gt;
This can be verified by viewing /sys/block/&amp;lt;dev&amp;gt;/queue/discard_max_bytes -- If the value is zero then your device doesn&#039;t support discard&lt;br /&gt;
operations.&lt;br /&gt;
&lt;br /&gt;
== Modes of Operation ==&lt;br /&gt;
&lt;br /&gt;
* Realtime discard -- As files are removed, the filesystem issues discard requests automatically&lt;br /&gt;
* Batch Mode -- A user procedure that trims all or portions of the filesystem&lt;br /&gt;
&lt;br /&gt;
=== Realtime discard ===&lt;br /&gt;
&lt;br /&gt;
This mode issues discard requests automatically as files are removed from the filesystem.  No other command or process is required.&lt;br /&gt;
&lt;br /&gt;
There can be a severe performance penalty for enabling realtime discard. (4)&lt;br /&gt;
&lt;br /&gt;
Realtime discard is selected by adding the filesystem option &amp;lt;code&amp;gt;discard&amp;lt;/code&amp;gt; while mounting.&lt;br /&gt;
&lt;br /&gt;
This can be done by the following examples:&lt;br /&gt;
&lt;br /&gt;
# placing &amp;lt;code&amp;gt;discard&amp;lt;/code&amp;gt; in your /etc/fstab for the filesystem: &amp;lt;code&amp;gt;/dev/sda1 /mountpoint xfs defaults,discard 0 1&amp;lt;/code&amp;gt;&lt;br /&gt;
# mount options: &amp;lt;code&amp;gt;mount -o discard /dev/sda1 /mountpoint&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Batch Mode ===&lt;br /&gt;
&lt;br /&gt;
This mode requires user intervention.  This intervention is in the form of the command &amp;lt;code&amp;gt;fstrim&amp;lt;/code&amp;gt;.  It has been included in [https://en.wikipedia.org/wiki/Util-linux util-linux-ng] since about Nov 26, 2010.&lt;br /&gt;
&lt;br /&gt;
Usage example:&lt;br /&gt;
&amp;lt;code&amp;gt;fstrim /mountpoint&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
# FITRIM description - Lukas Czerner &amp;lt;lczerner at redhat.com&amp;gt; 2010-12-10 15:53:27 Message ID 	&amp;lt;1291996407-26251-1-git-send-email-lczerner@redhat.com&amp;gt; http://patchwork.xfs.org/patch/1490/&lt;br /&gt;
# Block requirements - Dave Chinner &amp;lt;david at fromorbit.com&amp;gt; 2011-10-10 21:05:52 http://oss.sgi.com/pipermail/xfs/2011-October/014867.html&lt;br /&gt;
# util-linux-ng addition - Karel Zak &amp;lt;kzak@xxxxxxxxxx&amp;gt; 2010-11-26 15:17:39 http://www.spinics.net/lists/util-linux-ng/msg03646.html &lt;br /&gt;
# Online TRIM/discard performance impact - Christoph Hellwig &amp;lt;hch at infradead.org&amp;gt; 2011-11-07 04:21:21 http://oss.sgi.com/pipermail/xfs/2011-November/015329.html&lt;/div&gt;</summary>
		<author><name>J3gum</name></author>
	</entry>
	<entry>
		<id>https://xfs.org/index.php?title=FITRIM/discard&amp;diff=2379</id>
		<title>FITRIM/discard</title>
		<link rel="alternate" type="text/html" href="https://xfs.org/index.php?title=FITRIM/discard&amp;diff=2379"/>
		<updated>2011-11-07T15:54:47Z</updated>

		<summary type="html">&lt;p&gt;J3gum: Added performance issues for realtime discard.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Purpose ==&lt;br /&gt;
&lt;br /&gt;
FITRIM is a mounted filesystem feature to discard (or &amp;quot;[http://en.wikipedia.org/wiki/TRIM trim]&amp;quot;) blocks which are not in use by the filesystem. This is useful for solid-state drives (SSDs) and thinly-provisioned storage.&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
&lt;br /&gt;
#The block device underneath the filesystem must support the FITRIM operation.&lt;br /&gt;
#The kernel must include TRIM support and XFS must include FITRIM support (this has been true for Linux since v2.6.38, Jan 18 2011)&lt;br /&gt;
#Realtime discard mode requires a more recent v3.0 kernel&lt;br /&gt;
&lt;br /&gt;
This can be verified by viewing /sys/block/&amp;lt;dev&amp;gt;/queue/discard_max_bytes -- If the value is zero then your device doesn&#039;t support discard&lt;br /&gt;
operations.&lt;br /&gt;
&lt;br /&gt;
== Modes of Operation ==&lt;br /&gt;
&lt;br /&gt;
* Realtime discard -- As files are removed, the filesystem issues discard requests automatically&lt;br /&gt;
* Batch Mode -- A user procedure that trims all or portions of the filesystem&lt;br /&gt;
&lt;br /&gt;
=== Realtime discard ===&lt;br /&gt;
&lt;br /&gt;
This mode issues discard requests automatically as files are removed from the filesystem.  No other command or process is required.&lt;br /&gt;
&lt;br /&gt;
There can be a severe performance penalty for enabling realtime discard. (4)&lt;br /&gt;
&lt;br /&gt;
Realtime discard is selected by adding the filesystem option &amp;lt;code&amp;gt;discard&amp;lt;/code&amp;gt; while mounting.&lt;br /&gt;
&lt;br /&gt;
This can be done by the following examples:&lt;br /&gt;
&lt;br /&gt;
# placing &amp;lt;code&amp;gt;discard&amp;lt;/code&amp;gt; in your /etc/fstab for the filesystem: &amp;lt;code&amp;gt;/dev/sda1 /mountpoint xfs defaults,discard 0 1&amp;lt;/code&amp;gt;&lt;br /&gt;
# mount options: &amp;lt;code&amp;gt;mount -o discard /dev/sda1 /mountpoint&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Batch Mode ===&lt;br /&gt;
&lt;br /&gt;
This mode requires user intervention.  This intervention is in the form of the command &amp;lt;code&amp;gt;fstrim&amp;lt;/code&amp;gt;.  It has been included in [http://en.wikipedia.org/wiki/Util-linux util-linux-ng] since about Nov 26, 2010.&lt;br /&gt;
&lt;br /&gt;
Usage example:&lt;br /&gt;
&amp;lt;code&amp;gt;fstrim /mountpoint&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
# FITRIM description - Lukas Czerner &amp;lt;lczerner at redhat.com&amp;gt; http://patchwork.xfs.org/patch/1490/&lt;br /&gt;
# Block requirements - Dave Chinner &amp;lt;david at fromorbit.com&amp;gt; http://oss.sgi.com/pipermail/xfs/2011-October/053379.html&lt;br /&gt;
# util-linux-ng addition - Karel Zak &amp;lt;kzak@xxxxxxxxxx&amp;gt; http://www.spinics.net/lists/util-linux-ng/msg03646.&lt;br /&gt;
# Online TRIM/discard performance impact - http://oss.sgi.com/pipermail/xfs/2011-November/053841.html&lt;/div&gt;</summary>
		<author><name>J3gum</name></author>
	</entry>
	<entry>
		<id>https://xfs.org/index.php?title=User_talk:J3gum&amp;diff=2367</id>
		<title>User talk:J3gum</title>
		<link rel="alternate" type="text/html" href="https://xfs.org/index.php?title=User_talk:J3gum&amp;diff=2367"/>
		<updated>2011-10-13T13:47:03Z</updated>

		<summary type="html">&lt;p&gt;J3gum: Responded to the &amp;quot;De-pretty/complicate the page&amp;quot; queries.  Change policy?  Added in missing signature.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== De-pretty/complicate the page? ==&lt;br /&gt;
&lt;br /&gt;
Hi! I&#039;ve seen your [http://xfs.org/index.php?title=Main_Page&amp;amp;diff=2356&amp;amp;oldid=2256 edit] to &amp;quot;De-pretty/complicate the page&amp;quot; and I don&#039;t understand why you did that? Don&#039;t we want our wiki to be pretty too? I don&#039;t think the page was overly complicated, just a few boxes so that one does not have to scroll down, as the page gets longer and longer. -- [[User:Ckujau|Ckujau]] 06:02, 12 October 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
:First, I apologize if I&#039;ve overstepped.  That was not my intention.  I did try to add [http://xfs.org/index.php?title=Main_Page&amp;amp;diff=2357&amp;amp;oldid=2356 a link and header] before the edit to which you referred.  When added, the system generated table of contents overlapped the &amp;quot;custom box divisions&amp;quot;.  I added these two edits as two separate edits in case someone wanted to reimplement the &amp;quot;prettiness.&amp;quot;  I do believe these &amp;quot;prettiness&amp;quot; additions raise the bar for entry, that is not needed, for people trying to add content to the page. -- [[User:J3gum|J3gum]] 14:21, 12 October 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
::No apology needed. I appreciate your addition and I agree that every formatting syntax (Mediawiki-syntax or HTML) inbetween context can confuse people who just want to add context. But the [[Main_Page]] is somewhat special, IMHO. It&#039;s an overview of the most important pages and I think we need to keep it somewhat organized and not every page needs to be on the front page. Otherwise we could just redirect to [[Special:AllPages]] :-) Every other page on this wiki needs only little formatting (just bullet points (&amp;quot;*&amp;quot;) and paragraphs (&amp;quot;==&amp;quot;). I&#039;d like to re-pretty the [[Main_Page]] again and keep [{{SERVER}}/index.php?title=Main_Page&amp;amp;action=watch watching] the page so if another additon mangles the &amp;quot;prettyness&amp;quot; I&#039;ll gladly fix it. Thanks. -- [[User:Ckujau|Ckujau]] 20:59, 12 October 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Yes, please add the &amp;quot;prettiness&amp;quot; back in. -- [[User:J3gum|J3gum]] 13:47, 13 October 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
Please do not randomly edit front pages.  If you think the format should be different please bring it up on the mailinglist.  I really dislike the new look,&lt;br /&gt;
but I&#039;ll give you the chance of getting more opinion on the mailinglist before simply reverting it. -- [[User:Hch|Hch]] 10:42, 13 October 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Please revert it, or better yet, add one in that doesn&#039;t break with the &amp;quot;auto-contents&amp;quot; menu.  Either way is fine with me.  -- [[User:J3gum|J3gum]] 13:47, 13 October 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
== What change policy ==&lt;br /&gt;
&lt;br /&gt;
Hch, you said, &amp;quot;bring it up on the mailinglist&amp;quot;. If you want people to use your change policy, it may be a good idea to put your change policy in the description area on your homepage.  Perhaps it should even have it&#039;s own page.  It&#039;s pretty hard to guess the policy as a first time user. -- [[User:J3gum|J3gum]] 13:47, 13 October 2011 (UTC)&lt;/div&gt;</summary>
		<author><name>J3gum</name></author>
	</entry>
	<entry>
		<id>https://xfs.org/index.php?title=User_talk:J3gum&amp;diff=2363</id>
		<title>User talk:J3gum</title>
		<link rel="alternate" type="text/html" href="https://xfs.org/index.php?title=User_talk:J3gum&amp;diff=2363"/>
		<updated>2011-10-12T14:21:56Z</updated>

		<summary type="html">&lt;p&gt;J3gum: Responded to the &amp;quot;De-pretty/complicate the page&amp;quot; query.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== De-pretty/complicate the page? ==&lt;br /&gt;
&lt;br /&gt;
Hi! I&#039;ve seen your [http://xfs.org/index.php?title=Main_Page&amp;amp;diff=2356&amp;amp;oldid=2256 edit] to &amp;quot;De-pretty/complicate the page&amp;quot; and I don&#039;t understand why you did that? Don&#039;t we want our wiki to be pretty too? I don&#039;t think the page was overly complicated, just a few boxes so that one does not have to scroll down, as the page gets longer and longer. -- [[User:Ckujau|Ckujau]] 06:02, 12 October 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
First, I apologize if I&#039;ve overstepped.  That was not my intention.  I did try to add [http://xfs.org/index.php?title=Main_Page&amp;amp;diff=2357&amp;amp;oldid=2356 a link and header] before the edit to which you referred.  When added, the system generated table of contents overlapped the &amp;quot;custom box divisions&amp;quot;.  I added these two edits as two separate edits in case someone wanted to reimplement the &amp;quot;prettiness.&amp;quot;  I do believe these &amp;quot;prettiness&amp;quot; additions raise the bar for entry, that is not needed, for people trying to add content to the page. -- [[User:J3gum|J3gum]] 14:21, 12 October 2011 (UTC)&lt;/div&gt;</summary>
		<author><name>J3gum</name></author>
	</entry>
	<entry>
		<id>https://xfs.org/index.php?title=Support_discarding_of_unused_sectors&amp;diff=2360</id>
		<title>Support discarding of unused sectors</title>
		<link rel="alternate" type="text/html" href="https://xfs.org/index.php?title=Support_discarding_of_unused_sectors&amp;diff=2360"/>
		<updated>2011-10-11T19:42:26Z</updated>

		<summary type="html">&lt;p&gt;J3gum: Update status of the work, and add a link to FITRIM/discard, minor formatting, spell check&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Rationale ==&lt;br /&gt;
&lt;br /&gt;
For magnetic disks, DRAM and many other physical media used as block devices, it does not matter for the device to know which sectors are actually unused by the filesystem and therefore contain irrelevant content.&lt;br /&gt;
&lt;br /&gt;
This is quite different for Solid State Disks (SSDs) built from Flash Memory: To avoid performance degradation from the dynamic wear-leveling algorithms, there has to be a clever management of &amp;quot;unused&amp;quot; blocks in the SSD controller.&lt;br /&gt;
&lt;br /&gt;
To let the SSD controller know which sectors contain irrelevant data, the ATA TRIM command has been standardized, and now the first SSDs are available that implement that command (e.g. the SSDs using the Indilinx Barefoot controller, from firmware revision 1370 onwards).&lt;br /&gt;
&lt;br /&gt;
== What needs to be done ==&lt;br /&gt;
&lt;br /&gt;
This work has been implemented in Linux since v2.6.38, Jan 18 2011.&lt;br /&gt;
&lt;br /&gt;
== Related Standards ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.t13.org/Documents/UploadedDocuments/docs2008/e07154r6-Data_Set_Management_Proposal_for_ATA-ACS2.doc Data Set Management Commands Proposal for ATA8-ACS2]&lt;br /&gt;
* [http://www.t13.org/Documents/UploadedDocuments/docs2008/e08137r4-DRAT_-_Deterministic_Read_After_Trim.doc Deterministic TRIM Proposal for ATA8-ACS2]&lt;br /&gt;
&lt;br /&gt;
== Other Documents ==&lt;br /&gt;
&lt;br /&gt;
* [[FITRIM/discard]]&lt;br /&gt;
* An interesting [http://www.anandtech.com/printarticle.aspx?i=3531 Article at Anandtech] that (while being a little verbose and Windows-oriented) explains many aspects of SSD performance, including the prospective benefits of the ATA TRIM command (at page 10). &lt;br /&gt;
* Patch [http://www.mail-archive.com/cluster-devel@redhat.com/msg03401.html adding the blkdev_issue_discard()] feature to GFS2&lt;br /&gt;
* [http://www.usenix.org/event/lsf08/tech/shin_SSD.pdf Presentation] on a comparison between different filesystems performance on SSDs (including XFS)&lt;/div&gt;</summary>
		<author><name>J3gum</name></author>
	</entry>
	<entry>
		<id>https://xfs.org/index.php?title=Ideas_for_XFS&amp;diff=2359</id>
		<title>Ideas for XFS</title>
		<link rel="alternate" type="text/html" href="https://xfs.org/index.php?title=Ideas_for_XFS&amp;diff=2359"/>
		<updated>2011-10-11T19:35:37Z</updated>

		<summary type="html">&lt;p&gt;J3gum: Indicate that support for discard is complete&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Future Directions for XFS&lt;br /&gt;
&lt;br /&gt;
Dave Chinner ideas:&lt;br /&gt;
&lt;br /&gt;
* [[ Improving inode Caching ]]&lt;br /&gt;
&lt;br /&gt;
* [[ Improving Metadata Performance By Reducing Journal Overhead ]]&lt;br /&gt;
&lt;br /&gt;
* [[ Reliable Detection and Repair of Metadata Corruption ]]&lt;br /&gt;
&lt;br /&gt;
Other ideas:&lt;br /&gt;
&lt;br /&gt;
* [[ Splitting project quota support from group quota support ]]&lt;br /&gt;
* [[ Assigning project quota to a linux container ]]&lt;br /&gt;
* [[ Support discarding of unused sectors ]] (status: completed)&lt;br /&gt;
* Superblock flag for when 64-bit inodes are present (see [http://oss.sgi.com/pipermail/xfs/2009-May/041379.html])&lt;br /&gt;
* WISH: Please integrate [[xfs_irecover]] or provide inode recovery feature : http://rzr.online.fr/q/recover&lt;/div&gt;</summary>
		<author><name>J3gum</name></author>
	</entry>
	<entry>
		<id>https://xfs.org/index.php?title=FITRIM/discard&amp;diff=2358</id>
		<title>FITRIM/discard</title>
		<link rel="alternate" type="text/html" href="https://xfs.org/index.php?title=FITRIM/discard&amp;diff=2358"/>
		<updated>2011-10-11T16:03:00Z</updated>

		<summary type="html">&lt;p&gt;J3gum: Initial creation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Purpose ==&lt;br /&gt;
&lt;br /&gt;
FITRIM is a mounted filesystem feature to discard (or &amp;quot;[http://en.wikipedia.org/wiki/TRIM trim]&amp;quot;) blocks which are not in use by the filesystem. This is useful for solid-state drives (SSDs) and thinly-provisioned storage.&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
&lt;br /&gt;
#The block device underneath the filesystem must support the FITRIM operation.&lt;br /&gt;
#The kernel must include TRIM support and XFS must include FITRIM support (this has been true for Linux since v2.6.38, Jan 18 2011)&lt;br /&gt;
&lt;br /&gt;
This can be verified by viewing /sys/block/&amp;lt;dev&amp;gt;/queue/discard_max_bytes -- If the value is zero then your device doesn&#039;t support discard&lt;br /&gt;
operations.&lt;br /&gt;
&lt;br /&gt;
== Modes of Operation ==&lt;br /&gt;
&lt;br /&gt;
* Realtime discard -- As files are removed, the filesystem issues discard requests automatically&lt;br /&gt;
* Batch Mode -- A user procedure that trims all or portions of the filesystem&lt;br /&gt;
&lt;br /&gt;
=== Realtime discard ===&lt;br /&gt;
&lt;br /&gt;
This mode issues discard requests automatically as files are removed from the filesystem.  No other command or process is required.&lt;br /&gt;
&lt;br /&gt;
Realtime discard is selected by adding the filesystem option &amp;lt;code&amp;gt;discard&amp;lt;/code&amp;gt; while mounting.&lt;br /&gt;
&lt;br /&gt;
This can be done by the following examples:&lt;br /&gt;
&lt;br /&gt;
# placing &amp;lt;code&amp;gt;discard&amp;lt;/code&amp;gt; in your /etc/fstab for the filesystem: &amp;lt;code&amp;gt;/dev/sda1 /mountpoint xfs defaults,discard 0 1&amp;lt;/code&amp;gt;&lt;br /&gt;
# mount options: &amp;lt;code&amp;gt;mount -o discard /dev/sda1 /mountpoint&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Batch Mode ===&lt;br /&gt;
&lt;br /&gt;
This mode requires user intervention.  This intervention is in the form of the command &amp;lt;code&amp;gt;fstrim&amp;lt;/code&amp;gt;.  It has been included in [http://en.wikipedia.org/wiki/Util-linux util-linux-ng] since about Nov 26, 2010.&lt;br /&gt;
&lt;br /&gt;
Usage example:&lt;br /&gt;
&amp;lt;code&amp;gt;fstrim /mountpoint&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
# FITRIM description - Lukas Czerner &amp;lt;lczerner at redhat.com&amp;gt; http://patchwork.xfs.org/patch/1490/&lt;br /&gt;
# Block requirements - Dave Chinner &amp;lt;david at fromorbit.com&amp;gt; http://oss.sgi.com/pipermail/xfs/2011-October/053379.html&lt;br /&gt;
# util-linux-ng addition - Karel Zak &amp;lt;kzak@xxxxxxxxxx&amp;gt; http://www.spinics.net/lists/util-linux-ng/msg03646.html&lt;/div&gt;</summary>
		<author><name>J3gum</name></author>
	</entry>
	<entry>
		<id>https://xfs.org/index.php?title=Main_Page&amp;diff=2357</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://xfs.org/index.php?title=Main_Page&amp;diff=2357"/>
		<updated>2011-10-11T14:54:46Z</updated>

		<summary type="html">&lt;p&gt;J3gum: Add reference to FITRIM/discard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Information about XFS ==&lt;br /&gt;
&lt;br /&gt;
* [[XFS FAQ]]&lt;br /&gt;
* [[XFS Status Updates]]&lt;br /&gt;
* [[XFS Papers and Documentation]]&lt;br /&gt;
* [[Linux Distributions shipping XFS]]&lt;br /&gt;
* [[XFS Rpm for RedHat|XFS RPMs for RedHat]]&lt;br /&gt;
* [[XFS Companies]]&lt;br /&gt;
* [http://oss.sgi.com/projects/xfs SGI XFS website]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/XFS Wikipedia XFS page]&lt;br /&gt;
&lt;br /&gt;
== Feature Highlights ==&lt;br /&gt;
&lt;br /&gt;
* [[FITRIM/discard]] - discard (or &amp;quot;trim&amp;quot;) blocks which are not in use by the filesystem&lt;br /&gt;
&lt;br /&gt;
== Professional XFS Consulting Services == &lt;br /&gt;
&lt;br /&gt;
[[Consulting Resources]]&lt;br /&gt;
&lt;br /&gt;
== XFS Developer Resources ==&lt;br /&gt;
&lt;br /&gt;
* [[XFS email list and archives]]&lt;br /&gt;
* [http://oss.sgi.com/bugzilla/buglist.cgi?product=XFS&amp;amp;bug_status=NEW&amp;amp;bug_status=ASSIGNED&amp;amp;bug_status=REOPENED Bugzilla @ oss.sgi.com]&lt;br /&gt;
* [http://bugzilla.kernel.org/buglist.cgi?product=File+System&amp;amp;component=XFS&amp;amp;bug_status=NEW&amp;amp;bug_status=ASSIGNED&amp;amp;bug_status=REOPENED Bugzilla @ kernel.org]&lt;br /&gt;
* [[Getting the latest source code]]&lt;br /&gt;
* [[Unfinished work]]&lt;br /&gt;
* [[Shrinking Support]]&lt;br /&gt;
* [[Ideas for XFS]]&lt;br /&gt;
&lt;br /&gt;
{{#meta: | u+4/+rib+YG96TifD0SN88xS84YSDm2cl61IU7ZIk9g= | verify-v1 }}&lt;/div&gt;</summary>
		<author><name>J3gum</name></author>
	</entry>
	<entry>
		<id>https://xfs.org/index.php?title=Main_Page&amp;diff=2356</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://xfs.org/index.php?title=Main_Page&amp;diff=2356"/>
		<updated>2011-10-11T14:52:08Z</updated>

		<summary type="html">&lt;p&gt;J3gum: De-pretty/complicate the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Information about XFS ==&lt;br /&gt;
&lt;br /&gt;
* [[XFS FAQ]]&lt;br /&gt;
* [[XFS Status Updates]]&lt;br /&gt;
* [[XFS Papers and Documentation]]&lt;br /&gt;
* [[Linux Distributions shipping XFS]]&lt;br /&gt;
* [[XFS Rpm for RedHat|XFS RPMs for RedHat]]&lt;br /&gt;
* [[XFS Companies]]&lt;br /&gt;
* [http://oss.sgi.com/projects/xfs SGI XFS website]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/XFS Wikipedia XFS page]&lt;br /&gt;
&lt;br /&gt;
== Professional XFS Consulting Services == &lt;br /&gt;
&lt;br /&gt;
[[Consulting Resources]]&lt;br /&gt;
&lt;br /&gt;
== XFS Developer Resources ==&lt;br /&gt;
&lt;br /&gt;
* [[XFS email list and archives]]&lt;br /&gt;
* [http://oss.sgi.com/bugzilla/buglist.cgi?product=XFS&amp;amp;bug_status=NEW&amp;amp;bug_status=ASSIGNED&amp;amp;bug_status=REOPENED Bugzilla @ oss.sgi.com]&lt;br /&gt;
* [http://bugzilla.kernel.org/buglist.cgi?product=File+System&amp;amp;component=XFS&amp;amp;bug_status=NEW&amp;amp;bug_status=ASSIGNED&amp;amp;bug_status=REOPENED Bugzilla @ kernel.org]&lt;br /&gt;
* [[Getting the latest source code]]&lt;br /&gt;
* [[Unfinished work]]&lt;br /&gt;
* [[Shrinking Support]]&lt;br /&gt;
* [[Ideas for XFS]]&lt;br /&gt;
&lt;br /&gt;
{{#meta: | u+4/+rib+YG96TifD0SN88xS84YSDm2cl61IU7ZIk9g= | verify-v1 }}&lt;/div&gt;</summary>
		<author><name>J3gum</name></author>
	</entry>
</feed>